Skip to content

Commit

Permalink
Adjust to cuda CI output
Browse files Browse the repository at this point in the history
  • Loading branch information
kchristin22 committed Oct 8, 2024
1 parent eacd11e commit d771be8
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions test/CUDA/GradientKernels.cu
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,6 @@ __device__ double device_fn(double in, double val) {
return in + val;
}

// CHECK: __attribute__((device)) void device_fn_pullback(double in, double val, double _d_y, double *_d_in, double *_d_val);

__global__ void device_pullback(double *in, double *out, double val) {
int index = threadIdx.x;
out[index] = device_fn(in[index], val);
Expand All @@ -320,8 +318,6 @@ __global__ void kernel_call(double *a, double *b) {
a[index] = *b;
}

// CHECK: __attribute__((global)) void kernel_call_pullback(double *a, double *b, double *_d_a, double *_d_b);

void fn(double *out, double *in) {
kernel_call<<<1, 10>>>(out, in);
}
Expand Down

0 comments on commit d771be8

Please sign in to comment.