diff options
| author | Mengchi Zhang <[email protected]> | 2019-05-30 13:48:48 -0400 |
|---|---|---|
| committer | Mengchi Zhang <[email protected]> | 2019-05-30 13:48:48 -0400 |
| commit | 35d07804f9efc39933f23e808b60afcea7c7053a (patch) | |
| tree | d1702877d44eb05c79535497e1579889623992f3 /src/gpgpusim_entrypoint.h | |
| parent | 603e53ee948fecd623837b52c4e94ca2dbf0012b (diff) | |
| parent | 1eee682a940c572ddf37d0b194c97d917017c03f (diff) | |
Merge branch 'dev' of https://github.com/purdue-aalp/gpgpu-sim_distribution into dev
Diffstat (limited to 'src/gpgpusim_entrypoint.h')
| -rw-r--r-- | src/gpgpusim_entrypoint.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/gpgpusim_entrypoint.h b/src/gpgpusim_entrypoint.h index bf03f03..eacb2d7 100644 --- a/src/gpgpusim_entrypoint.h +++ b/src/gpgpusim_entrypoint.h @@ -29,11 +29,20 @@ #define GPGPUSIM_ENTRYPOINT_H_INCLUDED #include "abstract_hardware_model.h" - +#include <pthread.h> +#include <semaphore.h> #include <time.h> + extern time_t g_simulation_starttime; +struct GPU_ctx { + + struct gpgpu_ptx_sim_arg *grid_params; + + + +}; class gpgpu_sim *gpgpu_ptx_sim_init_perf(); void start_sim_thread(int api); |
