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:
authorBenoit Jacob <benoitjacob@google.com>2020-05-06 22:46:46 +0300
committerCopybara-Service <copybara-worker@google.com>2020-05-06 22:47:06 +0300
commit1b313682ef8b8fc8ed08719c610d1c3503b016bf (patch)
tree38d00946eb45560bfe18b9ef3e40d33f0944dc7b /ruy/ctx_test.cc
parenteda1b5bf7ab331b71bf4a03b8aff9bf520cc8756 (diff)
Remove Path::kReference. Instead, ReferenceMul becomes a separate library.
PiperOrigin-RevId: 310208807
Diffstat (limited to 'ruy/ctx_test.cc')
-rw-r--r--ruy/ctx_test.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/ruy/ctx_test.cc b/ruy/ctx_test.cc
index 173ac09..5b639cf 100644
--- a/ruy/ctx_test.cc
+++ b/ruy/ctx_test.cc
@@ -27,7 +27,6 @@ TEST(ContextInternalTest, EnabledPathsGeneral) {
const auto ruy_paths_repeat = ctx.GetRuntimeEnabledPaths();
ASSERT_EQ(ruy_paths, ruy_paths_repeat);
EXPECT_NE(ruy_paths, Path::kNone);
- EXPECT_EQ(ruy_paths & Path::kReference, Path::kReference);
EXPECT_EQ(ruy_paths & Path::kStandardCpp, Path::kStandardCpp);
}
@@ -37,7 +36,6 @@ TEST(ContextInternalTest, EnabledPathsX86) {
ctx.SetRuntimeEnabledPaths(Path::kSse42 | Path::kAvx2 | Path::kAvx512 |
Path::kAvxVnni);
const auto ruy_paths = ctx.GetRuntimeEnabledPaths();
- EXPECT_EQ(ruy_paths & Path::kReference, Path::kNone);
EXPECT_EQ(ruy_paths & Path::kStandardCpp, Path::kNone);
}
#endif // RUY_PLATFORM(X86)
@@ -47,7 +45,6 @@ TEST(ContextInternalTest, EnabledPathsArm) {
CtxImpl ctx;
ctx.SetRuntimeEnabledPaths(Path::kNeon | Path::kNeonDotprod);
const auto ruy_paths = ctx.GetRuntimeEnabledPaths();
- EXPECT_EQ(ruy_paths & Path::kReference, Path::kNone);
EXPECT_EQ(ruy_paths & Path::kStandardCpp, Path::kNone);
EXPECT_EQ(ruy_paths & Path::kNeon, Path::kNeon);
}