aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/builtin_op_data.h
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-01-29 11:47:02 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-01-29 11:51:04 -0800
commit0050ce16d425b3367010d58a5a3dca30aab894a4 (patch)
tree698e7339320ee4c36806f844284ae2cac632b5fe /tensorflow/contrib/lite/builtin_op_data.h
parentdd808e926da2ccfb1dbe0086bcef5dee55a454a9 (diff)
Make TFLite Mean op have parity with TF Reduce Mean op by changing the
representation of axis from an attribute to a tensor. PiperOrigin-RevId: 183701017
Diffstat (limited to 'tensorflow/contrib/lite/builtin_op_data.h')
-rw-r--r--tensorflow/contrib/lite/builtin_op_data.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/tensorflow/contrib/lite/builtin_op_data.h b/tensorflow/contrib/lite/builtin_op_data.h
index 6dd9cb39d2..7a7e20a41e 100644
--- a/tensorflow/contrib/lite/builtin_op_data.h
+++ b/tensorflow/contrib/lite/builtin_op_data.h
@@ -199,10 +199,6 @@ typedef struct {
} TfLiteTransposeParams;
typedef struct {
- // TODO(ahentz): We can't have dynamic data in this struct, at least not yet.
- // For now we will fix the maximum possible number of dimensions.
- int axis[8];
- int num_axis_dimensions;
bool keep_dims;
} TfLiteMeanParams;