@@ -74,8 +74,8 @@ OutputVector MatVecMulAdd<InputVector, OutputVector>(
7474void BasicTestWithoutBias(int tid, int resIndex)
7575{
7676 typealias ShMemPool = SharedMemoryPool< ShMemSizeLayer1> ;
77- typealias InVectorType = AccelerateVectorCoopMat < ElementType, ShMemPool, InputSize, SubgroupSize> ;
78- typealias OutVectorType = AccelerateVectorCoopMat < ElementType, ShMemPool, OutputSize, SubgroupSize> ;
77+ typealias InVectorType = WaveTangledVector < ElementType, ShMemPool, InputSize, SubgroupSize> ;
78+ typealias OutVectorType = WaveTangledVector < ElementType, ShMemPool, OutputSize, SubgroupSize> ;
7979
8080 ElementType [InputSize] inputData = { ElementType(1 . 0 ), ElementType(2 . 0 ), ElementType(3 . 0 ), ElementType(4 . 0 ) };
8181 InVectorType input = InVectorType(inputData);
@@ -128,8 +128,8 @@ void BasicTestWithoutBias(int tid, int resIndex)
128128void BasicTestWithBias(int tid, int resIndex)
129129{
130130 typealias ShMemPool = SharedMemoryPool< ShMemSizeLayer1> ;
131- typealias InVectorType = AccelerateVectorCoopMat < ElementType, ShMemPool, InputSize, SubgroupSize> ;
132- typealias OutVectorType = AccelerateVectorCoopMat < ElementType, ShMemPool, OutputSize, SubgroupSize> ;
131+ typealias InVectorType = WaveTangledVector < ElementType, ShMemPool, InputSize, SubgroupSize> ;
132+ typealias OutVectorType = WaveTangledVector < ElementType, ShMemPool, OutputSize, SubgroupSize> ;
133133
134134 ElementType [InputSize] inputData = { ElementType(1 . 0 ), ElementType(2 . 0 ), ElementType(3 . 0 ), ElementType(4 . 0 ) };
135135 InVectorType input = InVectorType(inputData);
0 commit comments