aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-07-18 14:31:42 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-07-18 14:35:41 -0700
commit3acdb7dae41cc54119398dcf8891a2691aa2dc45 (patch)
treebd6439502ca571a12028a5cd453af07ee148e172 /tensorflow/compiler/xla/service
parent3b67fe7e59885ece03c14e09f76dd39f6f9f4a39 (diff)
[XLA:CPU] Sync function definition argument names with function declaration argument names; NFC.
PiperOrigin-RevId: 162404670
Diffstat (limited to 'tensorflow/compiler/xla/service')
-rw-r--r--tensorflow/compiler/xla/service/cpu/cpu_runtime.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tensorflow/compiler/xla/service/cpu/cpu_runtime.h b/tensorflow/compiler/xla/service/cpu/cpu_runtime.h
index 40a7f548a2..46cf64966a 100644
--- a/tensorflow/compiler/xla/service/cpu/cpu_runtime.h
+++ b/tensorflow/compiler/xla/service/cpu/cpu_runtime.h
@@ -95,13 +95,13 @@ extern void* __xla_cpu_runtime_AcquireInfeedBufferForDequeue(
// implemented we will add support for multiple outstanding buffers
// that can be returned out of order.
extern void __xla_cpu_runtime_ReleaseInfeedBufferAfterDequeue(
- xla::int32 buffer_length, void* buffer_ptr, const void* shape,
+ xla::int32 buffer_length, void* buffer_ptr, const void* shape_ptr,
xla::int32 shape_length);
// Blocks until the next outfeed buffer is available to be populated, then
// returns it.
extern void* __xla_cpu_runtime_AcquireOutfeedBufferForPopulation(
- xla::int32 buffer_length, const void* shape, xla::int32 shape_length);
+ xla::int32 buffer_length, const void* shape_ptr, xla::int32 shape_length);
// Relinquishes the outfeed buffer after it has been populated.
// buffer_ptr must have been previously returned by
@@ -113,7 +113,7 @@ extern void* __xla_cpu_runtime_AcquireOutfeedBufferForPopulation(
// acquired, i.e., there may only be one outstanding outfeed buffer in
// use by the runtime.
extern void __xla_cpu_runtime_ReleaseOutfeedBufferAfterPopulation(
- xla::int32 buffer_length, void* buffer_ptr, const void* shape,
+ xla::int32 buffer_length, void* buffer_ptr, const void* shape_ptr,
xla::int32 shape_length);
} // extern "C"