Skip to content

Commit 467e819

Browse files
committed
change everything to int32
1 parent c6dcbb4 commit 467e819

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/julia/tensor_test.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ end
2323

2424
tensortest(
2525
Tensor(
26-
Dense(SparseList(SparseList(Element(0.0)))),
26+
Dense(SparseList{Int32}(SparseList{Int32}(Element{0.0,Float64,Int32}()))),
2727
fsprand(10, 10, 10, 0.1)
2828
),
2929
joinpath(test_files, "input1.bsp.h5"),
@@ -42,7 +42,7 @@ tensortest(
4242

4343
tensortest(
4444
Tensor(
45-
Dense(Dense(Dense(Element(0.0)))),
45+
Dense(Dense(Dense(Element{0.0,Float64,Int32}()))),
4646
fsprand(10, 10, 10, 0.1)
4747
),
4848
joinpath(test_files, "input3.bsp.h5"),

0 commit comments

Comments
 (0)