Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / thirdparty / mkl-dnn / src / cpu / gemm / gemm.hpp
1 /*******************************************************************************
2 * Copyright 2018 Intel Corporation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *     http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *******************************************************************************/
16
17 #ifndef GEMM_HPP
18 #define GEMM_HPP
19
20 #include "mkldnn_types.h"
21 #include "os_blas.hpp"
22
23 namespace mkldnn {
24 namespace impl {
25 namespace cpu {
26
27 mkldnn_status_t extended_sgemm(const char *transa, const char *transb,
28         const int *M, const int *N, const int *K, const float *alpha,
29         const float *A, const int *lda, const float *B, const int *ldb,
30         const float *beta, float *C, const int *ldc,
31         const float *bias = nullptr, bool force_jit_gemm = false);
32
33 template <typename b_dt>
34 mkldnn_status_t gemm_s8x8s32(const char *transa, const char *transb,
35         const char *offsetc, const int *M, const int *N, const int *K,
36         const float *alpha, const int8_t *A, const int *lda, const int8_t *ao,
37         const b_dt *B, const int *ldb, const int8_t *bo, const float *beta,
38         int32_t *c, const int *ldc, const int32_t *co);
39
40 #ifdef USE_CBLAS
41 #define GEMM_IMPL_STR "gemm:blas"
42 #else
43 #define GEMM_IMPL_STR "gemm:jit"
44 #endif
45
46 #if USE_MKL_IGEMM
47 #define IGEMM_S8U8S32_IMPL_STR "igemm_s8u8s32:blas"
48 #define IGEMM_S8S8S32_IMPL_STR "igemm_s8s8s32:blas"
49 #else
50 #define IGEMM_S8U8S32_IMPL_STR "igemm_s8u8s32:jit"
51 #define IGEMM_S8S8S32_IMPL_STR "igemm_s8s8s32:jit"
52 #endif
53
54 }
55 }
56 }
57
58 #endif