Skip to content

Commit

Permalink
Create kernel library for Less, Minimum, and Mul ops
Browse files Browse the repository at this point in the history
  • Loading branch information
reuben committed Jul 8, 2019
1 parent 3dc6405 commit c350d0c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions tensorflow/core/kernels/BUILD
Expand Up @@ -7673,6 +7673,26 @@ cc_library(
],
)

tf_kernel_library(
name = "deepspeech_cwise_ops",
srcs = [
"cwise_op_less.cc",
"cwise_op_minimum.cc",
"cwise_op_mul_1.cc",
],
gpu_srcs = [
"cwise_op_gpu_less.cu.cc",
"cwise_op_gpu_minimum.cu.cc",
"cwise_op_gpu_mul.cu.cc",
],
deps = [
":cwise_lib",
"//tensorflow/core:framework",
"//tensorflow/core:lib",
"//third_party/eigen3",
],
)

# Header-only version of cwise_lib for clients that want to use the cwise_ops
# functionality in their own custom ops.
cc_header_only_library(
Expand Down

0 comments on commit c350d0c

Please sign in to comment.