Home
last modified time | relevance | path

Searched refs:BinaryOpShared (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/
Dcwise_ops_common.cc20 BinaryOpShared::BinaryOpShared(OpKernelConstruction* ctx, DataType out, in BinaryOpShared() function in tensorflow::BinaryOpShared
28 void BinaryOpShared::SetUnimplementedError(OpKernelContext* ctx) { in SetUnimplementedError()
34 void BinaryOpShared::SetComputeError(OpKernelContext* ctx) { in SetComputeError()
55 BinaryOpShared::BinaryOpState::BinaryOpState(OpKernelContext* ctx) in BinaryOpState()
Dcwise_ops_common.h47 class BinaryOpShared : public OpKernel {
49 explicit BinaryOpShared(OpKernelConstruction* ctx, DataType out, DataType in);
82 class BinaryOp : public BinaryOpShared {
88 : BinaryOpShared(ctx, DataTypeToEnum<Tout>::v(), in BinaryOp()