aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/stream_executor
diff options
context:
space:
mode:
authorGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-08 19:25:58 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-08 19:26:34 -0700
commitf3a52fea81868e49e2ebf0e7d6ba6dda5081b1a3 (patch)
tree6c242ad2343fa3a51b3b385af20cea264f7b2bf4 /tensorflow/stream_executor
parentbbdfe7c8a43b4df626b2d20cbe3a6094e4097116 (diff)
parent6cc0ef8afe751164c17ab4981ba64957685594ef (diff)
Merge pull request #21232 from ghostplant:fix-typo
PiperOrigin-RevId: 207983992
Diffstat (limited to 'tensorflow/stream_executor')
-rw-r--r--tensorflow/stream_executor/stream_executor_internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/stream_executor/stream_executor_internal.h b/tensorflow/stream_executor/stream_executor_internal.h
index 92e5376835..59a477b5c9 100644
--- a/tensorflow/stream_executor/stream_executor_internal.h
+++ b/tensorflow/stream_executor/stream_executor_internal.h
@@ -236,7 +236,7 @@ class StreamExecutorInterface {
virtual bool Memcpy(Stream *stream, DeviceMemoryBase *gpu_dst,
const void *host_src, uint64 size) = 0;
virtual bool MemcpyDeviceToDevice(Stream *stream, DeviceMemoryBase *gpu_dst,
- const DeviceMemoryBase &host_src,
+ const DeviceMemoryBase &gpu_src,
uint64 size) = 0;
virtual bool HostCallback(Stream *stream, std::function<void()> callback) = 0;
virtual bool HostCallback(Stream *stream,