We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5192b0b commit d919989Copy full SHA for d919989
test/write.jl
@@ -131,5 +131,8 @@ test_write(sd)
131
test_compression_effective(Dict("data" => fill(1.0, 1000)))
132
133
# test adjoint/reshape array
134
-test_write(Dict("aa"=>[1 2 3;4 5 6;7 8 9]'))
135
-test_write(Dict("aa"=>reshape([1 2 3;4 5 6;7 8 9]',1,9)))
+test_write(Dict("adjoint_arr"=>[1 2 3;4 5 6;7 8 9]'))
+test_write(Dict("reshape_arr"=>reshape([1 2 3;4 5 6;7 8 9]',1,9)))
136
+
137
+test_write(Dict("adjoint_arr"=>Any[1 2 3;4 5 6;7 8 9]'))
138
+test_write(Dict("reshape_arr"=>reshape(Any[1 2 3;4 5 6;7 8 9]',1,9)))
0 commit comments