What does "Flex Op" mean in Tensorflow?

Viewed 1496
1 Answers

See the documentation here: Using TensorFlow Lite with select TensorFlow ops

It's an experimental feature to support TensorFlow ops which are not supported by TensorFlow Lite, by linking and running TensorFlow kernels.

"Flex" is the internal code name for the "Using TensorFlow Lite with select TensorFlow ops" feature.

Related