/external/tensorflow/tensorflow/compiler/tf2xla/ |
D | resource_util.h | 38 absl::optional<std::string> function_name_; 46 : function_name_(function_name), in NodeInfo() 51 return absl::StrJoin({function_name_.value_or(""), node_name_, op_}, ":"); in DebugString() 55 return function_name_ == o.function_name_ && node_name_ == o.node_name_ && 61 return H::combine(std::move(h), o.function_name_, o.node_name_, o.op_); in AbslHashValue()
|
D | resource_util_test.cc | 40 node_info.function_name_ = absl::nullopt; in node_info_from_string() 42 node_info.function_name_ = std::move(tokens[0]); in node_info_from_string()
|
/external/tensorflow/tensorflow/lite/delegates/gpu/cl/ |
D | cl_kernel.cc | 63 function_name_(std::move(kernel.function_name_)), in CLKernel() 74 function_name_ = std::move(kernel.function_name_); in operator =() 87 *kern_ptr = clCreateKernel(program_, function_name_.c_str(), &error_code); in ReInit() 90 return absl::UnknownError(absl::StrCat("Failed to create ", function_name_, in ReInit() 107 function_name_ = function_name; in CreateFromProgram()
|
D | cl_kernel.h | 81 std::string function_name_; variable
|
/external/webrtc/rtc_base/ |
D | location.h | 31 : function_name_(function_name), in Location() 36 const char* function_name() const { return function_name_; } in function_name() 46 const char* function_name_ = "Unknown";
|
D | location.cc | 19 snprintf(buf, sizeof(buf), "%s@%s:%d", function_name_, file_name_, in ToString()
|
/external/libchrome/base/ |
D | location.h | 48 bool has_source_info() const { return function_name_ && file_name_; } in has_source_info() 52 const char* function_name() const { return function_name_; } in function_name() 77 const char* function_name_ = nullptr;
|
D | location.cc | 28 : function_name_(function_name), in Location() 45 return std::string(function_name_) + "@" + file_name_ + ":" + in ToString()
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | placer.h | 97 const string function_name_; variable
|
D | placer.cc | 139 function_name_(function_name), in Placer() 174 FunctionStack stack(function_name_); in Run()
|
D | process_function_library_runtime.h | 268 : function_name_(function_name), in MultiDeviceFunctionData() 277 const string function_name_; member
|
D | process_function_library_runtime.cc | 1090 VLOG(1) << "Running multi-device function " << data->function_name_; in RunMultiDevice() 1103 "Running a cross process function ", data->function_name_, in RunMultiDevice() 1149 << " from " << data->function_name_ << " with handle " << handle in RunMultiDevice() 1152 errors::FormatFunctionForError(data->function_name_), " ", in RunMultiDevice() 1159 << " from " << data->function_name_ << " with handle " << handle in RunMultiDevice() 1179 << data->function_name_ << " with handle " << handle; in RunMultiDevice() 1191 << data->function_name_ << " with handle " << handle; in RunMultiDevice()
|
/external/tensorflow/tensorflow/python/framework/ |
D | python_op_gen_internal.h | 100 const string function_name_; variable
|
D | python_op_gen.cc | 139 op_name_ = function_name_; in GenEagerPythonOp() 758 strings::StrCat("# No definition for ", function_name_, in GetEagerFunctionSetup() 858 AddDefLine(function_name_, parameters); in AddEagerFastPathAndGraphCode() 899 strings::StrCat(function_name_, kEagerFallbackSuffix), in AddEagerFallbackCode() 986 &result_, " ", "return ", function_name_, kEagerFallbackSuffix, in AddEagerFastPathExecute() 1137 AddBodyNoReturn(strings::StrCat(prefix, " ", function_name_, in AddDispatch() 1156 function_name_, "))\n"); in AddRawOpExport()
|
D | python_op_gen_internal.cc | 519 function_name_(function_name), in GenPythonOp() 667 AddDefLine(function_name_, parameters); in AddDefLine()
|