Searched refs:pipeline_name (Results 1 – 10 of 10) sorted by relevance
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_pass_pipeline.cc | 39 const std::string& pipeline_name) { in RecordPassStartMetadata() argument 43 TF_CHECK_OK(module.metadata()->set_current_pass_pipeline_name(pipeline_name)); in RecordPassStartMetadata() 48 const std::string& pipeline_name) { in RecordPassStartMetadata() argument 50 RecordPassStartMetadata(*module, pass_name, pipeline_name); in RecordPassStartMetadata() 158 std::string pipeline_name = std::string(name()); in RunPassesInternal() local 162 RecordPassStartMetadata(*hlo, std::string(kPipelineStart), pipeline_name); in RunPassesInternal() 182 RecordPassStartMetadata(*hlo, pass_name, pipeline_name); in RunPassesInternal()
|
D | hlo_module_metadata.h | 77 Status set_current_pass_pipeline_name(const std::string& pipeline_name) { in set_current_pass_pipeline_name() argument 79 [&pipeline_name](HloPassMetadata* pass_metadata) { in set_current_pass_pipeline_name() 80 pass_metadata->set_pipeline_name(pipeline_name); in set_current_pass_pipeline_name()
|
D | hlo_pass_pipeline_test.cc | 380 std::string pipeline_name = std::string(pipeline.name()); in TEST_F() local 391 EXPECT_THAT(pass_metadata.pipeline_name(), StrEq(pipeline_name)); in TEST_F()
|
D | dump.cc | 134 should_dump_pipeline = [pattern](string_view pipeline_name) { in CanonicalDebugOptions() argument 135 return RE2::PartialMatch(pipeline_name, pattern); in CanonicalDebugOptions() 163 std::function<bool(string_view pipeline_name)> should_dump_pipeline; 696 string_view pipeline_name, string_view before_pass_name, in DumpHloModuleBetweenPassesIfEnabled() argument 708 if (!opts.should_dump_pipeline(pipeline_name)) { in DumpHloModuleBetweenPassesIfEnabled() 716 StrFormat("%04d.%s.after_%s.before_%s", step_number, pipeline_name, in DumpHloModuleBetweenPassesIfEnabled()
|
D | dump.h | 110 absl::string_view pipeline_name, absl::string_view before_pass_name,
|
D | hlo.proto | 688 // metadata for a particular pass, pass_name and pipeline_name would be more 692 string pipeline_name = 3; field
|
/external/tensorflow/tensorflow/core/function/ |
D | runtime_client.cc | 111 Status Runtime::TransformFunction(StringPiece name, StringPiece pipeline_name) { in TransformFunction() argument 119 if (mlir::failed(mlir::parsePassPipeline(std::string(pipeline_name), pm, in TransformFunction() 122 absl::StrCat("locating pass pipeline ", pipeline_name, ": ", in TransformFunction() 142 absl::StrCat("running pass pipeline ", pipeline_name, ": "))); in TransformFunction()
|
D | runtime_client.h | 72 Status TransformFunction(StringPiece name, StringPiece pipeline_name);
|
/external/deqp-deps/amber/src/ |
D | shader_compiler.cc | 69 const std::string pipeline_name = pipeline->GetName(); in Compile() local 70 if (pipeline_name != "") { in Compile() 71 key = pipeline_name + "-" + key; in Compile()
|
/external/deqp-deps/amber/docs/ |
D | amber_script.md | 401 PIPELINE {pipeline_type} {pipeline_name} 406 DERIVE_PIPELINE {pipeline_name} FROM {parent_pipeline} 791 # Run the given |pipeline_name| which must be a `compute` pipeline. The 794 RUN {pipeline_name} _x_ _y_ _z_ 798 # Run the given |pipeline_name| which must be a `graphics` pipeline. The 801 RUN {pipeline_name} \ 807 # Run the given |pipeline_name| which must be a `graphics` pipeline. The 811 RUN {pipeline_name} \ 818 # Run the |pipeline_name| which must be a `graphics` pipeline. The vertex 825 RUN {pipeline_name} DRAW_ARRAY AS {topology} \ [all …]
|