Searched refs:CreateKernel (Results 1 – 7 of 7) sorted by relevance
/external/tensorflow/tensorflow/core/kernels/ |
D | scale_and_translate_op_test.cc | 57 std::unique_ptr<const DynamicKernel> CreateKernel(const KernelType& kernel) { in CreateKernel() function 65 return CreateKernel(functor::CreateLanczos1Kernel()); in Create() 67 return CreateKernel(functor::CreateLanczos3Kernel()); in Create() 69 return CreateKernel(functor::CreateLanczos5Kernel()); in Create() 71 return CreateKernel(functor::CreateGaussianKernel()); in Create() 73 return CreateKernel(functor::CreateBoxKernel()); in Create() 75 return CreateKernel(functor::CreateTriangleKernel()); in Create() 77 return CreateKernel(functor::CreateKeysCubicKernel()); in Create() 79 return CreateKernel(functor::CreateMitchellCubicKernel()); in Create()
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | function.cc | 188 Status CreateKernel(const NodeDef& ndef, OpKernel** kernel) override; 249 Status FunctionLibraryRuntimeOverlay::CreateKernel(const NodeDef&, OpKernel**) { in CreateKernel() function in tensorflow::FunctionLibraryRuntimeOverlay 325 Status CreateKernel(const NodeDef& ndef, OpKernel** kernel) override; 400 Status CreateKernel(const NodeDef& ndef, 448 return CreateKernel(ndef, kernel); in FunctionLibraryRuntimeImpl() 532 Status FunctionLibraryRuntimeImpl::CreateKernel(const NodeDef& ndef, in CreateKernel() function in tensorflow::FunctionLibraryRuntimeImpl 534 return CreateKernel(ndef, base_lib_def_, kernel); in CreateKernel() 537 Status FunctionLibraryRuntimeImpl::CreateKernel( in CreateKernel() function in tensorflow::FunctionLibraryRuntimeImpl 892 return CreateKernel(ndef, lib_def, kernel); in CreateItem()
|
D | direct_session.cc | 1270 return lib->CreateKernel(ndef, kernel); in CreateExecutors() 1273 return lib->CreateKernel(ndef, kernel); in CreateExecutors()
|
/external/tensorflow/tensorflow/core/distributed_runtime/ |
D | graph_mgr.cc | 243 return lib->CreateKernel(ndef, kernel); in InitItem() 246 return lib->CreateKernel(ndef, kernel); in InitItem()
|
/external/tensorflow/tensorflow/compiler/tf2xla/ |
D | graph_compiler.cc | 133 Status s = flib_->CreateKernel(n->def(), &op_kernel_raw); in Compile()
|
/external/tensorflow/tensorflow/core/common_runtime/eager/ |
D | kernel_and_device.cc | 75 TF_RETURN_IF_ERROR(flr_->CreateKernel(ndef, &k)); in Init()
|
/external/tensorflow/tensorflow/core/framework/ |
D | function.h | 653 virtual Status CreateKernel(const NodeDef& ndef, OpKernel** kernel) = 0;
|