We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72c25d9 commit 122b58eCopy full SHA for 122b58e
1 file changed
benchmark/TensorAlgebraBenchmarks/TensorAlgebraBenchmarks.jl
@@ -42,5 +42,10 @@ function _δδ_λ_2D(λ::Float64)
42
λ)
43
end
44
45
+A = TensorValue(1.:9...)
46
+A = A + A' + I3
47
+
48
SUITE["Tensor algebra"]["δδ_μ_2d"] = @benchmarkable δᵢₖδⱼₗ2D + δᵢₗδⱼₖ2D
49
SUITE["Tensor algebra"]["δδ_λ_2d"] = @benchmarkable 1.0 * δᵢⱼδₖₗ2D
50
+SUITE["Tensor algebra"]["Cofactor"] = cof(A)
51
+SUITE["Tensor algebra"]["Det(A)Inv(A')"] = det(A)*inv(A')
0 commit comments