Skip to content

Commit c8f2bb7

Browse files
committed
FIX!!!
1 parent c68634d commit c8f2bb7

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

benchmark/TensorAlgebraBenchmarks/TensorAlgebraBenchmarks.jl

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,7 @@ end
4545
A = TensorValue(1.:9...)
4646
A = A + A' + I3
4747

48-
cofactor() = cof(A)
49-
detinv() = det(A)*inv(A')
50-
5148
SUITE["Tensor algebra"]["δδ_μ_2d"] = @benchmarkable δᵢₖδⱼₗ2D + δᵢₗδⱼₖ2D
5249
SUITE["Tensor algebra"]["δδ_λ_2d"] = @benchmarkable 1.0 * δᵢⱼδₖₗ2D
53-
SUITE["Tensor algebra"]["Cofactor"] = cofactor()
54-
SUITE["Tensor algebra"]["Det(A)Inv(A')"] = detinv()
50+
SUITE["Tensor algebra"]["Cofactor"] = @benchmarkable cof(A)
51+
SUITE["Tensor algebra"]["Det(A)Inv(A')"] = @benchmarkable det(A)*inv(A')

0 commit comments

Comments
 (0)