/external/tensorflow/tensorflow/compiler/xla/service/ |
D | hlo_reachability_test.cc | 54 HloReachabilityMap reachability({a, b, c, d, e}); in TEST_F() local 55 reachability.SetReachable(a, a); in TEST_F() 56 EXPECT_TRUE(reachability.SetReachabilityToUnion({a}, b)); in TEST_F() 57 EXPECT_TRUE(reachability.SetReachabilityToUnion({a}, c)); in TEST_F() 58 EXPECT_TRUE(reachability.SetReachabilityToUnion({b, c}, d)); in TEST_F() 59 EXPECT_TRUE(reachability.SetReachabilityToUnion({c}, e)); in TEST_F() 61 EXPECT_TRUE(reachability.IsReachable(a, a)); in TEST_F() 62 EXPECT_TRUE(reachability.IsReachable(a, b)); in TEST_F() 63 EXPECT_TRUE(reachability.IsReachable(a, c)); in TEST_F() 64 EXPECT_TRUE(reachability.IsReachable(a, d)); in TEST_F() [all …]
|
D | hlo_module_group_util.cc | 363 auto reachability = absl::make_unique<HloReachabilityMap>(post_order); in ComputeReachability() local 365 reachability->FastSetReachabilityToUnion(GlobalPredecessors(hlo), hlo); in ComputeReachability() 367 return std::move(reachability); in ComputeReachability()
|
D | multi_output_fusion.h | 89 HloReachabilityMap* reachability() const { return reachability_.get(); } in reachability() function
|
/external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | stream_assignment.cc | 51 const HloReachabilityMap& reachability) { in CanRunConcurrently() argument 52 return !reachability.IsConnected(&a, &b); in CanRunConcurrently() 67 const HloReachabilityMap& reachability, in ComputeStreamToAssign() argument 106 CanRunConcurrently(*seen_gemm, hlo, reachability)) { in ComputeStreamToAssign() 125 std::unique_ptr<HloReachabilityMap> reachability = in AssignStreams() local 142 *reachability, seen_gemms); in AssignStreams()
|
D | multi_output_fusion.cc | 182 reachability()->IsReachable(producer, operand); in DoProducerConsumerMultiOutputFusion() 202 reachability()->IsReachable(producer, operand); in DoProducerConsumerMultiOutputFusion()
|
/external/grpc-grpc/src/objective-c/GRPCClient/private/ |
D | GRPCConnectivityMonitor.m | 25 static SCNetworkReachabilityRef reachability; 62 reachability = SCNetworkReachabilityCreateWithAddress(NULL, (struct sockaddr *)&addr); 66 if (SCNetworkReachabilityGetFlags(reachability, &flags)) { 71 if (!SCNetworkReachabilitySetCallback(reachability, ReachabilityCallback, &context) || 72 !SCNetworkReachabilityScheduleWithRunLoop(reachability, CFRunLoopGetMain(),
|
/external/llvm/docs/ |
D | Lexicon.rst | 76 unable to use the pointer for reachability analysis. While a derived pointer 102 Garbage Collection. The practice of using reachability analysis instead of 112 reachability analysis. 208 which the collector begins its reachability analysis. In the context of code 222 reachability analysis may proceed. It may be infeasible to provide this
|
D | README.txt | 49 The reachability of external links in the documentation can be checked by
|
D | GarbageCollection.rst | 757 As reachability analysis proceeds, the collector copies objects from one heap 769 ("stop the world") before beginning reachability analysis. Stopping a
|
/external/deqp-deps/SPIRV-Tools/source/val/ |
D | basic_block.h | 77 void set_reachable(bool reachability) { reachable_ = reachability; } in set_reachable() argument
|
/external/swiftshader/third_party/SPIRV-Tools/source/val/ |
D | basic_block.h | 77 void set_reachable(bool reachability) { reachable_ = reachability; } in set_reachable() argument
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/ |
D | Lexicon.rst | 83 unable to use the pointer for reachability analysis. While a derived pointer 109 Garbage Collection. The practice of using reachability analysis instead of 131 reachability analysis. 237 which the collector begins its reachability analysis. In the context of code 251 reachability analysis may proceed. It may be infeasible to provide this
|
D | README.txt | 49 The reachability of external links in the documentation can be checked by
|
D | GarbageCollection.rst | 757 As reachability analysis proceeds, the collector copies objects from one heap 769 ("stop the world") before beginning reachability analysis. Stopping a
|
/external/v8/src/wasm/ |
D | function-body-decoder-impl.h | 508 Reachability reachability = kReachable; member 519 bool reachable() const { return reachability == kReachable; } in reachable() 525 bool unreachable() const { return reachability == kUnreachable; } in unreachable() 529 return reachability == kReachable ? kReachable : kSpecOnlyReachable; in innerReachability() 1523 c->reachability = control_at(1)->innerReachability(); in DecodeFunctionBody() 1574 c->reachability = control_at(1)->innerReachability(); in DecodeFunctionBody() 1593 c->reachability = control_at(1)->innerReachability(); in DecodeFunctionBody() 2045 current->reachability = kUnreachable; in EndControl() 2087 Reachability reachability = in PushControl() local 2091 c->reachability = reachability; in PushControl() [all …]
|
/external/clang/lib/StaticAnalyzer/ |
D | README.txt | 28 Conceptually the analyzer does a reachability analysis through the 134 [1] Precise interprocedural dataflow analysis via graph reachability,
|
/external/clang/ |
D | NOTES.txt | 97 only if the non-reachability is not due to macro or template
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | DFA.as | 149 …// not reached -- added due to bug in Flex compiler reachability analysis of while loop with no br…
|
/external/swiftshader/third_party/LLVM/docs/HistoricalNotes/ |
D | 2007-OriginalClangReadme.txt | 62 path-sensitive "graph-reachability" engine for writing
|
/external/llvm/docs/HistoricalNotes/ |
D | 2007-OriginalClangReadme.txt | 62 path-sensitive "graph-reachability" engine for writing
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/HistoricalNotes/ |
D | 2007-OriginalClangReadme.txt | 62 path-sensitive "graph-reachability" engine for writing
|
/external/clang/docs/analyzer/ |
D | RegionStore.txt | 148 reachability analysis, which must take the bindings in the old store into
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/NewGVN/ |
D | completeness.ll | 501 ;; Ensure that when reachability affects a phi of ops, we recompute
|
/external/v8/src/wasm/baseline/ |
D | liftoff-compiler.cc | 1340 current_block->reachability = kSpecOnlyReachable; in BoundsCheckMem()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/SimpleLoopUnswitch/ |
D | nontrivial-unswitch.ll | 791 ; the outer loops based on reachability.
|