load(
    "//tensorflow:tensorflow.bzl",
    "tf_cc_test_mkl",
    "tf_mkl_kernel_library",
)
load(
    "//third_party/mkl:build_defs.bzl",
    "mkl_deps",
)

package(
    default_visibility = [
        "//tensorflow:__subpackages__",
        "//tensorflow:internal",
    ],
    licenses = ["notice"],
)

# Public support libraries ----------------------------------------------------
MKL_SHORT_DEPS = [
    "//tensorflow/core:core_cpu",
    "//tensorflow/core:framework",
    "//tensorflow/core:lib",
    "//tensorflow/core:lib_internal",
    "//tensorflow/core/framework:bounds_check",
    "//tensorflow/core/kernels:ops_util",
] + mkl_deps()

MKL_DEPS = MKL_SHORT_DEPS + [
    "//third_party/eigen3",
    "//tensorflow/core:array_grad",
    "//tensorflow/core:math_grad",
    "//tensorflow/core:nn_grad",
    "//tensorflow/core:protos_all_cc",
    "//tensorflow/core/kernels:concat_lib",
    "//tensorflow/core/kernels:conv_2d",
    "//tensorflow/core/kernels:eigen_contraction_kernel",
    "//tensorflow/core/kernels:fill_functor",
    "//tensorflow/core/kernels:gather_functor",
    "//tensorflow/core/kernels:transpose_functor",
]

MKL_TEST_DEPS = [
    ":mkl_input_conversion_op",
    "//tensorflow/cc:cc_ops",
    "//tensorflow/core:core_cpu",
    "//tensorflow/core:framework",
    "//tensorflow/core:framework_internal",
    "//tensorflow/core:lib",
    "//tensorflow/core:protos_all_cc",
    "//tensorflow/core:test",
    "//tensorflow/core:test_main",
    "//tensorflow/core:testlib",
    "//tensorflow/core/kernels:ops_testutil",
    "//tensorflow/core/kernels:ops_util",
]

tf_mkl_kernel_library(
    name = "mkl_batch_matmul_op",
    srcs = ["mkl_batch_matmul_op.cc"],
    hdrs = [
        "mkl_batch_matmul_helper.h",
        "mkl_matmul_ops_common.h",
    ],
    deps = [
        "//tensorflow/core/kernels:batch_matmul_op",
        "//tensorflow/core/kernels:matmul_op",
    ] + MKL_DEPS,
)

tf_mkl_kernel_library(
    name = "mkl_einsum_op",
    srcs = ["mkl_einsum_op.cc"],
    hdrs = [
        "mkl_batch_matmul_helper.h",
        "mkl_matmul_ops_common.h",
    ],
    deps = ["//tensorflow/core/kernels/linalg:einsum_op"] + MKL_DEPS,
)

tf_mkl_kernel_library(
    name = "mkl_matmul_op",
    srcs = [
        "mkl_matmul_op.cc",
        "mkl_matmul_op_fused.cc",
    ],
    hdrs = ["mkl_matmul_ops_common.h"],
    deps = MKL_DEPS,
)

tf_cc_test_mkl(
    name = "mkl_quantized_conv_ops_perchannel_test",
    size = "small",
    srcs = ["mkl_quantized_conv_ops_perchannel_test.cc"],
    linkstatic = 1,  # Fixes dyld error on MacOS.
    deps = [
        ":mkl_conv_op",
        "//tensorflow/core:array_ops_op_lib",
        "//tensorflow/core:math_ops_op_lib",
        "//tensorflow/core:nn_ops_op_lib",
        "//tensorflow/core/kernels:quantization_utils",
        "//tensorflow/core/kernels:quantized_ops",
    ] + MKL_TEST_DEPS,
)

tf_cc_test_mkl(
    name = "mkl_quantized_conv_ops_test",
    size = "small",
    srcs = ["mkl_quantized_conv_ops_test.cc"],
    linkstatic = 1,  # Fixes dyld error on MacOS.
    deps = [
        ":mkl_conv_op",
        "//tensorflow/core:array_ops_op_lib",
        "//tensorflow/core:math_ops_op_lib",
        "//tensorflow/core:nn_ops_op_lib",
        "//tensorflow/core/kernels:quantization_utils",
        "//tensorflow/core/kernels:quantized_ops",
    ] + MKL_TEST_DEPS,
)

