aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/lite/context.h
diff options
context:
space:
mode:
authorGravatar Yu-Cheng Ling <ycling@google.com>2018-01-17 12:28:46 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-01-17 12:32:50 -0800
commit36635f4a389c812bb328821e5e533feeef7d26ed (patch)
tree4ce54e3a191ffc175296663a6529819c367cc90b /tensorflow/contrib/lite/context.h
parentaabe9698daf5004ec90f04e2da5b71b51b010b6d (diff)
Make int64 inputs workable, and testable in generate_examples_test.
PiperOrigin-RevId: 182252829
Diffstat (limited to 'tensorflow/contrib/lite/context.h')
-rw-r--r--tensorflow/contrib/lite/context.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tensorflow/contrib/lite/context.h b/tensorflow/contrib/lite/context.h
index 41257a53b1..fca7116503 100644
--- a/tensorflow/contrib/lite/context.h
+++ b/tensorflow/contrib/lite/context.h
@@ -141,6 +141,7 @@ typedef struct {
// A union of points that points to memory for a given tensor.
typedef union {
int* i32;
+ int64_t* i64;
float* f;
char* raw;
const char* raw_const;