Extension of D112504. Lower amdgpu printf to `__llvm_omp_vprintf` which takes the same const char*, void* arguments as cuda vprintf and also passes the size of the void* alloca which will be needed by a non-stub implementation of `__llvm_omp_vprintf` for amdgpu. This removes the amdgpu link error on any printf in a target region in favour of silently compiling code that doesn't print anything to stdout. Reviewed By: jdoerfert Differential Revision: https://reviews.llvm.org/D112680
45 lines
801 B
C
45 lines
801 B
C
// RUN: %libomptarget-compile-run-and-check-generic
|
|
|
|
#include <stdio.h>
|
|
|
|
typedef struct {
|
|
double *dataptr;
|
|
int dummy1;
|
|
int dummy2;
|
|
} DV;
|
|
|
|
void init(double vertexx[]) {
|
|
#pragma omp target map(vertexx[0:100])
|
|
{
|
|
printf("In init: %lf, expected 100.0\n", vertexx[77]);
|
|
vertexx[77] = 77.0;
|
|
}
|
|
}
|
|
|
|
void change(DV *dvptr) {
|
|
#pragma omp target map(dvptr->dataptr[0:100])
|
|
{
|
|
printf("In change: %lf, expected 77.0\n", dvptr->dataptr[77]);
|
|
dvptr->dataptr[77] += 1.0;
|
|
}
|
|
}
|
|
|
|
int main() {
|
|
double vertexx[100];
|
|
vertexx[77] = 100.0;
|
|
|
|
DV dv;
|
|
dv.dataptr = &vertexx[0];
|
|
|
|
#pragma omp target enter data map(to:vertexx[0:100])
|
|
|
|
init(vertexx);
|
|
change(&dv);
|
|
|
|
#pragma omp target exit data map(from:vertexx[0:100])
|
|
|
|
// CHECK: Final: 78.0
|
|
printf("Final: %lf\n", vertexx[77]);
|
|
}
|
|
|