tf_cc_test_mkl(
    name = "mkl_qmatmul_op_test",
    size = "small",
    srcs = ["mkl_qmatmul_op_test.cc"],
    linkstatic = 1,  # Fixes dyld error on MacOS.
    deps = [
        ":mkl_qmatmul_op",
        "//tensorflow/core:array_ops_op_lib",
        "//tensorflow/core:math_ops_op_lib",
        "//tensorflow/core:nn_ops_op_lib",
        "//tensorflow/core/framework:fake_input",
        "//tensorflow/core/framework:tensor_testutil",
        "//tensorflow/core/kernels:quantization_utils",
        "//tensorflow/core/kernels:quantized_ops",
    ] + MKL_TEST_DEPS,
)

tf_mkl_kernel_library(
    name = "mkl_quantize_op",
    srcs = ["mkl_quantize_op.cc"],
    deps = [
        "//tensorflow/core/kernels:quantized_ops",
        "//tensorflow/core/graph:mkl_graph_util",
        "@gemmlowp",
    ] + MKL_DEPS,
)

tf_cc_test_mkl(
    name = "mkl_quantize_op_test",
    size = "small",
    srcs = ["mkl_quantize_op_test.cc"],
    linkstatic = 1,  # Fixes dyld error on MacOS.
    deps = [
        ":mkl_quantize_op",
        "//tensorflow/core:array_ops_op_lib",
        "//tensorflow/core:math_ops_op_lib",
        "//tensorflow/core:nn_ops_op_lib",
    ] + MKL_TEST_DEPS,
)

tf_cc_test_mkl(
    name = "mkl_quantized_pooling_ops_test",
    size = "small",
    srcs = ["mkl_quantized_pooling_ops_test.cc"],
    linkstatic = 1,  # Fixes dyld error on MacOS.
    deps = [
        ":mkl_pooling_ops",
        "//tensorflow/core:array_ops_op_lib",
        "//tensorflow/core:math_ops_op_lib",
        "//tensorflow/core:nn_ops_op_lib",
        "//tensorflow/core/kernels:quantization_utils",
        "//tensorflow/core/kernels:quantized_ops",
    ] + MKL_TEST_DEPS,
)

tf_cc_test_mkl(
    name = "mkl_quantized_concat_op_test",
    size = "small",
    srcs = ["mkl_quantized_concat_op_test.cc"],
    linkstatic = 1,  # Fixes dyld error on MacOS.
    deps = [
        ":mkl_concat_op",
        "//tensorflow/core:array_ops_op_lib",
        "//tensorflow/core:math_ops_op_lib",
        "//tensorflow/core:mkl_array_ops_op_lib",
        "//tensorflow/core:nn_ops_op_lib",
        "//tensorflow/core/kernels:quantization_utils",
        "//tensorflow/core/kernels:quantized_ops",
    ] + MKL_TEST_DEPS,
)

tf_mkl_kernel_library(
    name = "mkl_qmatmul_op",
    srcs = ["mkl_qmatmul_op.cc"],
    hdrs = [
        "mkl_matmul_ops_common.h",
        "mkl_quantized_conv_ops.h",
    ],
    deps = [
        "//tensorflow/core/kernels:matmul_op",
        "//tensorflow/core/kernels:no_op",
        "//tensorflow/core:math_ops_op_lib",
        "//tensorflow/core:mkl_nn_ops_op_lib",
        "//tensorflow/core:nn_ops_op_lib",
    ] + MKL_DEPS,
)

tf_mkl_kernel_library(
    name = "mkl_conv_op",
    hdrs = [
        "mkl_quantized_conv_ops.h",
    ],
    prefix = "mkl_conv",
    deps = [
        "@com_google_absl//absl/strings",
        "//tensorflow/core/kernels:conv_grad_shape_utils",
        "//tensorflow/core/kernels:conv_ops",
        "//tensorflow/core/kernels:no_op",
    ] + MKL_DEPS,
)

