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.
 
 
 
 
 

14 lines
275 B

#include <cl_io.h>
extern int test_nt_jacobi (int iterations);
#define RUN(tester,iterations) \
fprint(cl_stdout,"Testing "#tester"...\n"); \
error |= tester (iterations);
int test_nt (int iterations)
{
int error = 0;
RUN(test_nt_jacobi,iterations);
return error;
}