zig/test/stage2/nvptx.zig

107 lines
3.2 KiB
Zig
Raw Normal View History

2022-02-21 19:05:27 +00:00
const std = @import("std");
const TestContext = @import("../../src/test.zig").TestContext;
pub fn addCases(ctx: *TestContext) !void {
{
var case = addPtx(ctx, "nvptx: simple addition and subtraction");
2022-02-21 19:05:27 +00:00
case.compiles(
\\fn add(a: i32, b: i32) i32 {
\\ return a + b;
\\}
\\
\\pub export fn add_and_substract(a: i32, out: *i32) callconv(.PtxKernel) void {
2022-02-21 19:05:27 +00:00
\\ const x = add(a, 7);
\\ var y = add(2, 0);
\\ y -= x;
\\ out.* = y;
\\}
);
}
{
var case = addPtx(ctx, "nvptx: read special registers");
2022-02-21 19:05:27 +00:00
case.compiles(
2022-10-04 06:31:36 +01:00
\\fn threadIdX() u32 {
\\ return asm ("mov.u32 \t%[r], %tid.x;"
2022-10-06 21:06:20 +01:00
\\ : [r] "=r" (-> u32),
2022-10-04 06:31:36 +01:00
\\ );
2022-02-21 19:05:27 +00:00
\\}
\\
\\pub export fn special_reg(a: []const i32, out: []i32) callconv(.PtxKernel) void {
\\ const i = threadIdX();
2022-02-21 19:05:27 +00:00
\\ out[i] = a[i] + 7;
\\}
);
}
{
var case = addPtx(ctx, "nvptx: address spaces");
2022-02-21 19:05:27 +00:00
case.compiles(
\\var x: i32 addrspace(.global) = 0;
2022-02-21 19:05:27 +00:00
\\
\\pub export fn increment(out: *i32) callconv(.PtxKernel) void {
\\ x += 1;
\\ out.* = x;
\\}
);
}
2022-10-04 06:31:36 +01:00
{
var case = addPtx(ctx, "nvptx: reduce in shared mem");
case.compiles(
\\fn threadIdX() u32 {
\\ return asm ("mov.u32 \t%[r], %tid.x;"
2022-10-06 21:06:20 +01:00
\\ : [r] "=r" (-> u32),
2022-10-04 06:31:36 +01:00
\\ );
\\}
\\
\\ var _sdata: [1024]f32 addrspace(.shared) = undefined;
2022-10-06 21:06:20 +01:00
\\ pub export fn reduceSum(d_x: []const f32, out: *f32) callconv(.PtxKernel) void {
2022-10-04 06:31:36 +01:00
\\ var sdata = @addrSpaceCast(.generic, &_sdata);
\\ const tid: u32 = threadIdX();
\\ var sum = d_x[tid];
\\ sdata[tid] = sum;
\\ asm volatile ("bar.sync \t0;");
\\ var s: u32 = 512;
\\ while (s > 0) : (s = s >> 1) {
\\ if (tid < s) {
\\ sum += sdata[tid + s];
\\ sdata[tid] = sum;
\\ }
\\ asm volatile ("bar.sync \t0;");
\\ }
\\
\\ if (tid == 0) {
\\ out.* = sum;
\\ }
\\ }
);
}
2022-02-21 19:05:27 +00:00
}
const nvptx_target = std.zig.CrossTarget{
.cpu_arch = .nvptx64,
.os_tag = .cuda,
};
pub fn addPtx(
ctx: *TestContext,
name: []const u8,
) *TestContext.Case {
ctx.cases.append(TestContext.Case{
.name = name,
.target = nvptx_target,
.updates = std.ArrayList(TestContext.Update).init(ctx.cases.allocator),
.output_mode = .Obj,
.files = std.ArrayList(TestContext.File).init(ctx.cases.allocator),
.link_libc = false,
.backend = .llvm,
2022-10-06 21:06:20 +01:00
// Bug in Debug mode
.optimize_mode = .ReleaseSafe,
}) catch @panic("out of memory");
return &ctx.cases.items[ctx.cases.items.len - 1];
}