HomeSort by relevance Sort by last modified time
    Searched defs:OpKernel (Results 1 - 2 of 2) sorted by null

  /external/tensorflow/tensorflow/core/framework/
op_kernel.cc 89 // OpKernel ------------------------------------------------------------------
91 OpKernel::OpKernel(OpKernelConstruction* context)
92 : OpKernel(context, MakeUnique<const NodeDef>(context->def())) {}
94 OpKernel::OpKernel(OpKernelConstruction* context,
109 cost_estimate_(OpKernel::kInitialCostEstimateCycles) {
122 OpKernel::~OpKernel() {}
124 const uint64 OpKernel::kInitialCostEstimateCycles
    [all...]
op_kernel.h 78 class OpKernel {
80 // OpKernel won't be instantiated by the scheduler, so you may perform
82 explicit OpKernel(OpKernelConstruction* context);
88 explicit OpKernel(OpKernelConstruction* context,
91 virtual ~OpKernel();
93 // An OpKernel's computation can be either synchronous or
94 // asynchronous. All OpKernel Compute() methods must be thread-safe as they
99 // subclass OpKernel and override the Compute() method and have it
215 TF_DISALLOW_COPY_AND_ASSIGN(OpKernel);
218 class AsyncOpKernel : public OpKernel {
    [all...]

Completed in 71 milliseconds