aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/stream_executor
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-06-28 15:06:40 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-06-28 15:10:14 -0700
commit0ea6847c892497afdd20c1150fee1e532612ca17 (patch)
tree2a5347d4599788cc4ce9c9981a57243a136e1704 /tensorflow/stream_executor
parentc0616864648cd52749bf722051de1a5d46be9a5e (diff)
Automated g4 rollback of changelist 202292422
PiperOrigin-RevId: 202551122
Diffstat (limited to 'tensorflow/stream_executor')
-rw-r--r--tensorflow/stream_executor/host/host_gpu_executor.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/stream_executor/host/host_gpu_executor.cc b/tensorflow/stream_executor/host/host_gpu_executor.cc
index c8a6297330..2c4819651a 100644
--- a/tensorflow/stream_executor/host/host_gpu_executor.cc
+++ b/tensorflow/stream_executor/host/host_gpu_executor.cc
@@ -95,7 +95,7 @@ bool HostExecutor::MemcpyDeviceToDevice(Stream *stream,
// the nature of the HostExecutor) memcpy on the stream (HostStream)
// associated with the HostExecutor.
AsHostStream(stream)->EnqueueTask(
- [src_mem, dst_mem, size]() { memcpy(dst_mem, src_mem, size); });
+ [src_mem, dst_mem, size]() { memcpy(src_mem, dst_mem, size); });
return true;
}