Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/google/ruy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorT.J. Alumbaugh <talumbau@google.com>2020-09-01 19:19:33 +0300
committerCopybara-Service <copybara-worker@google.com>2020-09-01 19:19:53 +0300
commit74bfa70f222f7084b548b6feb352375803a0bbe4 (patch)
tree5a634ea82a8b4f1a9d96851acea05993b1bfff1f
parent9e637492489df547a9a6db555fca6756df02ace6 (diff)
AVX Pack inherits from StandardCpp
PiperOrigin-RevId: 329520185
-rw-r--r--ruy/pack_x86.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ruy/pack_x86.h b/ruy/pack_x86.h
index ce993ce..84b70d1 100644
--- a/ruy/pack_x86.h
+++ b/ruy/pack_x86.h
@@ -33,8 +33,8 @@ namespace ruy {
#if RUY_PLATFORM_X86
-RUY_INHERIT_PACK(Path::kStandardCpp, Path::kAvx2Fma)
-RUY_INHERIT_PACK(Path::kAvx2Fma, Path::kAvx)
+RUY_INHERIT_PACK(Path::kStandardCpp, Path::kAvx)
+RUY_INHERIT_PACK(Path::kAvx, Path::kAvx2Fma)
RUY_INHERIT_PACK(Path::kAvx2Fma, Path::kAvx512)
RUY_USE_MEMCPY_ROWMAJOR_FLOAT_PACK(Path::kAvx2Fma, 8)