summaryrefslogtreecommitdiffstats
path: root/eval/src/tests/instruction
diff options
context:
space:
mode:
authorHåvard Pettersen <havardpe@yahooinc.com>2023-09-07 13:54:39 +0000
committerHåvard Pettersen <havardpe@yahooinc.com>2023-09-07 13:54:39 +0000
commit864b2d90e21e15628fb03d9797d70575e4159441 (patch)
tree681a7cb2797eb92ebf42dfbf2cf29d391d6b2a86 /eval/src/tests/instruction
parentb1ba5c2995b76cbee5830a9959cd7b22364e5b65 (diff)
also test with trivial dimensions
Diffstat (limited to 'eval/src/tests/instruction')
-rw-r--r--eval/src/tests/instruction/universal_dot_product/universal_dot_product_test.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/eval/src/tests/instruction/universal_dot_product/universal_dot_product_test.cpp b/eval/src/tests/instruction/universal_dot_product/universal_dot_product_test.cpp
index a25dba64671..4ca2a5ef79a 100644
--- a/eval/src/tests/instruction/universal_dot_product/universal_dot_product_test.cpp
+++ b/eval/src/tests/instruction/universal_dot_product/universal_dot_product_test.cpp
@@ -309,6 +309,7 @@ TEST(UniversalDotProductTest, nonforwarding_empty_result) {
TEST(UniversalDotProductTest, forwarding_expanding_reduce) {
verify("reduce(5.0*y0_0,sum,y)");
+ verify("reduce(5.0*y0_0z1,sum,y)");
verify("reduce(z16*y0_0,sum,y)");
verify("reduce(x1_1*y0_0,sum,y)");
verify("reduce(x0_0*y1_1,sum,y)");
@@ -319,6 +320,7 @@ TEST(UniversalDotProductTest, forwarding_expanding_reduce) {
TEST(UniversalDotProductTest, nonforwarding_expanding_reduce) {
verify("reduce(x0_0*y1_1,sum,x,y)");
verify("reduce(x1_1*y0_0,sum,x,y)");
+ verify("reduce(x1_1*y0_0z1,sum,x,y)");
verify("reduce(x0_0y16*x1_1y16,sum,x)");
verify("reduce(x1_1y16*x0_0y16,sum,x)");
verify("reduce(x1_7*y1_1,sum,x,y)");