From 43609ca84694acca988dc0ae591c69ac447659b2 Mon Sep 17 00:00:00 2001 From: Chris Xiong Date: Thu, 14 Jul 2022 19:16:24 -0400 Subject: chromium: Remove obsolete versions and patches --- .../files/chromium-97-arm-tflite-cast.patch | 26 ---------------------- 1 file changed, 26 deletions(-) delete mode 100644 www-client/chromium/files/chromium-97-arm-tflite-cast.patch (limited to 'www-client/chromium/files/chromium-97-arm-tflite-cast.patch') diff --git a/www-client/chromium/files/chromium-97-arm-tflite-cast.patch b/www-client/chromium/files/chromium-97-arm-tflite-cast.patch deleted file mode 100644 index 843a384..0000000 --- a/www-client/chromium/files/chromium-97-arm-tflite-cast.patch +++ /dev/null @@ -1,26 +0,0 @@ -vreinterpret_s32_s8() casts int8x8_t to int32x2_t. However, third argument -of vdotq_lane_s32() is of type int8x8_t. - ---- a/third_party/tflite/src/tensorflow/lite/kernels/internal/optimized/depthwiseconv_3x3_filter_common.h -+++ b/third_party/tflite/src/tensorflow/lite/kernels/internal/optimized/depthwiseconv_3x3_filter_common.h -@@ -129,16 +129,14 @@ inline int32x4_t vdotq_four_lane_s32(int32x4_t acc, int8x16_t lhs, - int8x16_t rhs, const int lane) { - switch (lane) { - case 0: -- return vdotq_lane_s32(acc, lhs, vreinterpret_s32_s8(vget_low_s8(rhs)), 0); -+ return vdotq_lane_s32(acc, lhs, vget_low_s8(rhs), 0); - case 1: -- return vdotq_lane_s32(acc, lhs, vreinterpret_s32_s8(vget_low_s8(rhs)), 1); -+ return vdotq_lane_s32(acc, lhs, vget_low_s8(rhs), 1); - case 2: -- return vdotq_lane_s32(acc, lhs, vreinterpret_s32_s8(vget_high_s8(rhs)), -- 0); -+ return vdotq_lane_s32(acc, lhs, vget_high_s8(rhs), 0); - case 3: - default: -- return vdotq_lane_s32(acc, lhs, vreinterpret_s32_s8(vget_high_s8(rhs)), -- 1); -+ return vdotq_lane_s32(acc, lhs, vget_high_s8(rhs), 1); - } - } - -- cgit v1.2.3