| 41 | const bool DBG_DUMP_INPUT_TENSOR_AS_FLOAT_DATA = false; |
| 42 | |
| 43 | static string AddPort(const string& node_name) { |
| 44 | if (node_name.find(':') != string::npos) { |
| 45 | return node_name; |
| 46 | } else { |
| 47 | return strings::StrCat(node_name, ":", 0); |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | static uint8* FindAlignedPointer(uint8* ptr) { |
| 52 | const uintptr_t data_ptr_int = reinterpret_cast<uintptr_t>(ptr); |
no test coverage detected