Searched defs:FrameAndIter (Results 1 - 1 of 1) sorted by relevance

/external/tensorflow/tensorflow/core/framework/
H A Dcontrol_flow.h29 // conceptually tagged by a 'FrameAndIter'. FrameAndIter consists of a
32 struct FrameAndIter { struct in namespace:tensorflow
36 FrameAndIter() {} function in struct:tensorflow::FrameAndIter
38 FrameAndIter(uint64 frame, int64 iter) { function in struct:tensorflow::FrameAndIter
43 bool operator==(const FrameAndIter& other) const {
49 size_t operator()(const FrameAndIter& key) const {
51 CHECK_EQ(sizeof(uint64) + sizeof(int64), sizeof(FrameAndIter));
52 return Hash64(reinterpret_cast<const char*>(&key), sizeof(FrameAndIter));

Completed in 142 milliseconds