aboutsummaryrefslogtreecommitdiff
path: root/delegate/src/test/BatchMatMulTest.cpp
diff options
context:
space:
mode:
authorTeresa Charlin <teresa.charlinreyes@arm.com>2022-10-13 15:47:08 +0100
committerTeresa Charlin <teresa.charlinreyes@arm.com>2022-10-28 09:15:30 +0100
commit0f86ecfce593a302ebd2baf8b70c9f6f50616f81 (patch)
treebf312b7f8780ccecef54de782ff965c72cf68778 /delegate/src/test/BatchMatMulTest.cpp
parent20508425bb92623862e4b3f0da1adf46fc541f27 (diff)
downloadarmnn-0f86ecfce593a302ebd2baf8b70c9f6f50616f81.tar.gz
IVGCVSW-6494 Add CpuAcc Batch MatMul Workload Fp32
Signed-off-by: Teresa Charlin <teresa.charlinreyes@arm.com> Change-Id: I2def6995f81d33e68f1ea45d8d19a1e6294049b1
Diffstat (limited to 'delegate/src/test/BatchMatMulTest.cpp')
-rw-r--r--delegate/src/test/BatchMatMulTest.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/delegate/src/test/BatchMatMulTest.cpp b/delegate/src/test/BatchMatMulTest.cpp
index 5469bc845c..e5cb976c45 100644
--- a/delegate/src/test/BatchMatMulTest.cpp
+++ b/delegate/src/test/BatchMatMulTest.cpp
@@ -654,4 +654,20 @@ namespace armnnDelegate
}
}
+ TEST_SUITE("BATCH_MATMUL_CpuAccTests")
+ {
+ TEST_CASE("BATCH_MATMUL_Fp32_CpuAccTests")
+ {
+ std::vector<armnn::BackendId> backends = {armnn::Compute::CpuAcc};
+ BatchMatMul2DFp32SimpleTest (backends);
+ BatchMatMul3DFp32SimpleTest (backends);
+ BatchMatMul4DFp32SimpleTest (backends);
+ BatchMatMul3DFp32BatchTest (backends);
+ BatchMatMul3DFp32BroadcastTest (backends);
+ BatchMatMul3D2DFp32BroadcastTest (backends);
+ BatchMatMul2DFp32TinyTest (backends);
+ BatchMatMulNonSquareFp32Test (backends);
+ BatchMatMul2DFp32SimpleAdjointTest(backends);
+ }
+ }
}