Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / thirdparty / mkl-dnn / src / cpu / gemm / f32 / jit_avx_gemm_f32.hpp
 * limitations under the License.
 *******************************************************************************/
 
-#include <stdint.h>
-#include "mkldnn_test_common.hpp"
-#include "gtest/gtest.h"
+#ifndef JIT_AVX_GEMM_F32_HPP
+#define JIT_AVX_GEMM_F32_HPP
+
+#include "mkldnn_types.h"
 
-#include "mkldnn.hpp"
-#include "test_convolution_relu_forward_common.hpp"
 namespace mkldnn {
+namespace impl {
+namespace cpu {
 
-using convolution_test = convolution_relu_test<int16_t, int16_t,
-                                               int32_t, int32_t>;
+mkldnn_status_t jit_avx_gemm_f32(
+        const char *transa, const char *transb, const int *M,
+        const int *N, const int *K, const float *alpha, const float *A,
+        const int *lda, const float *B, const int *ldb, const float *beta,
+        float *C, const int *ldc, const float *bias = nullptr);
 
-TEST_P(convolution_test, TestConvolution)
-{
-}
 
-#define S16S16S32
-#define DIRECTION_FORWARD
-#include "convolution_common.h"
+}
+}
+}
 
-}
\ No newline at end of file
+#endif