JacobiHPC/src/config.cuh

14 lines
261 B
Plaintext

#include "cuda_runtime.h"
#include "device_launch_parameters.h"
typedef struct configuration {
int n;
float north;
float east;
float south;
float west;
float init_value;
float threshold;
} configuration;
__host__ int load_config(configuration *config);