You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
318 B
20 lines
318 B
|
|
#include <iostream>
|
|
|
|
#ifdef __HIP_PLATFORM_HCC__
|
|
# error "__HIP_PLATFORM_HCC__ propagated to C++ compilation!"
|
|
#endif
|
|
|
|
#ifdef __HIP_ROCclr__
|
|
# error "__HIP_ROCclr__ propagated to C++ compilation!"
|
|
#endif
|
|
|
|
int interface_hip_func(int);
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
interface_hip_func(int(42));
|
|
|
|
return 0;
|
|
}
|