Add uint16, uint32, uint64 support for tf.math.not_equal
Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
This commit is contained in:
parent
928ff3e27b
commit
67ef513917
|
@ -18,6 +18,7 @@ limitations under the License.
|
|||
namespace tensorflow {
|
||||
REGISTER7(BinaryOp, CPU, "NotEqual", functor::not_equal_to, float, Eigen::half,
|
||||
double, uint8, int8, int16, bfloat16);
|
||||
REGISTER3(BinaryOp, CPU, "NotEqual", functor::not_equal_to, uint16, uint32, uint64);
|
||||
#if GOOGLE_CUDA || TENSORFLOW_USE_ROCM
|
||||
REGISTER4(BinaryOp, GPU, "NotEqual", functor::not_equal_to, float, Eigen::half,
|
||||
double, uint8);
|
||||
|
|
Loading…
Reference in New Issue