/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_ordering_test.cc | 187 TF_ASSERT_OK_AND_ASSIGN(auto dataflow, in TEST_F() 191 EXPECT_TRUE(ordering.IsDefinedBefore(dataflow->GetValueDefinedAt(param), in TEST_F() 192 dataflow->GetValueDefinedAt(constant))); in TEST_F() 193 EXPECT_TRUE(!ordering.IsDefinedBefore(dataflow->GetValueDefinedAt(constant), in TEST_F() 194 dataflow->GetValueDefinedAt(param))); in TEST_F() 239 TF_ASSERT_OK_AND_ASSIGN(auto dataflow, in TEST_F() 245 EXPECT_TRUE(ordering.IsDefinedBefore(dataflow->GetValueDefinedAt(constant), in TEST_F() 246 dataflow->GetValueDefinedAt(xla_while))); in TEST_F() 248 dataflow->GetValueDefinedAt(constant), in TEST_F() 249 dataflow->GetValueDefinedAt(xla_while), *dataflow)); in TEST_F() [all …]
|
D | hlo_ordering.cc | 172 const HloDataflowAnalysis& dataflow) const { in UseIsBeforeValueDefinition() 184 dataflow.CanShareOperandBufferWithUser( in UseIsBeforeValueDefinition() 257 const HloDataflowAnalysis& dataflow) const { in LiveRangeStrictlyBefore() 272 if (dataflow.DoesNotUseOperandBuffer(a.instruction(), a.index(), in LiveRangeStrictlyBefore() 276 if (!UseIsBeforeValueDefinition(use, b, dataflow)) { in LiveRangeStrictlyBefore() 298 const HloDataflowAnalysis& dataflow) const { in MayInterfere() 300 return !LiveRangeStrictlyBefore(a, b, dataflow) && in MayInterfere() 301 !LiveRangeStrictlyBefore(b, a, dataflow); in MayInterfere()
|
D | hlo_ordering.h | 55 const HloDataflowAnalysis& dataflow) const; 59 const HloDataflowAnalysis& dataflow) const; 64 const HloDataflowAnalysis& dataflow) const;
|
D | copy_insertion.cc | 168 bool IndicesToCopyForWhile(const HloDataflowAnalysis& dataflow, in IndicesToCopyForWhile() argument 179 if (dataflow.GetValueSet(init, index).values().size() > 1 || in IndicesToCopyForWhile() 180 dataflow.GetValueSet(xla_while, index).values().size() > 1) { in IndicesToCopyForWhile() 186 should_copy = dataflow.GetUniqueValueAt(xla_while, index) != in IndicesToCopyForWhile() 187 dataflow.GetUniqueValueAt(init, index); in IndicesToCopyForWhile() 1241 TF_ASSIGN_OR_RETURN(std::unique_ptr<HloDataflowAnalysis> dataflow, in AddCopiesForBufferAssignment() 1259 for (const auto& pair : dataflow->GetInstructionValueSet(root)) { in AddCopiesForBufferAssignment()
|
D | buffer_liveness_test.cc | 690 auto dataflow = HloDataflowAnalysis::Run(*module).ConsumeValueOrDie(); in RunWithHloDataflowAnalysis() local 697 dataflow->GetUniqueValueAt(tuple_param0, {1}), in RunWithHloDataflowAnalysis() 698 dataflow->GetUniqueValueAt(tuple_root, {1}), *dataflow); in RunWithHloDataflowAnalysis()
|
D | hlo_alias_analysis.cc | 63 const HloDataflowAnalysis& dataflow) in BufferValueMap() argument 64 : module_(module), dataflow_(dataflow) { in BufferValueMap()
|
/external/clang/include/clang/Analysis/FlowSensitive/ |
D | DataflowValues.h | 30 namespace dataflow { 40 typename _AnalysisDirTag = dataflow::forward_analysis_tag > 69 bool isForwardAnalysis(dataflow::forward_analysis_tag) { return true; } in isForwardAnalysis() 70 bool isForwardAnalysis(dataflow::backward_analysis_tag) { return false; } in isForwardAnalysis()
|
/external/error_prone/checkerframework/ |
D | METADATA | 5 "package contains the Checker Framework's dataflow analysis." 14 …value: "http://repo1.maven.org/maven2/org/checkerframework/dataflow/2.5.3/dataflow-2.5.3-sources.j…
|
/external/tensorflow/tensorflow/compiler/xla/tests/ |
D | test_utils.cc | 393 const HloDataflowAnalysis& dataflow, const HloInstruction& param) { in FindConstrainedUses() argument 395 for (const auto& pair : dataflow.GetInstructionValueSet(¶m)) { in FindConstrainedUses() 396 const HloValue& value = dataflow.GetUniqueValueAt(¶m, pair.first); in FindConstrainedUses() 411 auto fused_uses = FindConstrainedUses(dataflow, *to_analyze); in FindConstrainedUses() 418 auto converted_uses = FindConstrainedUses(dataflow, *instruction); in FindConstrainedUses() 533 StatusOr<Literal> MakeConstrainedArgument(const HloDataflowAnalysis& dataflow, in MakeConstrainedArgument() argument 536 const auto constrained_uses = FindConstrainedUses(dataflow, param); in MakeConstrainedArgument() 557 TF_ASSIGN_OR_RETURN(auto dataflow, HloDataflowAnalysis::Run(*module)); in MakeFakeArguments() 562 MakeConstrainedArgument(*dataflow, *params[i], engine).ValueOrDie(); in MakeFakeArguments()
|
/external/compiler-rt/test/dfsan/ |
D | lit.cfg | 11 # Setup default compiler flags used with -fsanitize=dataflow option. 12 clang_dfsan_cflags = ["-fsanitize=dataflow", config.target_cflags]
|
/external/llvm/lib/Fuzzer/test/dfsan/ |
D | CMakeLists.txt | 4 "${LIBFUZZER_FLAGS_BASE} -fno-sanitize=all -fsanitize=dataflow")
|
/external/error_prone/ |
D | Android.bp | 25 "checkerframework/dataflow-2.5.3.jar",
|
/external/mesa3d/src/intel/compiler/ |
D | brw_fs_copy_propagation.cpp | 877 fs_copy_prop_dataflow dataflow(copy_prop_ctx, cfg, live_intervals, out_acp); in opt_copy_propagation() local 885 for (int i = 0; i < dataflow.num_acp; i++) { in opt_copy_propagation() 886 if (BITSET_TEST(dataflow.bd[block->num].livein, i)) { in opt_copy_propagation() 887 struct acp_entry *entry = dataflow.acp[i]; in opt_copy_propagation()
|
/external/tensorflow/tensorflow/core/public/ |
D | README.md | 3 TensorFlow is a computational dataflow graph library.
|
/external/tensorflow/tensorflow/core/protobuf/ |
D | worker_service.proto | 27 // WorkerService defines a TensorFlow service that executes dataflow
|
D | master_service.proto | 63 // executing a dataflow computation, and fetching arguments.
|
/external/llvm/test/Transforms/RewriteStatepointsForGC/ |
D | basics.ll | 43 ; of merge. This was a bug in the dataflow liveness at one point.
|
/external/clang/include/clang/Basic/ |
D | Sanitizers.def | 82 SANITIZER("dataflow", DataFlow)
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/RewriteStatepointsForGC/ |
D | basics.ll | 44 ; of merge. This was a bug in the dataflow liveness at one point.
|
/external/clang/lib/StaticAnalyzer/ |
D | README.txt | 134 [1] Precise interprocedural dataflow analysis via graph reachability,
|
/external/swiftshader/third_party/LLVM/docs/HistoricalNotes/ |
D | 2007-OriginalClangReadme.txt | 60 libanalysis - Source-level dataflow analysis useful for performing analyses
|
/external/llvm/docs/HistoricalNotes/ |
D | 2007-OriginalClangReadme.txt | 60 libanalysis - Source-level dataflow analysis useful for performing analyses
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/HistoricalNotes/ |
D | 2007-OriginalClangReadme.txt | 60 libanalysis - Source-level dataflow analysis useful for performing analyses
|
/external/llvm/test/CodeGen/AMDGPU/ |
D | detect-dead-lanes.mir | 278 # Check "optimistic" dataflow fixpoint in phi-loops.
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AMDGPU/ |
D | detect-dead-lanes.mir | 262 # Check "optimistic" dataflow fixpoint in phi-loops.
|