Skip to content

Commit cb91e67

Browse files
committed
fix sdot
1 parent fc51937 commit cb91e67

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

src/stdlib_linalg_blas.fypp

+8-4
Original file line numberDiff line numberDiff line change
@@ -1309,12 +1309,16 @@ module stdlib_linalg_blas
13091309
#else
13101310
module procedure stdlib_dsdot
13111311
#endif
1312-
#:for rk,rt,ri in REAL_KINDS_TYPES
1313-
#:if not rk in ["sp","dp"]
1314-
module procedure stdlib_${ri}$sdot
13151312

1313+
#:if WITH_QP
1314+
!! Provide a unique interface to accumulate double precision reals
1315+
!! into the highest available precision.
1316+
module procedure stdlib_xsdot
1317+
#:elif WITH_XDP
1318+
!! Provide a unique interface to accumulate double precision reals
1319+
!! into the highest available precision.
1320+
module procedure stdlib_qsdot
13161321
#:endif
1317-
#:endfor
13181322
end interface sdot
13191323

13201324

0 commit comments

Comments
 (0)