diff options
author | Siddarth Suresh <155843085+SiddarthSuresh98@users.noreply.github.com> | 2025-05-11 23:39:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-05-11 23:39:06 -0400 |
commit | f02bea04284d33a2d014f636baa6a861b73f6c41 (patch) | |
tree | ce89a55af60b01f6b4129d7539d07c08bfaa1b9a /tests/ex.cc | |
parent | a35eb451889f0efa99ff7fe1c0a3a76afd5e7ad5 (diff) | |
parent | 43588597069587f6846a7d64a1957435bec5429d (diff) |
Replace LOADV, STOREV, with strided load (SRDL), strided store (SRDS), add vector rotate (ROTV)
Diffstat (limited to 'tests/ex.cc')
-rw-r--r-- | tests/ex.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ex.cc b/tests/ex.cc index 5972182..5dbbe32 100644 --- a/tests/ex.cc +++ b/tests/ex.cc @@ -538,7 +538,7 @@ TEST_CASE_METHOD(EXFixture, "LOAD", "[ex]") delete i; } -// TEST_CASE_METHOD(EXFixture, "LOADV", "[ex]") +// TEST_CASE_METHOD(EXFixture, "SRDL", "[ex]") // { // } @@ -763,7 +763,7 @@ TEST_CASE_METHOD(EXFixture, "STORE", "[ex]") delete i; } -// TEST_CASE_METHOD(EXFixture, "STOREV", "[ex]") +// TEST_CASE_METHOD(EXFixture, "SRDS", "[ex]") // { // } |