7105a89a51
git-subtree-dir: projects/hip-tests git-subtree-mainline:cc7a96c46fgit-subtree-split:5ce508401e
12 lines
264 B
C
12 lines
264 B
C
#include "test_header1.h"
|
|
#include "test_header2.h"
|
|
|
|
extern "C"
|
|
__global__
|
|
void saxpy(real a, realptr x, realptr y, realptr out, size_t n) {
|
|
size_t tid = blockIdx.x * blockDim.x + threadIdx.x;
|
|
if (tid < n) {
|
|
out[tid] = a * x[tid] + y[tid];
|
|
}
|
|
}
|