HomeSort by relevance Sort by last modified time
    Searched refs:callsites (Results 1 - 8 of 8) sorted by null

  /external/tensorflow/tensorflow/compiler/xla/service/
call_graph_test.cc 48 // given computation to the value 'callsites' number of times.
50 HloComputation* map_computation, int64 callsites) {
55 for (int64 i = 0; i < callsites; ++i) {
63 // given computation with value 'callsites' number of times.
65 HloComputation* callee_computation, int64 callsites,
71 for (int64 i = 0; i < callsites; ++i) {
107 EXPECT_TRUE(node.callsites().empty());
145 MakeMappingComputation(map_computation, /*callsites=*/5));
154 EXPECT_EQ(5, entry_node.callsites().size());
163 EXPECT_TRUE(map_node.callsites().empty())
    [all...]
flatten_call_graph_test.cc 46 // given computation to the value 'callsites' number of times.
48 HloComputation* map_computation, int64 callsites) {
53 for (int64 i = 0; i < callsites; ++i) {
61 // given computation with value 'callsites' number of times.
63 HloComputation* callee_computation, int64 callsites,
69 for (int64 i = 0; i < callsites; ++i) {
118 MakeMappingComputation(c_computation, /*callsites=*/1));
210 MakeCallingComputation(c_computation, /*callsites=*/2, ".B"));
213 MakeCallingComputation(b_computation, /*callsites=*/2, ".Entry"));
call_graph.cc 209 for (const CallSite& callsite : node->callsites()) {
283 // Construct nodes of the call graph and populate the callsites.
292 // Add all callsites in this computation.
298 // Add caller callsites to each node.
301 call_graph->GetNode(computation).callsites()) {
303 // Add caller callsites.
441 StrAppendFormat(&out, " callsites:\n");
442 for (const CallSite& callsite : node.callsites()) {
call_graph.h 102 const std::vector<CallSite>& callsites() const { return callsites_; } function in class:xla::CallGraphNode
  /external/perfetto/src/trace_processor/
heap_profile_tracker_unittest.cc 189 const auto& callsites = storage.heap_profile_callsites(); local
190 for (size_t i = 0; i < callsites.frame_depths().size(); ++i) {
191 if (callsites.frame_depths()[i] == depth &&
192 callsites.parent_callsite_ids()[i] == parent &&
193 callsites.frame_ids()[i] == frame_id) {
  /external/perfetto/src/profiling/memory/
heapprofd_producer.h 162 ProcessState(GlobalCallstackTrie* callsites) : heap_tracker(callsites) {}
unwinding_unittest.cc 130 GlobalCallstackTrie callsites; local
bookkeeping.h 140 // Graph of function callsites. This is shared between heap dumps for
260 // Snapshot for memory allocations of a particular process. Shares callsites
264 // Caller needs to ensure that callsites outlives the HeapTracker.
265 explicit HeapTracker(GlobalCallstackTrie* callsites)
266 : callsites_(callsites) {}

Completed in 3688 milliseconds