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.
2 parents fded771 + 2962a54 commit 53b308dCopy full SHA for 53b308d
Project.toml
@@ -24,8 +24,9 @@ VectorizationBase = "0.13.4"
24
julia = "1.5"
25
26
[extras]
27
+InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
28
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
29
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
30
31
[targets]
-test = ["Random", "Test"]
32
+test = ["InteractiveUtils", "Random", "Test"]
test/runtests.jl
@@ -2,6 +2,10 @@ using Test
2
using LoopVectorization
3
using LinearAlgebra
4
5
+import InteractiveUtils
6
+
7
+InteractiveUtils.versioninfo(stdout; verbose = true)
8
9
# const START_TIME = time()
10
# exceeds_time_limit() = (time() - START_TIME) > 35 * 60
11
0 commit comments