/external/tensorflow/tensorflow/core/common_runtime/ |
D | function_threadpool_test.cc | 115 Status Instantiate(FunctionLibraryRuntime* flr, const string& name, in Instantiate() function in tensorflow::__anonbf8091390111::FunctionLibraryRuntimeTest 118 return flr->Instantiate(name, attrs, handle); in Instantiate() 121 Status Instantiate(FunctionLibraryRuntime* flr, const string& name, in Instantiate() function in tensorflow::__anonbf8091390111::FunctionLibraryRuntimeTest 125 return flr->Instantiate(name, attrs, options, handle); in Instantiate() 144 Status status = flr->Instantiate(name, attrs, options, &handle); in InstantiateAndRun() 225 TF_CHECK_OK(Instantiate(flr0_, "XTimesTwo", {{"T", DT_FLOAT}}, &h)); in TEST_F()
|
D | process_function_library_runtime_test.cc | 55 void Instantiate(const string& function_name, in Instantiate() function in tensorflow::__anon96a4e55d0111::TestClusterFLR 167 Status Instantiate( in Instantiate() function in tensorflow::__anon96a4e55d0111::ProcessFunctionLibraryRuntimeTest 171 return proc_flr_->Instantiate(name, attrs, instantiate_opts, handle); in Instantiate() 219 Status status = pflr->Instantiate(name, attrs, instantiate_opts, &handle); in RunWithRuntime() 482 TF_CHECK_OK(Instantiate("FindDevice", in TEST_F() 495 TF_CHECK_OK(Instantiate("FindDevice", in TEST_F() 503 TF_CHECK_OK(Instantiate("FindDevice", in TEST_F() 509 TF_CHECK_OK(Instantiate("FindDevice", in TEST_F() 527 TF_CHECK_OK(Instantiate( in TEST_F() 697 Status status = proc_flr_->Instantiate( in TEST_F() [all …]
|
D | function_test.cc | 215 Status Instantiate(FunctionLibraryRuntime* flr, const string& name, in Instantiate() function in tensorflow::__anon196ffbc80111::FunctionLibraryRuntimeTest 218 return flr->Instantiate(name, attrs, handle); in Instantiate() 221 Status Instantiate(FunctionLibraryRuntime* flr, const string& name, in Instantiate() function in tensorflow::__anon196ffbc80111::FunctionLibraryRuntimeTest 225 return flr->Instantiate(name, attrs, options, handle); in Instantiate() 244 Status status = flr->Instantiate(name, attrs, options, &handle); in InstantiateAndRun() 303 Status status = flr->Instantiate(name, attrs, &handle); in InstantiateAndRunViaCallFrameInterface() 338 Status status = flr->Instantiate(name, attrs, &handle); in GetFuncBody() 354 Status status = flr->Instantiate(func, attrs, &handle); in GetGradBody() 416 TF_CHECK_OK(Instantiate(flr0_, "XTimesTwo", {{"T", DT_FLOAT}}, {}, &handle)); in TEST_F() 470 TF_CHECK_OK(flr0_->Instantiate( in TEST_F() [all …]
|
D | function.cc | 153 Status Instantiate(const string& function_name, AttrSlice attrs, 205 Status FunctionLibraryRuntimeOverlay::Instantiate( in Instantiate() function in tensorflow::FunctionLibraryRuntimeOverlay 213 return base_flr_->Instantiate(function_name, attrs, options_copy, handle); in Instantiate() 215 return base_flr_->Instantiate(function_name, attrs, options, handle); in Instantiate() 334 Status Instantiate(const string& function_name, AttrSlice attrs, 637 TF_RETURN_IF_ERROR(Instantiate(props->node_def.op(), in CreateKernel() 712 Instantiate(func.name(), AttrSlice(&func.attr()), options, &f_handle)); in InstantiateSymbolicGradient() 740 Status FunctionLibraryRuntimeImpl::Instantiate( in Instantiate() function in tensorflow::FunctionLibraryRuntimeImpl 744 return parent_->Instantiate(function_name, attrs, options, handle); in Instantiate() 788 return Instantiate(grad, AttrSlice(&func.attr()), options, handle); in Instantiate()
|
/external/tensorflow/tensorflow/core/framework/ |
D | function_handle_cache.cc | 36 Status FunctionHandleCache::Instantiate( in Instantiate() function in tensorflow::data::FunctionHandleCache 49 lib_->Instantiate(function_name, attrs, options, handle)); in Instantiate()
|
D | function_handle_cache.h | 34 Status Instantiate(const string& function_name, AttrSlice attrs,
|
D | function.h | 741 virtual Status Instantiate(const std::string& function_name, AttrSlice attrs, 744 Status Instantiate(const std::string& function_name, AttrSlice attrs, in Instantiate() function 747 return Instantiate(function_name, attrs, *opts, handle); in Instantiate() 971 virtual void Instantiate(
|
/external/vixl/tools/test_generator/ |
D | data_types.py | 71 def Instantiate(): member in OperandBase 118 def Instantiate(self): member in Operand 160 def Instantiate(self): member in OperandWrapper 176 operand.Instantiate()
|
/external/llvm-project/clang/test/Frontend/ |
D | ftime-report-template-decl.cpp | 88 void Instantiate() { L<0>::O<int>::Fun(0); } in Instantiate() function 133 void Instantiate() { in Instantiate() function
|
/external/tensorflow/tensorflow/core/kernels/ |
D | functional_ops.cc | 43 Status Instantiate(FunctionLibraryRuntime* lib, const NameAttrList& func, in Instantiate() function 45 return lib->Instantiate(func.name(), AttrSlice(&func.attr()), handle); in Instantiate() 48 Status Instantiate(OpKernelContext* ctx, const NameAttrList& func, in Instantiate() function 52 return ctx->function_library()->Instantiate( in Instantiate() 234 TF_RETURN_IF_ERROR(Instantiate(ctx, then_func_, then_handle)); in GetHandles() 235 TF_RETURN_IF_ERROR(Instantiate(ctx, else_func_, else_handle)); in GetHandles() 268 ctx, Instantiate(lib, branch_funcs_[i], &branch_handles[i]), done); in ComputeAsync() 685 TF_RETURN_IF_ERROR(Instantiate(ctx, cond_func_, cond_handle)); in GetHandles() 686 TF_RETURN_IF_ERROR(Instantiate(ctx, body_func_, body_handle)); in GetHandles() 735 OP_REQUIRES_OK(ctx, Instantiate(lib, *func, &body_handle_)); in ForOp()
|
D | partitioned_function_ops.cc | 114 OP_REQUIRES_OK_ASYNC(ctx, Instantiate(lib, ctx, &inputs, &handle), done); in ComputeAsync() 168 Status PartitionedCallOp::Instantiate(FunctionLibraryRuntime* lib, in Instantiate() function in tensorflow::PartitionedCallOp 229 lib->Instantiate(func_->name(), AttrSlice(&func_->attr()), opts, handle)); in Instantiate()
|
D | partitioned_function_ops.h | 48 Status Instantiate(FunctionLibraryRuntime* lib, OpKernelContext* ctx,
|
/external/tensorflow/tensorflow/core/kernels/data/ |
D | generator_dataset_op.cc | 116 dataset()->init_func_->Instantiate(ctx, &instantiated_init_func_)); in Initialize() 118 dataset()->next_func_->Instantiate(ctx, &instantiated_next_func_)); in Initialize() 119 TF_RETURN_IF_ERROR(dataset()->finalize_func_->Instantiate( in Initialize()
|
/external/clang/test/Parser/ |
D | cxx-template-decl.cpp | 160 void Instantiate() { L<0>::O<int>::Fun(0); } 207 void Instantiate() {
|
/external/llvm-project/clang/test/Parser/ |
D | cxx-template-decl.cpp | 165 void Instantiate() { L<0>::O<int>::Fun(0); } 212 void Instantiate() {
|
/external/tensorflow/tensorflow/core/distributed_runtime/ |
D | cluster_function_library_runtime_test.cc | 63 void Instantiate(const string& function_name, in Instantiate() function in tensorflow::ClusterFunctionLibraryRuntimeTest 69 cluster_flr_->Instantiate(function_name, lib_def, attrs, options, in Instantiate() 81 cluster_flr_->Instantiate(function_name, lib_def, attrs, options, &handle, in InstantiateAndRun()
|
D | cluster_function_library_runtime.h | 40 void Instantiate(const string& function_name,
|
/external/tensorflow/tensorflow/core/kernels/data/experimental/ |
D | group_by_reducer_dataset_op.cc | 206 TF_RETURN_IF_ERROR(dataset()->captured_key_func_->Instantiate( in Initialize() 208 TF_RETURN_IF_ERROR(dataset()->captured_init_func_->Instantiate( in Initialize() 210 TF_RETURN_IF_ERROR(dataset()->captured_reduce_func_->Instantiate( in Initialize() 212 TF_RETURN_IF_ERROR(dataset()->captured_finalize_func_->Instantiate( in Initialize()
|
D | group_by_window_dataset_op.cc | 199 TF_RETURN_IF_ERROR(dataset()->captured_key_func_->Instantiate( in Initialize() 201 TF_RETURN_IF_ERROR(dataset()->captured_reduce_func_->Instantiate( in Initialize() 203 TF_RETURN_IF_ERROR(dataset()->captured_window_size_func_->Instantiate( in Initialize()
|
/external/tensorflow/tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/ |
D | BUILD | 43 # Instantiate all the tests.
|
/external/libtextclassifier/native/lang_id/common/fel/ |
D | feature-extractor.h | 342 static Self *Instantiate(const GenericFeatureExtractor *extractor, in Instantiate() function 446 NES *f = NES::Instantiate(extractor, &sub, prefix); in CreateNested() 630 Function *function = Function::Instantiate(this, &fd, ""); in InitializeFeatureFunctions()
|
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/ |
D | abseil-duration-factory-float.cpp | 71 void Instantiate() { in Instantiate() function
|
/external/tensorflow/tensorflow/compiler/tf2xla/ |
D | const_analysis.cc | 41 TF_RETURN_IF_ERROR(flib_runtime->Instantiate( in GetFunctionBody() 54 TF_RETURN_IF_ERROR(flib_runtime->Instantiate( in GetFunctionBodies()
|
/external/tensorflow/tensorflow/core/distributed_runtime/eager/ |
D | cluster_function_library_runtime.h | 50 void Instantiate(const string& function_name,
|
/external/llvm-project/llvm/unittests/TableGen/ |
D | Automata.td | 141 // Instantiate all possible bin assignments for E. 154 // Instantiate all possible bin assignments for E, which spans even-odd pairs.
|