Minimally support WebAssembly Relaxed SIMD builds

Relaxed SIMD currently use the same code paths and microkernels as WAsm SIMD128

PiperOrigin-RevId: 417704438
diff --git a/test/f32-vdiv.cc b/test/f32-vdiv.cc
index 8b5c925..97b7358 100644
--- a/test/f32-vdiv.cc
+++ b/test/f32-vdiv.cc
@@ -18,7 +18,7 @@
 #include "vbinary-microkernel-tester.h"
 
 
-#if XNN_ARCH_WASMSIMD
+#if XNN_ARCH_WASMSIMD || XNN_ARCH_WASMRELAXEDSIMD
   TEST(F32_VDIV__WASMSIMD_X4, batch_eq_4) {
     VBinaryMicrokernelTester()
       .batch_size(4)
@@ -76,10 +76,10 @@
         .Test(xnn_f32_vdiv_ukernel__wasmsimd_x4, VBinaryMicrokernelTester::OpType::Div);
     }
   }
-#endif  // XNN_ARCH_WASMSIMD
+#endif  // XNN_ARCH_WASMSIMD || XNN_ARCH_WASMRELAXEDSIMD
 
 
-#if XNN_ARCH_WASMSIMD
+#if XNN_ARCH_WASMSIMD || XNN_ARCH_WASMRELAXEDSIMD
   TEST(F32_VDIV__WASMSIMD_X8, batch_eq_8) {
     VBinaryMicrokernelTester()
       .batch_size(8)
@@ -137,10 +137,10 @@
         .Test(xnn_f32_vdiv_ukernel__wasmsimd_x8, VBinaryMicrokernelTester::OpType::Div);
     }
   }
-#endif  // XNN_ARCH_WASMSIMD
+#endif  // XNN_ARCH_WASMSIMD || XNN_ARCH_WASMRELAXEDSIMD
 
 
-#if XNN_ARCH_WASMSIMD
+#if XNN_ARCH_WASMSIMD || XNN_ARCH_WASMRELAXEDSIMD
   TEST(F32_VDIV__WASMSIMD_X16, batch_eq_16) {
     VBinaryMicrokernelTester()
       .batch_size(16)
@@ -198,7 +198,7 @@
         .Test(xnn_f32_vdiv_ukernel__wasmsimd_x16, VBinaryMicrokernelTester::OpType::Div);
     }
   }
-#endif  // XNN_ARCH_WASMSIMD
+#endif  // XNN_ARCH_WASMSIMD || XNN_ARCH_WASMRELAXEDSIMD
 
 
 TEST(F32_VDIV__SCALAR_X1, batch_eq_1) {