summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2018-10-05Merge pull request #66 from pigrew/cleanup-clang-warningsTim Rogers
Cleanup clang warnings
2018-05-04Getting the simulator to compile with older versions of g++tgrogers
2018-04-22Clang disallows empty bracks to show array indices. I believe that inserting ↵Nathan Conrad
a zero is the intent.
2018-04-22Some classes were referred to as a class and a struct (reported as clang ↵Nathan Conrad
warnings). This makes these consistent.
2018-04-22Add cmath include to cuda-math.h, to allow std::isnan to be usedNathan Conrad
2018-04-11Merge remote-tracking branch 'upstream/dev' into devtgrogers
2018-04-05Nice to know when the simulaton thread actually gets the exit call under ↵tgrogers
normal operation. This helps immensely in a clustered environmrnt where jobs randomly fail
2018-04-05fixing gpu-tot-cycle bugMahmoud
2018-04-05adding new stats counterMahmoud
2018-04-05adding new counters for parition level para and L2 BWMahmoud
2018-04-05GPGPU-Sim should always print when the sim thread exits - if this doesn't ↵tgrogers
happen, something bad has happened
2018-04-02Adding in Mahmoud's changes to the print cache statstgrogers
2018-03-31Getting rid of our constant, annoying prints. Running workloads of any size ↵tgrogers
causes ridiculous output file sizes
2018-03-30When CDP was added - we started printing garbage stats after every memcpy. I ↵tgrogers
am stopping this by gaurding against it in the same way we do for updating the stat counts (checking if we have executed any cycles before printing). I am not sure what this does to CDP stat prints - as I am not sure what CDP kernels so to sim_cycles.... However EVERY other app except CDP is spewing junk to the output and it really messes up any per-kernel stat collection scripts.
2018-03-28Fixing a minor typo in an old configtgrogers
2018-03-28fix compile errors on Ubuntu LTS 16.04Tor Aamodt
2018-03-26Merge pull request #63 from pigrew/dev-printfFixgpgpu-sim
Don't directly pass strings to printf (beacuse they wouldn't be escap…
2018-03-26Merge pull request #62 from pigrew/dev-multiArchBreakpointgpgpu-sim
Provide portable (non-x86) breakpoint method which should work on all…
2018-03-26Don't directly pass strings to printf (beacuse they wouldn't be escapped). ↵Nathan Conrad
Clang gives warnings about this.
2018-03-26Provide portable (non-x86) breakpoint method which should work on all ↵Nathan Conrad
linuxes. Tested on PowerPC.
2018-03-26Remove duplicate token in PTX parserNathan Conrad
2018-03-26.call instruction may have an empty argument listNathan Conrad
2018-03-22Fixing the break limit bugMahmoud
2017-07-30Updaing the interconnect simulator to properly check for dependenciestgrogers
2017-07-20Fixing BankGroup Indexing BugMahmoud
2017-07-06Adding the correct dependency for the detailed_version file. In order to ↵tgrogers
updatet the built number output when we run gpgpu-sim we need to recompile cuda-sim everytime the detailed_version has changed
2017-05-17Changing the version detection to be much more detailed. Now the git commit ↵tgrogers
# and branch will be embedded in the built executable and print out when gpgpu-sim runs
2017-05-09Fix next block addr to link predicate ret block to consecutive blockMengchi Zhang
The block containing predicate ret instruction should add the consecutive block to its successor_ids set. next_addr should be assigned with current instruction address add instruction size instead of 1. Signed-off-by: Mengchi Zhang <[email protected]>
2016-09-06Merge pull request #30 from sspenst/devgpgpu-sim
shfl instruction implemented
2016-09-05Merge pull request #28 from jwang323/cdp_cleangpgpu-sim
Initial support of CUDA Dynamic Parallelism on GPGPUSim
2016-09-05MOD: modify Makefile to make CUDART_VERSION available to gpu-sim.ccJin Wang
2016-09-02BUG: concurrent kernel on the same SMX does not work with non-legacy local ↵Jin Wang
memory mapping, turn off by default
2016-09-02MOD: Add macros to turn off cuda_device_runtime for CUDA < 5.0Jin Wang
2016-08-25OCDsspenst
2016-08-25Fixed minor shfl bugssspenst
2016-08-24Cleanupsspenst
2016-08-24Added shfl instructionsspenst
2016-07-06ADD: add knob to enable CDP in gpgpusim configJin Wang
2016-07-06MOD: modify to new structure name gpgpu_ptx_sim_infoJin Wang
2016-07-06BUG: extra bracketJin Wang
2016-07-06BUG: wrong declaration for m_args_aligned_sizeJin Wang
2016-07-06ADD: add kernel launching latency from stream to distributorJin Wang
2016-07-06ADD: print kernel parameter size footprint. BUG: concurrent kernels on same ↵Jin Wang
shader, should use hw_cta_id to store shared mem info
2016-07-06ADD: add stats for kernel launching and complete cycleJin Wang
2016-07-06BUG: concurrent kernels on same SM may occupy warps from running CTAsJin Wang
2016-07-06ADD: add separate cdp latencyJin Wang
2016-07-06ADD: add cdp latencyJin Wang
2016-07-06BUG: for concurrent kernels on same shader, should select kernel from the ↵Jin Wang
distributor directly
2016-07-06ADD: support concurrent kernels on one shaderJin Wang
2016-07-05ADD: launch all device kernels at once in functional simulatorJin Wang