aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/stream_executor
diff options
context:
space:
mode:
authorGravatar Chris Leary <leary@google.com>2018-06-12 21:48:02 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-06-12 21:53:26 -0700
commit73df4d8af009fce352cbe04b06d61dcdaa208650 (patch)
treeac18c0101da7f846a318775312508d724a2cfcfe /tensorflow/stream_executor
parent3dd28824023e5bda9f8b5f0a40e4f89c7e4ad920 (diff)
[XLA] "Global value" tuple destructuring available via SWIG APIs.
PiperOrigin-RevId: 200333639
Diffstat (limited to 'tensorflow/stream_executor')
-rw-r--r--tensorflow/stream_executor/stream_executor_pimpl.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/stream_executor/stream_executor_pimpl.cc b/tensorflow/stream_executor/stream_executor_pimpl.cc
index b222a4d82a..000795ff00 100644
--- a/tensorflow/stream_executor/stream_executor_pimpl.cc
+++ b/tensorflow/stream_executor/stream_executor_pimpl.cc
@@ -610,7 +610,7 @@ port::Status StreamExecutor::SynchronousMemcpyD2H(
port::Status StreamExecutor::SynchronousMemcpyH2D(
const void *host_src, int64 size, DeviceMemoryBase *device_dst) {
VLOG(1) << "Called StreamExecutor::SynchronousMemcpyH2D(host_src=" << host_src
- << ", size=" << size << ", device_dst" << device_dst->opaque() << ")"
+ << ", size=" << size << ", device_dst=" << device_dst->opaque() << ")"
<< StackTraceIfVLOG10();
port::Status result;