cpetig / tflite_micro_compiler

generate tflite micro code which bypasses the interpreter (directly calls into kernels)
Apache License 2.0
77 stars 26 forks source link

Empty opdata arrays don't compile on visualC++ #3

Closed cpetig closed 4 years ago

cpetig commented 4 years ago

const uint8_t model_opdata4[0] = { }; is invalid on visualC++. Using a minimum size of 1 (byte) fixes this.