2018-01-15 21:05:05 +03:00
|
|
|
// RUN: %run_test hipify "%s" "%t" %cuda_args
|
|
|
|
|
|
|
|
|
|
// CHECK: #include <hip/hip_runtime.h>
|
|
|
|
|
// CHECK-NEXT: #include <stdio.h>
|
|
|
|
|
// CHECK-NEXT: #include <iostream>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <iostream>
|
2018-01-16 19:21:14 +03:00
|
|
|
// CHECK-NOT: #include <hip/hip_runtime.h>
|
2018-01-15 21:05:05 +03:00
|
|
|
int main(int argc, char* argv[]) {
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|