Skip to content

Commit 7d75f1d

Browse files
committed
Fix dtype
1 parent 9a96eee commit 7d75f1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/python/genPriorV.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
tic = time.time()
2525

26-
pprs = np.zeros((dim, numVec), dtype="float32")
26+
pprs = np.zeros((dim, numVec), dtype=dtype)
2727
idx = 0
2828
for ppr in deimCommon.loadVectors(prefix, suffix, numVec):
2929
pprs[:, idx] = ppr

0 commit comments

Comments
 (0)