tf_cc_test_mkl(
    name = "mkl_conv_ops_test",
    size = "small",
    srcs = ["mkl_conv_ops_test.cc"],
    linkstatic = 1,  # Fixes dyld error on MacOS.
    deps = MKL_TEST_DEPS,
)

tf_cc_test_mkl(
    name = "mkl_relu_op_test",
    size = "small",
    srcs = ["mkl_relu_op_test.cc"],
    linkstatic = 1,  # Fixes dyld error on MacOS.
    deps = ["@com_google_absl//absl/strings"] + MKL_TEST_DEPS,
)

tf_mkl_kernel_library(
    name = "mkl_tfconv_op",
    prefix = "mkl_tfconv",
    deps = MKL_SHORT_DEPS,
)

tf_mkl_kernel_library(
    name = "mkl_input_conversion_op",
    hdrs = ["mkl_tfconv_op.h"],
    prefix = "mkl_input_conversion",
    deps = MKL_SHORT_DEPS,
)

tf_mkl_kernel_library(
    name = "mkl_pooling_ops",
    srcs = [
        "mkl_avgpooling_op.cc",
        "mkl_maxpooling_op.cc",
        "mkl_pooling_ops_common.cc",
    ],
    hdrs = ["mkl_pooling_ops_common.h"],
    deps = MKL_SHORT_DEPS,
)

tf_mkl_kernel_library(
    name = "mkl_dequantize_op",
    srcs = ["mkl_dequantize_op.cc"],
    deps = [
        "//third_party/eigen3",
        "@gemmlowp",
        "//tensorflow/core:array_ops_op_lib",
        "//tensorflow/core:core_cpu",
        "//tensorflow/core:framework",
        "//tensorflow/core:lib",
        "//tensorflow/core:math_ops_op_lib",
        "//tensorflow/core/graph:mkl_graph_util",
        "//tensorflow/core:nn_ops_op_lib",
        "//tensorflow/core/kernels:concat_lib_hdrs",
        "//tensorflow/core/kernels:conv_ops",
        "//tensorflow/core/kernels:cwise_op",
        "//tensorflow/core/kernels:eigen_helpers",
        "//tensorflow/core/kernels:meta_support",
        "//tensorflow/core/kernels:ops_util",
        "//tensorflow/core/kernels:pooling_ops",
        "//tensorflow/core/kernels:quantization_utils",
        "//tensorflow/core/kernels:quantized_ops",
        "//tensorflow/core/kernels:transpose_functor",
        "//tensorflow/core/util:image_resizer_state",
    ] + mkl_deps(),
)

tf_cc_test_mkl(
    name = "mkl_dequantize_op_test",
    size = "small",
    srcs = ["mkl_dequantize_op_test.cc"],
    linkstatic = 1,  # Fixes dyld error on MacOS.
    deps = [
        ":mkl_dequantize_op",
        ":mkl_tfconv_op",
        "//tensorflow/core:array_ops_op_lib",
        "//tensorflow/core:math_ops_op_lib",
        "//tensorflow/core:mkl_array_ops_op_lib",
        "//tensorflow/core:nn_ops_op_lib",
    ] + MKL_TEST_DEPS,
)

tf_mkl_kernel_library(
    name = "mkl_relu_op",
    prefix = "mkl_relu",
    deps = MKL_DEPS,
)

tf_mkl_kernel_library(
    name = "mkl_softmax_op",
    prefix = "mkl_softmax",
    deps = MKL_SHORT_DEPS + ["//third_party/eigen3"],
)

tf_mkl_kernel_library(
    name = "mkl_tmp_bf16_ops",
    prefix = "mkl_tmp_bf16_ops",
    deps = MKL_DEPS + [
        "//tensorflow/core/kernels:no_op",
    ],
)

tf_mkl_kernel_library(
    name = "mkl_fused_batch_norm_op",
    srcs = ["mkl_fused_batch_norm_op.cc"],
    deps = [
        "//third_party/eigen3",
        "//tensorflow/core:framework",
        "//tensorflow/core/kernels:fused_batch_norm_op",
        "//tensorflow/core/kernels:no_op",
    ] + mkl_deps(),
)

