From d63c259a847a981daf4922be033c10b0a3f492ed Mon Sep 17 00:00:00 2001 From: Abhinav Dronamraju Date: Fri, 7 Jul 2017 15:11:33 +0530 Subject: Float complex for matrix reshape --- src/c/matrixOperations/interfaces/int_matrix.h | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/c/matrixOperations/interfaces') diff --git a/src/c/matrixOperations/interfaces/int_matrix.h b/src/c/matrixOperations/interfaces/int_matrix.h index e4a39da..f69ba11 100644 --- a/src/c/matrixOperations/interfaces/int_matrix.h +++ b/src/c/matrixOperations/interfaces/int_matrix.h @@ -33,6 +33,13 @@ extern "C" { //#define s2u160u160matrixs2(in1, size, in2, in3, out ) smatrixa(in1, size[0], size[1], in2, in3, out) //#define s2u80u80matrixs2(in1, size, in2, in3, out ) smatrixa(in1, size[0], size[1], in2, in3, out) +#define z2d0d0matrixz2(in1, size, in2, in3, out ) zmatrixa(in1, size[0], size[1], in2, in3, out) +#define z2s0s0matrixz2(in1, size, in2, in3, out ) zmatrixa(in1, size[0], size[1], in2, in3, out) +//#define s2u160u160matrixs2(in1, size, in2, in3, out ) smatrixa(in1, size[0], size[1], in2, in3, out) +//#define s2u80u80matrixs2(in1, size, in2, in3, out ) smatrixa(in1, size[0], size[1], in2, in3, out) + + + #ifdef __cplusplus -- cgit