Let's find out if lighting/thunder support dot-product instructions...

PiperOrigin-RevId: 313514670
diff --git a/ruy/path.h b/ruy/path.h
index 5c4247a..2a715d7 100644
--- a/ruy/path.h
+++ b/ruy/path.h
@@ -147,13 +147,7 @@
 // for most users.
 
 #if RUY_PLATFORM_NEON_64
-#ifdef __linux__
-// We're on a platform where we know how to detect the optional NEON dotprod
-// feature.
 constexpr Path kDefaultArchPaths = Path::kNeon | Path::kNeonDotprod;
-#else
-constexpr Path kDefaultArchPaths = Path::kNeon;
-#endif
 constexpr Path kExtraArchPaths = Path::kNone;
 #elif RUY_PLATFORM_NEON_32
 constexpr Path kDefaultArchPaths = Path::kNeon;