We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
vector reduce operation
1 parent d4d6b23 commit ecbc701Copy full SHA for ecbc701
test/behavior/vector.zig
@@ -773,6 +773,7 @@ test "vector reduce operation" {
773
if (builtin.zig_backend == .stage2_spirv64) return error.SkipZigTest;
774
if (builtin.zig_backend == .stage2_c and comptime builtin.cpu.arch.isArmOrThumb()) return error.SkipZigTest;
775
if (builtin.zig_backend == .stage2_riscv64) return error.SkipZigTest;
776
+ if (builtin.cpu.arch.isMIPS64()) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/21091
777
778
const S = struct {
779
fn testReduce(comptime op: std.builtin.ReduceOp, x: anytype, expected: anytype) !void {
0 commit comments