tf_cc_test_mkl(
    name = "mkl_fused_batch_norm_op_test",
    size = "small",
    srcs = ["mkl_fused_batch_norm_op_test.cc"],
    linkstatic = 1,
    deps = [
        ":mkl_conv_op",
        ":mkl_fused_batch_norm_op",
        "//tensorflow/core:direct_session",
        "//tensorflow/core/graph:mkl_graph_util",
        "//tensorflow/core/kernels:conv_ops_gpu_hdrs",
    ] + MKL_TEST_DEPS,
)

tf_mkl_kernel_library(
    name = "mkl_aggregate_ops",
    prefix = "mkl_aggregate_ops",
    deps = MKL_DEPS,
)

tf_mkl_kernel_library(
    name = "mkl_concat_op",
    prefix = "mkl_concat_op",
    deps = [
        "//tensorflow/core/kernels:no_op",
        "//tensorflow/core/kernels:quantization_utils",
    ] + MKL_DEPS,
)

tf_mkl_kernel_library(
    name = "mkl_reshape_op",
    prefix = "mkl_reshape_op",
    deps = MKL_DEPS,
)

tf_mkl_kernel_library(
    name = "mkl_slice_op",
    prefix = "mkl_slice_op",
    deps = MKL_DEPS,
)

tf_mkl_kernel_library(
    name = "mkl_identity_op",
    prefix = "mkl_identity_op",
    deps = MKL_DEPS,
)

tf_mkl_kernel_library(
    name = "mkl_lrn_op",
    prefix = "mkl_lrn_op",
    deps = MKL_DEPS,
)

tf_mkl_kernel_library(
    name = "mkl_cwise_ops_common",
    prefix = "mkl_cwise_ops_common",
    deps = MKL_DEPS + ["//tensorflow/core/kernels:cwise_op"],
)

tf_mkl_kernel_library(
    name = "mkl_requantize_ops",
    srcs = [
        "mkl_requantization_range_per_channel_op.cc",
        "mkl_requantize_per_channel_op.cc",
    ],
    deps = [
        "@gemmlowp",
        "//tensorflow/core/kernels:concat_lib_hdrs",
        "//tensorflow/core/kernels:conv_ops",
        "//tensorflow/core/kernels:eigen_helpers",
        "//tensorflow/core/kernels:meta_support",
        "//tensorflow/core/kernels:no_op",
        "//tensorflow/core/kernels:pooling_ops",
        "//tensorflow/core/kernels:quantization_utils",
        "//tensorflow/core/util:image_resizer_state",
    ] + MKL_DEPS,
)

tf_cc_test_mkl(
    name = "mkl_requantize_ops_test",
    size = "small",
    srcs = ["mkl_requantize_ops_test.cc"],
    linkstatic = 1,  # Fixes dyld error on MacOS.
    deps = [
        ":mkl_requantize_ops",
        "//tensorflow/core:array_ops_op_lib",
        "//tensorflow/core:math_ops_op_lib",
        "//tensorflow/core/kernels:quantization_utils",
        "//tensorflow/core/kernels:quantized_ops",
    ] + MKL_TEST_DEPS,
)

tf_cc_test_mkl(
    name = "mkl_fused_ops_test",
    size = "small",
    srcs = ["mkl_fused_ops_test.cc"],
    linkstatic = 1,
    deps = [
        ":mkl_conv_op",
        ":mkl_matmul_op",
        ":mkl_tfconv_op",
        "//tensorflow/cc:cc_ops_internal",
        "//tensorflow/core:direct_session",
        "//tensorflow/core/graph:mkl_graph_util",
        "//tensorflow/core/kernels:bias_op",
        "//tensorflow/core/kernels:conv_ops",
        "//tensorflow/core/kernels:depthwise_conv_op",
        "//tensorflow/core/kernels:matmul_op",
        "//tensorflow/core/kernels:pad_op",
        "//tensorflow/core/kernels:relu_op",
        "//tensorflow/core/kernels/image:image",
        "//tensorflow/core:tensorflow",
    ] + MKL_TEST_DEPS,
)

tf_mkl_kernel_library(
    name = "mkl_transpose_op",
    srcs = [
        "mkl_transpose_op.cc",
    ],
    deps = MKL_DEPS + ["//tensorflow/core/kernels:transpose_op"],
)
