Home
last modified time | relevance | path

Searched refs:stack_frame_ids (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/python/debug/lib/
Ddebug_events_reader.py430 stack_frame_ids, argument
442 self._stack_frame_ids = tuple(stack_frame_ids)
454 def stack_frame_ids(self): member in Execution
485 "stack_frame_ids": self.stack_frame_ids,
668 stack_frame_ids, argument
677 self._stack_frame_ids = stack_frame_ids
714 def stack_frame_ids(self): member in GraphOpCreationDigest
725 "stack_frame_ids": self.stack_frame_ids,
909 tuple(execution_proto.code_location.stack_frame_ids),
1010 tuple(op_creation_proto.code_location.stack_frame_ids),
[all …]
Ddumping_callback.py265 stack_frame_ids = []
270 stack_frame_ids.append(
284 stack_frame_ids.append(
288 host_name=self._hostname, stack_frame_ids=stack_frame_ids)
Ddebug_events_writer_test.py196 stack_frame_ids = sorted([actual.id for actual in actuals])
197 self.assertEqual(stack_frame_ids,
/external/tensorflow/tensorflow/core/util/
Ddebug_events_writer_test.cc560 std::vector<string> stack_frame_ids; in TEST_F() local
562 stack_frame_ids.push_back(actuals[i].stack_frame_with_id().id()); in TEST_F()
564 std::sort(stack_frame_ids.begin(), stack_frame_ids.end()); in TEST_F()
566 EXPECT_EQ(stack_frame_ids[i], strings::Printf("e%.2d", i * 3 + 1)); in TEST_F()
/external/tensorflow/tensorflow/core/protobuf/
Ddebug_event.proto160 repeated string stack_frame_ids = 2; field