Skip to content

Commit 133bd96

Browse files
committed
Remove extra @time statements.
1 parent 48d7bd3 commit 133bd96

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

test/tensors.jl

+4-3
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ function contracttest2!(tiJaB_d_temp3, tiJaB_i, Wmnij)
4646
end
4747

4848
@testset "Tensors" begin
49+
@show @__LINE__, Float64
4950
LA, LIM = 31, 23;
5051
A = rand(LIM, LIM, LA, LA);
5152
B = rand(LIM, LIM, LIM, LIM);
@@ -56,9 +57,9 @@ end
5657
# C1 = Array{Float64}(undef, LIM, LIM, LA, LA);
5758
# C2 = similar(C1); C3 = similar(C1);
5859

59-
@time contract!(C1, A, B)
60-
@time contracttest1!(C2, A, B)
61-
@time contracttest2!(C3, A, B)
60+
contract!(C1, A, B)
61+
contracttest1!(C2, A, B)
62+
contracttest2!(C3, A, B)
6263

6364
@test C1 C2
6465
@test C1 C3

0 commit comments

Comments
 (0)