1/*******************************************************************************
2* Copyright 2020-2021 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 CPU_X64_JIT_GEMM_INNER_PRODUCT_UTILS_HPP
18#define CPU_X64_JIT_GEMM_INNER_PRODUCT_UTILS_HPP
19
20#include "cpu/gemm_inner_product_utils.hpp"
21
22namespace dnnl {
23namespace impl {
24namespace cpu {
25namespace x64 {
26namespace inner_product_utils {
27
28cpu::inner_product_utils::pp_kernel_t *jit_pp_kernel_create(size_t OC,
29 size_t MB, dim_t dst_mb_stride, const primitive_attr_t *attr,
30 data_type_t bias_dt, data_type_t acc_dt, const memory_desc_t *dst_md,
31 bool skip_sum);
32
33constexpr cpu_isa_t jit_pp_kernel_supported_isa() {
34 return sse41;
35}
36
37} // namespace inner_product_utils
38} // namespace x64
39} // namespace cpu
40} // namespace impl
41} // namespace dnnl
42
43#endif
44