Disable imagenet tests failing since the switch to linalg-on-tensors

We don't run these in our regular builds and missed the failures :-(

Disabling for now so we don't have other regressions while we handle these.

PiperOrigin-RevId: 370796018
diff --git a/integrations/tensorflow/e2e/keras/applications/BUILD b/integrations/tensorflow/e2e/keras/applications/BUILD
index 345e061..73266a6 100644
--- a/integrations/tensorflow/e2e/keras/applications/BUILD
+++ b/integrations/tensorflow/e2e/keras/applications/BUILD
@@ -234,6 +234,22 @@
 iree_e2e_cartesian_product_test_suite(
     name = "imagenet_non_hermetic_tests",
     size = "enormous",
+    failing_configurations = [
+        # TODO(b/186579218): Fix linalg-on-tensors failures in these.
+        {
+            "target_backends": [
+                "iree_llvmaot",
+                "iree_vulkan",
+            ],
+            "model": [
+                "InceptionResNetV2",
+                "InceptionV3",
+                "NASNetLarge",
+                "NASNetMobile",
+                "ResNet152V2",
+            ],
+        },
+    ],
     matrix = {
         "src": "applications_test.py",
         "reference_backend": "tf",
diff --git a/integrations/tensorflow/e2e/keras/applications/CMakeLists.txt b/integrations/tensorflow/e2e/keras/applications/CMakeLists.txt
index 67d8166..a2b9cf5 100644
--- a/integrations/tensorflow/e2e/keras/applications/CMakeLists.txt
+++ b/integrations/tensorflow/e2e/keras/applications/CMakeLists.txt
@@ -99,6 +99,17 @@
     "True"
     "DenseNet121;DenseNet169;DenseNet201;EfficientNetB0;EfficientNetB1;EfficientNetB2;EfficientNetB3;EfficientNetB4;EfficientNetB5;EfficientNetB6;EfficientNetB7;InceptionResNetV2;InceptionV3;MobileNet;MobileNetV2;MobileNetV3Large;MobileNetV3Small;NASNetLarge;NASNetMobile;ResNet101;ResNet101V2;ResNet152;ResNet152V2;ResNet50;ResNet50V2;VGG16;VGG19;Xception"
     "tf;tflite;iree_vmla;iree_llvmaot;iree_vulkan"
+  FAILING_CONFIGURATIONS
+    ",,,,InceptionResNetV2,iree_llvmaot"
+    ",,,,InceptionV3,iree_llvmaot"
+    ",,,,NASNetLarge,iree_llvmaot"
+    ",,,,NASNetMobile,iree_llvmaot"
+    ",,,,ResNet152V2,iree_llvmaot"
+    ",,,,InceptionResNetV2,iree_vulkan"
+    ",,,,InceptionV3,iree_vulkan"
+    ",,,,NASNetLarge,iree_vulkan"
+    ",,,,NASNetMobile,iree_vulkan"
+    ",,,,ResNet152V2,iree_vulkan"
   LABELS
     "external"
     "guitar"