Skip to content

Commit eb8f2ec

Browse files
committed
updated Finch version and reference output
1 parent 35555f0 commit eb8f2ec

File tree

30 files changed

+268
-78
lines changed

30 files changed

+268
-78
lines changed

examples/Manifest.toml

+258-68
Large diffs are not rendered by default.

examples/generate_reference.jl

+10-10
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ for (vec_key, x) in [
1818
"bar" => sparse([0, 0, 13, 0, 0, 16, 0, 0, 19]),
1919
]
2020
for (fmt_key, fmt) in [
21-
"VEC" => Fiber!(SparseList(Element(zero(eltype(x))))),
22-
"DVEC" => Fiber!(Dense(Element(zero(eltype(x))))),
21+
"VEC" => Tensor(SparseList(Element(zero(eltype(x))))),
22+
"DVEC" => Tensor(Dense(Element(zero(eltype(x))))),
2323
]
2424
fmt = dropdefaults!(fmt, x)
2525
example_dir = joinpath(@__DIR__, "reference", "$(vec_key)_$(fmt_key)")
@@ -35,14 +35,14 @@ for (mtx_key, A) in [
3535
"farm" => SparseMatrixCSC(matrixdepot("Meszaros/farm")),
3636
]
3737
for (fmt_key, fmt) in [
38-
"CSR" => swizzle(Fiber!(Dense(SparseList(Element(zero(eltype(A)))))), 2, 1),
39-
"CSC" => Fiber!(Dense(SparseList(Element(zero(eltype(A)))))),
40-
"DMAT" => swizzle(Fiber!(Dense(Dense(Element(zero(eltype(A)))))), 2, 1),
41-
"DMATR" => Fiber!(Dense(Dense(Element(zero(eltype(A)))))),
42-
"DCSR" => swizzle(Fiber!(SparseList(SparseList(Element(zero(eltype(A)))))), 2, 1),
43-
"DCSC" => Fiber!(SparseList(SparseList(Element(zero(eltype(A)))))),
44-
"COO" => swizzle(Fiber!(SparseCOO{2}(Element(zero(eltype(A))))), 2, 1),
45-
"COOC" => Fiber!(SparseCOO{2}(Element(zero(eltype(A))))),
38+
"CSR" => swizzle(Tensor(Dense(SparseList(Element(zero(eltype(A)))))), 2, 1),
39+
"CSC" => Tensor(Dense(SparseList(Element(zero(eltype(A)))))),
40+
"DMAT" => swizzle(Tensor(Dense(Dense(Element(zero(eltype(A)))))), 2, 1),
41+
"DMATR" => Tensor(Dense(Dense(Element(zero(eltype(A)))))),
42+
"DCSR" => swizzle(Tensor(SparseList(SparseList(Element(zero(eltype(A)))))), 2, 1),
43+
"DCSC" => Tensor(SparseList(SparseList(Element(zero(eltype(A)))))),
44+
"COO" => swizzle(Tensor(SparseCOO{2}(Element(zero(eltype(A))))), 2, 1),
45+
"COOC" => Tensor(SparseCOO{2}(Element(zero(eltype(A))))),
4646
]
4747
fmt = copyto!(fmt, A)
4848
example_dir = joinpath(@__DIR__, "reference", "$(mtx_key)_$(fmt_key)")
24 Bytes
Binary file not shown.
24 Bytes
Binary file not shown.
24 Bytes
Binary file not shown.
24 Bytes
Binary file not shown.
24 Bytes
Binary file not shown.
24 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
24 Bytes
Binary file not shown.
32 Bytes
Binary file not shown.
32 Bytes
Binary file not shown.
24 Bytes
Binary file not shown.
24 Bytes
Binary file not shown.
24 Bytes
Binary file not shown.
24 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
24 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)