12 lines
228 B
C++
12 lines
228 B
C++
#ifndef SIMULATION_H_
|
|
#define SIMULATION_H_
|
|
|
|
#include <CL/opencl.hpp>
|
|
// duckdb
|
|
#include "duckdb/duckdb.hpp"
|
|
|
|
|
|
void run_simulation(duckdb_connection dbcon, cl::Device cl_device, cl::Context cl_context);
|
|
|
|
#endif // SIMULATION_H_
|