diff options
| author | Mahmoud Khairy A. Abdallah <[email protected]> | 2017-11-18 23:43:56 -0500 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2017-11-18 23:43:56 -0500 |
| commit | 77abdbf7a3c69631bceb5c96f4d3628447487612 (patch) | |
| tree | 3c8de6a8d14739da6bc035c33a8c47292fe135c9 /src/gpgpu-sim/gpu-sim.h | |
| parent | dccac457bb2263602a6a244297168cae8fda8e47 (diff) | |
| parent | f125fecc85fdbb29ed846a2acfdb5e8c6cf20e41 (diff) | |
Merge pull request #1 from tgrogers/copy-kernel
Copy kernel
Diffstat (limited to 'src/gpgpu-sim/gpu-sim.h')
| -rw-r--r-- | src/gpgpu-sim/gpu-sim.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gpgpu-sim/gpu-sim.h b/src/gpgpu-sim/gpu-sim.h index c04648c..1778008 100644 --- a/src/gpgpu-sim/gpu-sim.h +++ b/src/gpgpu-sim/gpu-sim.h @@ -290,6 +290,7 @@ struct memory_config { unsigned gpgpu_frfcfs_dram_write_queue_size; unsigned write_high_watermark; unsigned write_low_watermark; + bool m_perf_sim_memcpy; }; // global counters and flags (please try not to add to this list!!!) @@ -425,6 +426,8 @@ public: void gpu_print_stat(); void dump_pipeline( int mask, int s, int m ) const; + void perf_memcpy_to_gpu( size_t dst_start_addr, size_t count ); + //The next three functions added to be used by the functional simulation function //! Get shader core configuration |
