Home
last modified time | relevance | path

Searched refs:CreateKernel (Results 1 – 7 of 7) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/
Dscale_and_translate_op_test.cc57 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/
Dfunction.cc188 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()
Ddirect_session.cc1270 return lib->CreateKernel(ndef, kernel); in CreateExecutors()
1273 return lib->CreateKernel(ndef, kernel); in CreateExecutors()
/external/tensorflow/tensorflow/core/distributed_runtime/
Dgraph_mgr.cc243 return lib->CreateKernel(ndef, kernel); in InitItem()
246 return lib->CreateKernel(ndef, kernel); in InitItem()
/external/tensorflow/tensorflow/compiler/tf2xla/
Dgraph_compiler.cc133 Status s = flib_->CreateKernel(n->def(), &op_kernel_raw); in Compile()
/external/tensorflow/tensorflow/core/common_runtime/eager/
Dkernel_and_device.cc75 TF_RETURN_IF_ERROR(flr_->CreateKernel(ndef, &k)); in Init()
/external/tensorflow/tensorflow/core/framework/
Dfunction.h653 virtual Status CreateKernel(const NodeDef& ndef, OpKernel** kernel) = 0;