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.
41 lines
697 B
41 lines
697 B
3 years ago
|
|
||
|
#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
|
||
|
|
||
|
#ifdef _WIN32
|
||
|
# define IMPORT __declspec(dllimport)
|
||
|
#else
|
||
|
# define IMPORT
|
||
|
#endif
|
||
|
|
||
|
extern "C" {
|
||
|
IMPORT int shared_c_func(int);
|
||
|
int static_c_func(int);
|
||
|
}
|
||
|
|
||
|
IMPORT int shared_cxx_func(int);
|
||
|
IMPORT int shared_hip_func(int);
|
||
|
|
||
|
int static_cxx_func(int);
|
||
|
int static_hip_func(int);
|
||
|
|
||
|
int main(int argc, char** argv)
|
||
|
{
|
||
|
static_c_func(int(42));
|
||
|
static_cxx_func(int(42));
|
||
|
static_hip_func(int(42));
|
||
|
|
||
|
shared_c_func(int(42));
|
||
|
shared_cxx_func(int(42));
|
||
|
shared_hip_func(int(42));
|
||
|
|
||
|
return 0;
|
||
|
}
|