From da4139d7b77c381e534a2633dcdee954c17e81cc Mon Sep 17 00:00:00 2001 From: Chris Elrod Date: Fri, 10 Jan 2020 04:24:53 -0500 Subject: [PATCH] Updated project and manifest. --- Manifest.toml | 4 ++-- Project.toml | 2 +- test/runtests.jl | 3 +-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Manifest.toml b/Manifest.toml index 643cf3052..c6b8eb0c4 100644 --- a/Manifest.toml +++ b/Manifest.toml @@ -83,6 +83,6 @@ uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [[VectorizationBase]] deps = ["CpuId", "LinearAlgebra"] -git-tree-sha1 = "bb905673925d36d1bf4693a114687d56723d5991" +git-tree-sha1 = "81c1b3171d93e64345d75a9f08d190a155e9f009" uuid = "3d5dd08c-fd9d-11e8-17fa-ed2836048c2f" -version = "0.1.6" +version = "0.1.7" diff --git a/Project.toml b/Project.toml index e24a30ce2..a3f516b52 100644 --- a/Project.toml +++ b/Project.toml @@ -16,7 +16,7 @@ MacroTools = "0.5" Parameters = "0.12.0" SIMDPirates = "0.1.4" SLEEFPirates = "0.1.2" -VectorizationBase = "0.1.6" +VectorizationBase = "0.1.7" julia = "1.3.0" [extras] diff --git a/test/runtests.jl b/test/runtests.jl index 6849c77a3..7a0fb914e 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -365,8 +365,7 @@ using LinearAlgebra B[j,i] = A[j,i] - x[j] end) lssubcol = LoopVectorization.LoopSet(subcolq); - # @test LoopVectorization.choose_order(lssubcol) == (Symbol[:j,:i], :j, 4, -1) - @test LoopVectorization.choose_order(lssubcol) == (Symbol[:j,:i], :j, 2, -1) + @test LoopVectorization.choose_order(lssubcol) == (Symbol[:j,:i], :j, 4, -1) ## @avx is SLOWER!!!! ## need to fix! function mysubcol!(B, A, x)