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.
21 lines
369 B
21 lines
369 B
8 years ago
|
|
||
|
#include <iostream>
|
||
|
|
||
|
int static_func(int);
|
||
|
int file1_sq_func(int);
|
||
|
|
||
|
void test_functions()
|
||
|
{
|
||
|
file1_sq_func(static_func(42));
|
||
|
}
|
||
|
|
||
|
int main(int argc, char** argv)
|
||
|
{
|
||
|
test_functions();
|
||
|
std::cout
|
||
|
<< "this executable doesn't use cuda code, just call methods defined"
|
||
|
<< std::endl;
|
||
|
std::cout << "in object files that have cuda code" << std::endl;
|
||
|
return 0;
|
||
|
}
|