Hello
I am doing a benchmark between the Jetson Family (TensorRT, TensorFlow-TRT) and Coral (TensorFlow Lite).
-
Can TensorFlow Lite work with any type of GPU? Or ONLY with GPUs of mobile and embedded devices?
For example, the NVIDIA Tesla T4 has a precision of INT8 like the Coral TPU.
-
How does TensorFlow Lite optimize? Does it work like Tensorflow-TRT?
https://medium.com/tensorflow/high-performance-inference-with-tensorrt-integration-c4d78795fbfe
• Elimination of layers whose outputs are not used
• Elimination of operations which are equivalent to no-op
• The fusion of convolution, bias and ReLU operations
• Aggregation of operations with sufficiently similar parameters and the same source tensor (for example, the 1x1 convolutions in GoogleNet v5’s inception module)
• Merging of concatenation layers by directing layer outputs to the correct eventual destination.
Thank you
Hello
I am doing a benchmark between the Jetson Family (TensorRT, TensorFlow-TRT) and Coral (TensorFlow Lite).
Can TensorFlow Lite work with any type of GPU? Or ONLY with GPUs of mobile and embedded devices?
For example, the NVIDIA Tesla T4 has a precision of INT8 like the Coral TPU.
How does TensorFlow Lite optimize? Does it work like Tensorflow-TRT?
https://medium.com/tensorflow/high-performance-inference-with-tensorrt-integration-c4d78795fbfe
• Elimination of layers whose outputs are not used
• Elimination of operations which are equivalent to no-op
• The fusion of convolution, bias and ReLU operations
• Aggregation of operations with sufficiently similar parameters and the same source tensor (for example, the 1x1 convolutions in GoogleNet v5’s inception module)
• Merging of concatenation layers by directing layer outputs to the correct eventual destination.
Thank you