Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/graph/
Dgraph_partition.cc206 bool host_memory = false; in AddSend() local
210 host_memory = (src_it->second == HOST_MEMORY); in AddSend()
216 const string cast_op = (host_memory) ? "_HostCast" : "Cast"; in AddSend()
241 const string send_op = (host_memory) ? "_HostSend" : "_Send"; in AddSend()
270 bool host_memory = false; in AddRecv() local
274 host_memory = (dst_it->second == HOST_MEMORY); in AddRecv()
288 << (host_memory ? "host memory" : "device memory"); in AddRecv()
300 const string recv_op = (host_memory) ? "_HostRecv" : "_Recv"; in AddRecv()
313 const string cast_op = (host_memory) ? "_HostCast" : "Cast"; in AddRecv()