We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dc6405 commit c350d0cCopy full SHA for c350d0c
tensorflow/core/kernels/BUILD
@@ -7673,6 +7673,26 @@ cc_library(
7673
],
7674
)
7675
7676
+tf_kernel_library(
7677
+ name = "deepspeech_cwise_ops",
7678
+ srcs = [
7679
+ "cwise_op_less.cc",
7680
+ "cwise_op_minimum.cc",
7681
+ "cwise_op_mul_1.cc",
7682
+ ],
7683
+ gpu_srcs = [
7684
+ "cwise_op_gpu_less.cu.cc",
7685
+ "cwise_op_gpu_minimum.cu.cc",
7686
+ "cwise_op_gpu_mul.cu.cc",
7687
7688
+ deps = [
7689
+ ":cwise_lib",
7690
+ "//tensorflow/core:framework",
7691
+ "//tensorflow/core:lib",
7692
+ "//third_party/eigen3",
7693
7694
+)
7695
+
7696
# Header-only version of cwise_lib for clients that want to use the cwise_ops
7697
# functionality in their own custom ops.
7698
cc_header_only_library(
0 commit comments