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.

16 lines
228 B

#include <iostream>
#include "file1.h"
#include "file2.h"
int file4_launch_kernel(int x);
int file5_launch_kernel(int x);
int main(int argc, char** argv)
{
file4_launch_kernel(42);
file5_launch_kernel(42);
return 0;
}