chromium-112-gcc-13-0005-tensorflow-tflite.patch 594 B

123456789101112131415161718
  1. https://github.com/tensorflow/tensorflow/pull/60299
  2. From 9dbee4329ffd0474b939927f6d337959fb72318a Mon Sep 17 00:00:00 2001
  3. From: Stephan Hartmann <stha09@googlemail.com>
  4. Date: Fri, 31 Mar 2023 16:01:44 +0000
  5. Subject: [PATCH] tflite: add stdint.h for int types in internal::Spectrogram
  6. --- a/third_party/tflite/src/tensorflow/lite/kernels/internal/spectrogram.cc
  7. +++ b/third_party/tflite/src/tensorflow/lite/kernels/internal/spectrogram.cc
  8. @@ -17,6 +17,7 @@ limitations under the License.
  9. #include <assert.h>
  10. #include <math.h>
  11. +#include <stdint.h>
  12. #include "third_party/fft2d/fft.h"