├── CHANGES ├── COPYRIGHT ├── Makefile ├── README.md ├── README_GPGPUSim ├── Ramulator_configs ├── DDR3-2133L-config.cfg ├── DDR4-2400R-config.cfg ├── GDDR5-7000-config.cfg ├── HBM-1000-config.cfg ├── LPDDR3-2133-config.cfg ├── LPDDR4-3200-config.cfg ├── WideIO-266-config.cfg └── WideIO2-1067-config.cfg ├── aerialvision ├── README ├── configs.py ├── guiclasses.py ├── lexyacc.py ├── lexyaccbookmark.py ├── lexyacctexteditor.py ├── organizedata.py ├── startup.py └── variableclasses.py ├── bin └── aerialvision.py ├── configs ├── GTX480 │ ├── config_fermi_islip.icnt │ ├── gpgpusim.config │ └── gpuwattch_gtx480.xml ├── QuadroFX5600 │ ├── gpgpusim.config │ ├── gpuwattch_quadrofx5600.xml │ └── icnt_config_islip.icnt ├── QuadroFX5800 │ ├── config_quadro_islip.icnt │ └── gpgpusim.config └── TeslaC2050 │ ├── config_fermi_islip.icnt │ └── gpgpusim.config ├── cuobjdump_to_ptxplus ├── Makefile ├── cuobjdumpInst.cc ├── cuobjdumpInst.h ├── cuobjdumpInstList.cc ├── cuobjdumpInstList.h ├── cuobjdump_to_ptxplus.cc ├── elf.l ├── elf.y ├── header.l ├── header.y ├── ptx.tab.c ├── ptx_parser.h ├── sass.l └── sass.y ├── doc └── doxygen │ ├── Makefile │ ├── doxygen.css │ └── gpgpu-sim.doxygen ├── libcuda ├── Makefile ├── cuda_runtime_api.cc ├── cuobjdump.l ├── cuobjdump.y ├── cuobjdump_lexer.c ├── cuobjdump_parser.c ├── cuobjdump_parser.h └── cuobjdump_parser.output ├── libopencl ├── Makefile ├── nvopencl_wrapper.cc └── opencl_runtime_api.cc ├── scripts └── gen_ptxinfo ├── setup_environment ├── src ├── Makefile ├── abstract_hardware_model.cc ├── abstract_hardware_model.h ├── cuda-sim │ ├── Makefile │ ├── cuda-math.h │ ├── cuda-sim.cc │ ├── cuda-sim.h │ ├── cuda_device_printf.cc │ ├── cuda_device_printf.h │ ├── decuda_pred_table │ │ ├── decuda_pred_table.cc │ │ └── decuda_pred_table.h │ ├── instructions.cc │ ├── memory.cc │ ├── memory.h │ ├── opcodes.def │ ├── opcodes.h │ ├── ptx-stats.cc │ ├── ptx-stats.h │ ├── ptx.l │ ├── ptx.y │ ├── ptx_ir.cc │ ├── ptx_ir.h │ ├── ptx_loader.cc │ ├── ptx_loader.h │ ├── ptx_parser.cc │ ├── ptx_parser.h │ ├── ptx_sim.cc │ ├── ptx_sim.h │ ├── ptxinfo.l │ └── ptxinfo.y ├── debug.cc ├── debug.h ├── gpgpu-sim │ ├── Makefile │ ├── addrdec.cc │ ├── addrdec.h │ ├── delayqueue.h │ ├── dram.cc │ ├── dram.h │ ├── dram_sched.cc │ ├── dram_sched.h │ ├── gpu-cache.cc │ ├── gpu-cache.h │ ├── gpu-misc.cc │ ├── gpu-misc.h │ ├── gpu-sim.cc │ ├── gpu-sim.h │ ├── histogram.cc │ ├── histogram.h │ ├── icnt_wrapper.cc │ ├── icnt_wrapper.h │ ├── l2cache.cc │ ├── l2cache.h │ ├── l2cache_trace.h │ ├── mem_fetch.cc │ ├── mem_fetch.h │ ├── mem_fetch_status.tup │ ├── mem_latency_stat.cc │ ├── mem_latency_stat.h │ ├── power_interface.cc │ ├── power_interface.h │ ├── power_stat.cc │ ├── power_stat.h │ ├── scoreboard.cc │ ├── scoreboard.h │ ├── shader.cc │ ├── shader.h │ ├── shader_trace.h │ ├── stack.cc │ ├── stack.h │ ├── stat-tool.cc │ ├── stat-tool.h │ ├── stats.h │ ├── temp.txt │ ├── traffic_breakdown.cc │ ├── traffic_breakdown.h │ ├── visualizer.cc │ └── visualizer.h ├── gpgpusim_entrypoint.cc ├── gpgpusim_entrypoint.h ├── gpuwattch │ ├── Alpha21364.xml │ ├── Niagara1.xml │ ├── Niagara1_sharing.xml │ ├── Niagara1_sharing_DC.xml │ ├── Niagara1_sharing_SBT.xml │ ├── Niagara1_sharing_ST.xml │ ├── Niagara2.xml │ ├── Penryn.xml │ ├── README │ ├── XML_Parse.cc │ ├── XML_Parse.h │ ├── Xeon.xml │ ├── arch_const.h │ ├── array.cc │ ├── array.h │ ├── basic_components.cc │ ├── basic_components.h │ ├── cacti │ │ ├── README │ │ ├── Ucache.cc │ │ ├── Ucache.h │ │ ├── arbiter.cc │ │ ├── arbiter.h │ │ ├── area.cc │ │ ├── area.h │ │ ├── bank.cc │ │ ├── bank.h │ │ ├── basic_circuit.cc │ │ ├── basic_circuit.h │ │ ├── batch_tests │ │ ├── cache.cfg │ │ ├── cacti.i │ │ ├── cacti.mk │ │ ├── cacti_interface.cc │ │ ├── cacti_interface.h │ │ ├── component.cc │ │ ├── component.h │ │ ├── const.h │ │ ├── contention.dat │ │ ├── crossbar.cc │ │ ├── crossbar.h │ │ ├── decoder.cc │ │ ├── decoder.h │ │ ├── highradix.cc │ │ ├── highradix.h │ │ ├── htree2.cc │ │ ├── htree2.h │ │ ├── io.cc │ │ ├── io.h │ │ ├── main.cc │ │ ├── makefile │ │ ├── mat.cc │ │ ├── mat.h │ │ ├── nuca.cc │ │ ├── nuca.h │ │ ├── out_batch_test_result.csv │ │ ├── parameter.cc │ │ ├── parameter.h │ │ ├── router.cc │ │ ├── router.h │ │ ├── subarray.cc │ │ ├── subarray.h │ │ ├── technology.cc │ │ ├── uca.cc │ │ ├── uca.h │ │ ├── wire.cc │ │ └── wire.h │ ├── core.cc │ ├── core.h │ ├── fermi.xml │ ├── globalvar.h │ ├── gpgpu.xml │ ├── gpgpu_sim.verify │ ├── gpgpu_sim_wrapper.cc │ ├── gpgpu_sim_wrapper.h │ ├── gpgpu_static.xml │ ├── interconnect.cc │ ├── interconnect.h │ ├── iocontrollers.cc │ ├── iocontrollers.h │ ├── logic.cc │ ├── logic.h │ ├── main.cc │ ├── makefile │ ├── mcpat.mk │ ├── mcpatXeonCore.mk │ ├── memoryctrl.cc │ ├── memoryctrl.h │ ├── noc.cc │ ├── noc.h │ ├── processor.cc │ ├── processor.h │ ├── quadro.xml │ ├── results │ │ ├── Alpha21364 │ │ ├── Alpha21364_90nm │ │ ├── Penryn │ │ ├── T1 │ │ ├── T1_DC_64 │ │ ├── T1_SBT_64 │ │ ├── T1_ST_64 │ │ ├── T2 │ │ ├── Xeon_core │ │ └── Xeon_uncore │ ├── sharedcache.cc │ ├── sharedcache.h │ ├── technology_xeon_core.cc │ ├── version.h │ ├── xmlParser.cc │ └── xmlParser.h ├── intersim2 │ ├── .svn │ │ ├── entries │ │ ├── format │ │ ├── pristine │ │ │ ├── 10 │ │ │ │ └── 1008fe454a2dfea0e03f6ab28358479e94cdb719.svn-base │ │ │ ├── 12 │ │ │ │ ├── 125686d82b0fb03524a1bd1dc36fd9172006e780.svn-base │ │ │ │ ├── 1260dd25f0b77d1694bc40d60681090fdb77e795.svn-base │ │ │ │ └── 129d383ada436691b3879ee38f72c6420d1b3b86.svn-base │ │ │ ├── 13 │ │ │ │ ├── 135d8312fc0bb109518f6bfc62cbbf814c7d587c.svn-base │ │ │ │ └── 13e96ce60fa5bdc9726f48b5186ae562fcd4bbeb.svn-base │ │ │ ├── 14 │ │ │ │ ├── 14292d017cd222997f376c20ca99e10a17cb7e0c.svn-base │ │ │ │ └── 14cfb5d4ea815b6697d047697a25ef8cfb9e17de.svn-base │ │ │ ├── 15 │ │ │ │ └── 1567f00df3a29e4f360b35e014b1f69cf281f55a.svn-base │ │ │ ├── 23 │ │ │ │ └── 235d7e656a8ce9818d81cd7eb47ca78febbe438a.svn-base │ │ │ ├── 24 │ │ │ │ └── 244c1dc93f9a90c660c06c653d3809b739d40458.svn-base │ │ │ ├── 33 │ │ │ │ └── 337f567cc4b77aad754f713a5fd363118f925249.svn-base │ │ │ ├── 38 │ │ │ │ └── 38bf48ff0300a37f3005867f74e32b80297f8b09.svn-base │ │ │ ├── 39 │ │ │ │ └── 398668283dbbef318596ac5cdfdb72a53973f2d1.svn-base │ │ │ ├── 42 │ │ │ │ └── 42777bd5ccda83625dfbf29e7aec13f2e773373a.svn-base │ │ │ ├── 47 │ │ │ │ └── 471f8248dcd907fcddacc3b42c965e4919cb2f35.svn-base │ │ │ ├── 52 │ │ │ │ └── 52025d7789c8bb45a38bad2e58ac67cc26f3b4ed.svn-base │ │ │ ├── 55 │ │ │ │ ├── 5559780a67de13b98fb00d7f052ce254551f229b.svn-base │ │ │ │ └── 55ee19fa1932804a55ee815f4456c4a6f21a355f.svn-base │ │ │ ├── 56 │ │ │ │ └── 569d5254648903d6589a32c30a98b3276cdbdebd.svn-base │ │ │ ├── 58 │ │ │ │ └── 589a6050104bd5e828d72f3efdc31796eae32683.svn-base │ │ │ ├── 59 │ │ │ │ └── 59bcc26ad66045a58e3f0590f2b12ad7eba5991f.svn-base │ │ │ ├── 65 │ │ │ │ └── 650f86454fd17051ddb2eca80fd985027770a1ba.svn-base │ │ │ ├── 66 │ │ │ │ └── 6699bbb1b4cb750a8857780e76ee4923ef317c90.svn-base │ │ │ ├── 69 │ │ │ │ └── 691260433188a985b38ff49ca3f51e6c0b731c0a.svn-base │ │ │ ├── 70 │ │ │ │ └── 7052ff59571d88c99070cd8d659460b1534cf1b3.svn-base │ │ │ ├── 72 │ │ │ │ └── 72bdb07d5ae6b1010a5ae388c45b5fbe2d549f92.svn-base │ │ │ ├── 75 │ │ │ │ └── 75fab6aaa53ec97ae2f9769ab873fea5abf9516b.svn-base │ │ │ ├── 76 │ │ │ │ └── 7692129db779b4e8cd14cf7ab6fac567093153b2.svn-base │ │ │ ├── 77 │ │ │ │ └── 77d1aaef881a98fa412061c4daa8137d12ee6f3f.svn-base │ │ │ ├── 78 │ │ │ │ ├── 78c651a126efa354bfbf06841fb91bf72d970003.svn-base │ │ │ │ └── 78db9a8009e2eeebfa8c1d67e38108237e7cf1b3.svn-base │ │ │ ├── 82 │ │ │ │ └── 829eb51edd8ef3cc3c06778a3e3a379f352728e1.svn-base │ │ │ ├── 90 │ │ │ │ ├── 90e277f393024f15eeb6e024bd34ac972b818aaf.svn-base │ │ │ │ └── 90f780ee11bbe517547a3648019db3592a5e7675.svn-base │ │ │ ├── 94 │ │ │ │ └── 941911d54bdc048828d97698138c156dd9becc6c.svn-base │ │ │ ├── 95 │ │ │ │ └── 9532d33b08220b7f51a001451336e589a0a92e97.svn-base │ │ │ ├── 96 │ │ │ │ └── 968162a2f3ef193e7baffadd696d73fccaf5d69c.svn-base │ │ │ ├── 97 │ │ │ │ └── 9709aa53e9b91e3103a5c627cfd4c83d5857c451.svn-base │ │ │ ├── 04 │ │ │ │ └── 043985cd8560fd203de2c2d82735f1e5ecf3783d.svn-base │ │ │ ├── 05 │ │ │ │ └── 05a079244c124bc5d781812aac07878c6956ef46.svn-base │ │ │ ├── 0a │ │ │ │ └── 0a776321c5f55776af796ce2c5543f562d751c17.svn-base │ │ │ ├── 0b │ │ │ │ └── 0b0c41499a28f0b7c2fccd583db339989d665677.svn-base │ │ │ ├── 0e │ │ │ │ └── 0eae5ca5351f1f31915bc0c3da4a3a1ae19e21c4.svn-base │ │ │ ├── 0f │ │ │ │ └── 0fa9e6ee8d633c141585cd663a6307195b79db63.svn-base │ │ │ ├── 1a │ │ │ │ ├── 1abf005acda7eb93dad10f55694f27a84ba74f91.svn-base │ │ │ │ └── 1afc46cd26811b568cd238a5bb6cf4a3e9687edf.svn-base │ │ │ ├── 1e │ │ │ │ └── 1e4194e8f6ff3aacdde8d0caf868ab69490d6a6c.svn-base │ │ │ ├── 1f │ │ │ │ ├── 1f35cbdd9ebe1ee0a41e949e03d51d268ac55bad.svn-base │ │ │ │ └── 1f6b483285599def0e7fea5379c0af7a176d2736.svn-base │ │ │ ├── 2a │ │ │ │ └── 2a04a186dfedaa33f2a0336556c086868dd6ccfc.svn-base │ │ │ ├── 2c │ │ │ │ └── 2ca444c5a28eb3f8aaffcf0702edd18d4fe31fad.svn-base │ │ │ ├── 2e │ │ │ │ └── 2e9094d44209e8c6464b2834012a6dc9dd860340.svn-base │ │ │ ├── 2f │ │ │ │ └── 2ff946ea4e0a43b74a424e711f7489085c496e3a.svn-base │ │ │ ├── 3a │ │ │ │ └── 3a771e1b366aae7e427d29b3f55d7f51045173d5.svn-base │ │ │ ├── 3b │ │ │ │ ├── 3bdd451bbcde75941cf7ad8caf63c4465c856102.svn-base │ │ │ │ └── 3bebc9fde5e475aaa53b6d4abda241d37117421b.svn-base │ │ │ ├── 3c │ │ │ │ ├── 3c57b304902a442e45bf4e4225aac564cd2bdc26.svn-base │ │ │ │ └── 3c8671257ad287c8e877c0942bdc9f16e9f7fe0c.svn-base │ │ │ ├── 3f │ │ │ │ └── 3f4cacd217f3c1d154a11537511bf6b6e96a8e6b.svn-base │ │ │ ├── 4d │ │ │ │ └── 4d8326ecf3cc79ffda12daf20e4a46b4439ada88.svn-base │ │ │ ├── 5c │ │ │ │ └── 5cc61faafce12ea44fa63fb32a14f8f0c74c7338.svn-base │ │ │ ├── 5f │ │ │ │ └── 5f655d8c1cb25991e3f079611f3bad0ba05c6b6d.svn-base │ │ │ ├── 6c │ │ │ │ └── 6c86a0b772d76fae9d90046d17b6ec12b77551d0.svn-base │ │ │ ├── 6d │ │ │ │ └── 6d0272df1c727d8c5fa77a3bfa9155d50335a5c6.svn-base │ │ │ ├── 6e │ │ │ │ └── 6ee04608f65a1c9be65fcbe3def54f38d00f1bf5.svn-base │ │ │ ├── 7a │ │ │ │ └── 7a54a566c36bec4672c4c004940eb007ffb11730.svn-base │ │ │ ├── 7b │ │ │ │ ├── 7b0efd00926de5ec0c6efc86d8ddfbba35da0f82.svn-base │ │ │ │ └── 7b445ae8a3f265094d5af4956c88457b77c18fa5.svn-base │ │ │ ├── 7c │ │ │ │ └── 7c4fde53686972fa2db885e0743742173afd1bb9.svn-base │ │ │ ├── 7f │ │ │ │ └── 7fdf02535ae5ba5ca9a2b15879dbcdd928095585.svn-base │ │ │ ├── 8c │ │ │ │ └── 8c5b24b41796edbfedbb98138da7278e7c22d832.svn-base │ │ │ ├── 8e │ │ │ │ └── 8e7a59b2896a3ee93a308768d554d28b324b26aa.svn-base │ │ │ ├── 8f │ │ │ │ ├── 8fa65cdf95f29e2fd90afe3901d296d085ff768b.svn-base │ │ │ │ ├── 8fca73abe4a7446a1a53687a6baca97dc056eabf.svn-base │ │ │ │ └── 8fd71b46841aae63fcfe44908c2a1827741661fb.svn-base │ │ │ ├── 9a │ │ │ │ ├── 9a6a33f2fd931773aa82485ef360d84c227abb12.svn-base │ │ │ │ ├── 9a75723858a7c299341d4e68fbb1581f9865b898.svn-base │ │ │ │ └── 9aed09bfc8ce0fffa6872c93917412c0577120c2.svn-base │ │ │ ├── 9b │ │ │ │ └── 9b149c35e1f088a947ef877a58c79300dd5b074e.svn-base │ │ │ ├── 9e │ │ │ │ └── 9ee6cbb1a61d3f7c2992c673ad86d0ed1d245ef8.svn-base │ │ │ ├── 9f │ │ │ │ └── 9f3bdc5b32d0fd02e717f7a9c517e280355586fb.svn-base │ │ │ ├── a4 │ │ │ │ └── a4359ad59061eaed8a442687bbf1e8693be96a72.svn-base │ │ │ ├── ad │ │ │ │ └── ad824944d4de71c9e947f9e386f12aa8c6ec4355.svn-base │ │ │ ├── af │ │ │ │ └── afde60b791408b0db1c56c113ccfe45105b846eb.svn-base │ │ │ ├── b0 │ │ │ │ └── b0621120b70fa66b06fa3e7adc9b386974b8c0c3.svn-base │ │ │ ├── b4 │ │ │ │ └── b4f5b1485bfafbb63c019d5aadd0f1c58250fbe4.svn-base │ │ │ ├── b6 │ │ │ │ └── b6c4fdbece4c23327c9e321b130c2ec595705f98.svn-base │ │ │ ├── b7 │ │ │ │ └── b755bb8c053f61f95a6ce87cddff8068f0fa19fa.svn-base │ │ │ ├── b8 │ │ │ │ └── b8715f9652140e4746a42ce2c1ca742a6dcc8ab1.svn-base │ │ │ ├── b9 │ │ │ │ └── b92275ee465ac160db13b1f1e271cf80bc843710.svn-base │ │ │ ├── bf │ │ │ │ └── bf0b085441d2569f393cadb89df82945471cd4d4.svn-base │ │ │ ├── c3 │ │ │ │ ├── c3580bf85e8bc6015a74e1f37916987e00accdaa.svn-base │ │ │ │ └── c3dce16b735e5ff4045d124ee30299d4ff39f5b1.svn-base │ │ │ ├── c5 │ │ │ │ └── c5213fecc8710817b2514c72787b0207849f9280.svn-base │ │ │ ├── cb │ │ │ │ └── cb7c673e590ba7e01169bf437b3753f478aa55ac.svn-base │ │ │ ├── cd │ │ │ │ └── cdcc1ba4154908a4bfefe5993832475af05a62e6.svn-base │ │ │ ├── ce │ │ │ │ └── ce3f71fc2f0c6cac1246ba0e26b6af41edef501d.svn-base │ │ │ ├── d0 │ │ │ │ └── d0f90a9d59a9b0c3aa0cf7a6059e041d762561d1.svn-base │ │ │ ├── d3 │ │ │ │ └── d37925d1e5c51c8adc54f266e526d96fd3468e65.svn-base │ │ │ ├── d6 │ │ │ │ └── d61d8cfbf8e0ae5784d8d94c0bb085d6d1e7b214.svn-base │ │ │ ├── d8 │ │ │ │ └── d829c556dee3dc27d19528e00200847c1b338e0e.svn-base │ │ │ ├── da │ │ │ │ └── dace18d8332403831e17e47c9f2dac7ee20fe786.svn-base │ │ │ ├── de │ │ │ │ └── de391802bf06c5a01ef346b8b98d27244c296855.svn-base │ │ │ ├── e0 │ │ │ │ └── e0e6b10f519b612fdd24fcc64ea62b4d5fdf89fc.svn-base │ │ │ ├── e2 │ │ │ │ └── e216ca41a2789704029b85d462988590d43813f3.svn-base │ │ │ ├── e3 │ │ │ │ └── e3245c11796bcda90ba6909bb34dced14101b2c3.svn-base │ │ │ ├── e6 │ │ │ │ └── e64fcd97a677ff77ec1692273171f513fe794507.svn-base │ │ │ ├── eb │ │ │ │ └── ebec0a8c0098e95bd530e52b0baed6d9a60a33c1.svn-base │ │ │ ├── ec │ │ │ │ └── ec23715e6e01d44320732e4a8fc186d6b209a3bb.svn-base │ │ │ ├── ef │ │ │ │ └── ef53e3bc23eac89edf00c7903de88ebb2f4084b6.svn-base │ │ │ ├── f0 │ │ │ │ └── f0994d52a0bff0a75bf779e8ec53715b011bfd97.svn-base │ │ │ ├── f1 │ │ │ │ └── f18798b1a209786e47ee28ef3d5c7b5e908e0642.svn-base │ │ │ ├── f3 │ │ │ │ └── f3f385cd24e067dc09ab89284d234593352ee0bf.svn-base │ │ │ ├── f4 │ │ │ │ ├── f47cc0dc517c023ddeaf70f92c90e0ecfe343030.svn-base │ │ │ │ └── f48f9ec9cbd794b900c47d4fa1af919f73f844ab.svn-base │ │ │ ├── f7 │ │ │ │ └── f7c0ca6108d1e538b05438c69b603d0d1903688f.svn-base │ │ │ ├── f8 │ │ │ │ └── f88e58811f1c40d35b795e6d317579cc2c3668d0.svn-base │ │ │ ├── f9 │ │ │ │ ├── f9cf31dbae18e4e1930dc0632175d9c420d3c067.svn-base │ │ │ │ └── f9ef776d4727c7e2a1e057f5839da76e854ccae5.svn-base │ │ │ ├── fa │ │ │ │ └── fad571d200d6232ee119a96b2ae1820f3d6903fa.svn-base │ │ │ └── fc │ │ │ │ └── fc7b3404406776df7852a99657a25fb9feadbc84.svn-base │ │ └── wc.db │ ├── Makefile │ ├── allocators │ │ ├── allocator.cpp │ │ ├── allocator.hpp │ │ ├── islip.cpp │ │ ├── islip.hpp │ │ ├── loa.cpp │ │ ├── loa.hpp │ │ ├── maxsize.cpp │ │ ├── maxsize.hpp │ │ ├── pim.cpp │ │ ├── pim.hpp │ │ ├── selalloc.cpp │ │ ├── selalloc.hpp │ │ ├── separable.cpp │ │ ├── separable.hpp │ │ ├── separable_input_first.cpp │ │ ├── separable_input_first.hpp │ │ ├── separable_output_first.cpp │ │ ├── separable_output_first.hpp │ │ ├── wavefront.cpp │ │ └── wavefront.hpp │ ├── arbiters │ │ ├── arbiter.cpp │ │ ├── arbiter.hpp │ │ ├── matrix_arb.cpp │ │ ├── matrix_arb.hpp │ │ ├── prio_arb.cpp │ │ ├── prio_arb.hpp │ │ ├── roundrobin_arb.cpp │ │ ├── roundrobin_arb.hpp │ │ ├── tree_arb.cpp │ │ └── tree_arb.hpp │ ├── batchtrafficmanager.cpp │ ├── batchtrafficmanager.hpp │ ├── booksim.hpp │ ├── booksim_config.cpp │ ├── booksim_config.hpp │ ├── buffer.cpp │ ├── buffer.hpp │ ├── buffer_state.cpp │ ├── buffer_state.hpp │ ├── channel.hpp │ ├── config.l │ ├── config.y │ ├── config_utils.cpp │ ├── config_utils.hpp │ ├── credit.cpp │ ├── credit.hpp │ ├── examples │ │ ├── cmeshconfig │ │ ├── dragonflyconfig │ │ ├── fattree_config │ │ ├── flatflyconfig │ │ ├── mesh88_lat │ │ ├── singleconfig │ │ └── torus88 │ ├── flit.cpp │ ├── flit.hpp │ ├── flitchannel.cpp │ ├── flitchannel.hpp │ ├── globals.hpp │ ├── gputrafficmanager.cpp │ ├── gputrafficmanager.hpp │ ├── injection.cpp │ ├── injection.hpp │ ├── interconnect_interface.cpp │ ├── interconnect_interface.hpp │ ├── intersim_config.cpp │ ├── intersim_config.hpp │ ├── lex.yy.c │ ├── main.cpp │ ├── misc_utils.cpp │ ├── misc_utils.hpp │ ├── module.cpp │ ├── module.hpp │ ├── networks │ │ ├── anynet.cpp │ │ ├── anynet.hpp │ │ ├── cmesh.cpp │ │ ├── cmesh.hpp │ │ ├── dragonfly.cpp │ │ ├── dragonfly.hpp │ │ ├── fattree.cpp │ │ ├── fattree.hpp │ │ ├── flatfly_onchip.cpp │ │ ├── flatfly_onchip.hpp │ │ ├── fly.cpp │ │ ├── fly.hpp │ │ ├── kncube.cpp │ │ ├── kncube.hpp │ │ ├── network.cpp │ │ ├── network.hpp │ │ ├── qtree.cpp │ │ ├── qtree.hpp │ │ ├── tree4.cpp │ │ └── tree4.hpp │ ├── outputset.cpp │ ├── outputset.hpp │ ├── packet_reply_info.cpp │ ├── packet_reply_info.hpp │ ├── pipefifo.hpp │ ├── power │ │ ├── buffer_monitor.cpp │ │ ├── buffer_monitor.hpp │ │ ├── power_module.cpp │ │ ├── power_module.hpp │ │ ├── switch_monitor.cpp │ │ ├── switch_monitor.hpp │ │ └── techfile.txt │ ├── random_utils.hpp │ ├── rng-double.c │ ├── rng.c │ ├── rng_double_wrapper.cpp │ ├── rng_wrapper.cpp │ ├── routefunc.cpp │ ├── routefunc.hpp │ ├── routers │ │ ├── chaos_router.cpp │ │ ├── chaos_router.hpp │ │ ├── event_router.cpp │ │ ├── event_router.hpp │ │ ├── iq_router.cpp │ │ ├── iq_router.hpp │ │ ├── router.cpp │ │ └── router.hpp │ ├── stats.cpp │ ├── stats.hpp │ ├── timed_module.hpp │ ├── traffic.cpp │ ├── traffic.hpp │ ├── trafficmanager.cpp │ ├── trafficmanager.hpp │ ├── vc.cpp │ ├── vc.hpp │ ├── y.tab.c │ └── y.tab.h ├── option_parser.cc ├── option_parser.h ├── ramulator │ ├── ALDRAM.cc │ ├── ALDRAM.h │ ├── Cache.cc │ ├── Cache.h │ ├── Config.cc │ ├── Config.h │ ├── Controller.cc │ ├── Controller.h │ ├── DDR3.cc │ ├── DDR3.h │ ├── DDR4.cc │ ├── DDR4.h │ ├── DRAM.h │ ├── DSARP.cc │ ├── DSARP.h │ ├── GDDR5.cc │ ├── GDDR5.h │ ├── GPUwrapper.cc │ ├── GPUwrapper.h │ ├── HBM.cc │ ├── HBM.h │ ├── HMC.cc │ ├── HMC.h │ ├── HMC_Controller.h │ ├── HMC_Memory.h │ ├── LPDDR3.cc │ ├── LPDDR3.h │ ├── LPDDR4.cc │ ├── LPDDR4.h │ ├── LogicLayer.cc │ ├── LogicLayer.h │ ├── Makefile │ ├── Memory.h │ ├── MemoryFactory.cc │ ├── MemoryFactory.h │ ├── Packet.cc │ ├── Packet.h │ ├── Processor.cc │ ├── Processor.h │ ├── Ramulator.cc │ ├── Ramulator.h │ ├── Refresh.cc │ ├── Refresh.h │ ├── Request.h │ ├── SALP.cc │ ├── SALP.h │ ├── Scheduler.h │ ├── SpeedyController.h │ ├── StatType.cc │ ├── StatType.h │ ├── Statistics.h │ ├── TLDRAM.cc │ ├── TLDRAM.h │ ├── WideIO.cc │ ├── WideIO.h │ ├── WideIO2.cc │ └── WideIO2.h ├── statwrapper.cc ├── statwrapper.h ├── stream_manager.cc ├── stream_manager.h ├── tr1_hash_map.h ├── trace.cc ├── trace.h └── trace_streams.tup ├── version └── version_detection.mk /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/CHANGES -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/README.md -------------------------------------------------------------------------------- /README_GPGPUSim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/README_GPGPUSim -------------------------------------------------------------------------------- /Ramulator_configs/DDR3-2133L-config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/Ramulator_configs/DDR3-2133L-config.cfg -------------------------------------------------------------------------------- /Ramulator_configs/DDR4-2400R-config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/Ramulator_configs/DDR4-2400R-config.cfg -------------------------------------------------------------------------------- /Ramulator_configs/GDDR5-7000-config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/Ramulator_configs/GDDR5-7000-config.cfg -------------------------------------------------------------------------------- /Ramulator_configs/HBM-1000-config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/Ramulator_configs/HBM-1000-config.cfg -------------------------------------------------------------------------------- /Ramulator_configs/LPDDR3-2133-config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/Ramulator_configs/LPDDR3-2133-config.cfg -------------------------------------------------------------------------------- /Ramulator_configs/LPDDR4-3200-config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/Ramulator_configs/LPDDR4-3200-config.cfg -------------------------------------------------------------------------------- /Ramulator_configs/WideIO-266-config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/Ramulator_configs/WideIO-266-config.cfg -------------------------------------------------------------------------------- /Ramulator_configs/WideIO2-1067-config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/Ramulator_configs/WideIO2-1067-config.cfg -------------------------------------------------------------------------------- /aerialvision/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/aerialvision/README -------------------------------------------------------------------------------- /aerialvision/configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/aerialvision/configs.py -------------------------------------------------------------------------------- /aerialvision/guiclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/aerialvision/guiclasses.py -------------------------------------------------------------------------------- /aerialvision/lexyacc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/aerialvision/lexyacc.py -------------------------------------------------------------------------------- /aerialvision/lexyaccbookmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/aerialvision/lexyaccbookmark.py -------------------------------------------------------------------------------- /aerialvision/lexyacctexteditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/aerialvision/lexyacctexteditor.py -------------------------------------------------------------------------------- /aerialvision/organizedata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/aerialvision/organizedata.py -------------------------------------------------------------------------------- /aerialvision/startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/aerialvision/startup.py -------------------------------------------------------------------------------- /aerialvision/variableclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/aerialvision/variableclasses.py -------------------------------------------------------------------------------- /bin/aerialvision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/bin/aerialvision.py -------------------------------------------------------------------------------- /configs/GTX480/config_fermi_islip.icnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/configs/GTX480/config_fermi_islip.icnt -------------------------------------------------------------------------------- /configs/GTX480/gpgpusim.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/configs/GTX480/gpgpusim.config -------------------------------------------------------------------------------- /configs/GTX480/gpuwattch_gtx480.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/configs/GTX480/gpuwattch_gtx480.xml -------------------------------------------------------------------------------- /configs/QuadroFX5600/gpgpusim.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/configs/QuadroFX5600/gpgpusim.config -------------------------------------------------------------------------------- /configs/QuadroFX5600/gpuwattch_quadrofx5600.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/configs/QuadroFX5600/gpuwattch_quadrofx5600.xml -------------------------------------------------------------------------------- /configs/QuadroFX5600/icnt_config_islip.icnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/configs/QuadroFX5600/icnt_config_islip.icnt -------------------------------------------------------------------------------- /configs/QuadroFX5800/config_quadro_islip.icnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/configs/QuadroFX5800/config_quadro_islip.icnt -------------------------------------------------------------------------------- /configs/QuadroFX5800/gpgpusim.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/configs/QuadroFX5800/gpgpusim.config -------------------------------------------------------------------------------- /configs/TeslaC2050/config_fermi_islip.icnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/configs/TeslaC2050/config_fermi_islip.icnt -------------------------------------------------------------------------------- /configs/TeslaC2050/gpgpusim.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/configs/TeslaC2050/gpgpusim.config -------------------------------------------------------------------------------- /cuobjdump_to_ptxplus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/cuobjdump_to_ptxplus/Makefile -------------------------------------------------------------------------------- /cuobjdump_to_ptxplus/cuobjdumpInst.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/cuobjdump_to_ptxplus/cuobjdumpInst.cc -------------------------------------------------------------------------------- /cuobjdump_to_ptxplus/cuobjdumpInst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/cuobjdump_to_ptxplus/cuobjdumpInst.h -------------------------------------------------------------------------------- /cuobjdump_to_ptxplus/cuobjdumpInstList.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/cuobjdump_to_ptxplus/cuobjdumpInstList.cc -------------------------------------------------------------------------------- /cuobjdump_to_ptxplus/cuobjdumpInstList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/cuobjdump_to_ptxplus/cuobjdumpInstList.h -------------------------------------------------------------------------------- /cuobjdump_to_ptxplus/cuobjdump_to_ptxplus.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/cuobjdump_to_ptxplus/cuobjdump_to_ptxplus.cc -------------------------------------------------------------------------------- /cuobjdump_to_ptxplus/elf.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/cuobjdump_to_ptxplus/elf.l -------------------------------------------------------------------------------- /cuobjdump_to_ptxplus/elf.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/cuobjdump_to_ptxplus/elf.y -------------------------------------------------------------------------------- /cuobjdump_to_ptxplus/header.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/cuobjdump_to_ptxplus/header.l -------------------------------------------------------------------------------- /cuobjdump_to_ptxplus/header.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/cuobjdump_to_ptxplus/header.y -------------------------------------------------------------------------------- /cuobjdump_to_ptxplus/ptx.tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/cuobjdump_to_ptxplus/ptx.tab.c -------------------------------------------------------------------------------- /cuobjdump_to_ptxplus/ptx_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/cuobjdump_to_ptxplus/ptx_parser.h -------------------------------------------------------------------------------- /cuobjdump_to_ptxplus/sass.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/cuobjdump_to_ptxplus/sass.l -------------------------------------------------------------------------------- /cuobjdump_to_ptxplus/sass.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/cuobjdump_to_ptxplus/sass.y -------------------------------------------------------------------------------- /doc/doxygen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/doc/doxygen/Makefile -------------------------------------------------------------------------------- /doc/doxygen/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/doc/doxygen/doxygen.css -------------------------------------------------------------------------------- /doc/doxygen/gpgpu-sim.doxygen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/doc/doxygen/gpgpu-sim.doxygen -------------------------------------------------------------------------------- /libcuda/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/libcuda/Makefile -------------------------------------------------------------------------------- /libcuda/cuda_runtime_api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/libcuda/cuda_runtime_api.cc -------------------------------------------------------------------------------- /libcuda/cuobjdump.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/libcuda/cuobjdump.l -------------------------------------------------------------------------------- /libcuda/cuobjdump.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/libcuda/cuobjdump.y -------------------------------------------------------------------------------- /libcuda/cuobjdump_lexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/libcuda/cuobjdump_lexer.c -------------------------------------------------------------------------------- /libcuda/cuobjdump_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/libcuda/cuobjdump_parser.c -------------------------------------------------------------------------------- /libcuda/cuobjdump_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/libcuda/cuobjdump_parser.h -------------------------------------------------------------------------------- /libcuda/cuobjdump_parser.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/libcuda/cuobjdump_parser.output -------------------------------------------------------------------------------- /libopencl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/libopencl/Makefile -------------------------------------------------------------------------------- /libopencl/nvopencl_wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/libopencl/nvopencl_wrapper.cc -------------------------------------------------------------------------------- /libopencl/opencl_runtime_api.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/libopencl/opencl_runtime_api.cc -------------------------------------------------------------------------------- /scripts/gen_ptxinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/scripts/gen_ptxinfo -------------------------------------------------------------------------------- /setup_environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/setup_environment -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/abstract_hardware_model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/abstract_hardware_model.cc -------------------------------------------------------------------------------- /src/abstract_hardware_model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/abstract_hardware_model.h -------------------------------------------------------------------------------- /src/cuda-sim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/Makefile -------------------------------------------------------------------------------- /src/cuda-sim/cuda-math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/cuda-math.h -------------------------------------------------------------------------------- /src/cuda-sim/cuda-sim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/cuda-sim.cc -------------------------------------------------------------------------------- /src/cuda-sim/cuda-sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/cuda-sim.h -------------------------------------------------------------------------------- /src/cuda-sim/cuda_device_printf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/cuda_device_printf.cc -------------------------------------------------------------------------------- /src/cuda-sim/cuda_device_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/cuda_device_printf.h -------------------------------------------------------------------------------- /src/cuda-sim/decuda_pred_table/decuda_pred_table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/decuda_pred_table/decuda_pred_table.cc -------------------------------------------------------------------------------- /src/cuda-sim/decuda_pred_table/decuda_pred_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/decuda_pred_table/decuda_pred_table.h -------------------------------------------------------------------------------- /src/cuda-sim/instructions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/instructions.cc -------------------------------------------------------------------------------- /src/cuda-sim/memory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/memory.cc -------------------------------------------------------------------------------- /src/cuda-sim/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/memory.h -------------------------------------------------------------------------------- /src/cuda-sim/opcodes.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/opcodes.def -------------------------------------------------------------------------------- /src/cuda-sim/opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/opcodes.h -------------------------------------------------------------------------------- /src/cuda-sim/ptx-stats.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/ptx-stats.cc -------------------------------------------------------------------------------- /src/cuda-sim/ptx-stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/ptx-stats.h -------------------------------------------------------------------------------- /src/cuda-sim/ptx.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/ptx.l -------------------------------------------------------------------------------- /src/cuda-sim/ptx.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/ptx.y -------------------------------------------------------------------------------- /src/cuda-sim/ptx_ir.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/ptx_ir.cc -------------------------------------------------------------------------------- /src/cuda-sim/ptx_ir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/ptx_ir.h -------------------------------------------------------------------------------- /src/cuda-sim/ptx_loader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/ptx_loader.cc -------------------------------------------------------------------------------- /src/cuda-sim/ptx_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/ptx_loader.h -------------------------------------------------------------------------------- /src/cuda-sim/ptx_parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/ptx_parser.cc -------------------------------------------------------------------------------- /src/cuda-sim/ptx_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/ptx_parser.h -------------------------------------------------------------------------------- /src/cuda-sim/ptx_sim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/ptx_sim.cc -------------------------------------------------------------------------------- /src/cuda-sim/ptx_sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/ptx_sim.h -------------------------------------------------------------------------------- /src/cuda-sim/ptxinfo.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/ptxinfo.l -------------------------------------------------------------------------------- /src/cuda-sim/ptxinfo.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/cuda-sim/ptxinfo.y -------------------------------------------------------------------------------- /src/debug.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/debug.cc -------------------------------------------------------------------------------- /src/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/debug.h -------------------------------------------------------------------------------- /src/gpgpu-sim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/Makefile -------------------------------------------------------------------------------- /src/gpgpu-sim/addrdec.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/addrdec.cc -------------------------------------------------------------------------------- /src/gpgpu-sim/addrdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/addrdec.h -------------------------------------------------------------------------------- /src/gpgpu-sim/delayqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/delayqueue.h -------------------------------------------------------------------------------- /src/gpgpu-sim/dram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/dram.cc -------------------------------------------------------------------------------- /src/gpgpu-sim/dram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/dram.h -------------------------------------------------------------------------------- /src/gpgpu-sim/dram_sched.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/dram_sched.cc -------------------------------------------------------------------------------- /src/gpgpu-sim/dram_sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/dram_sched.h -------------------------------------------------------------------------------- /src/gpgpu-sim/gpu-cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/gpu-cache.cc -------------------------------------------------------------------------------- /src/gpgpu-sim/gpu-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/gpu-cache.h -------------------------------------------------------------------------------- /src/gpgpu-sim/gpu-misc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/gpu-misc.cc -------------------------------------------------------------------------------- /src/gpgpu-sim/gpu-misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/gpu-misc.h -------------------------------------------------------------------------------- /src/gpgpu-sim/gpu-sim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/gpu-sim.cc -------------------------------------------------------------------------------- /src/gpgpu-sim/gpu-sim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/gpu-sim.h -------------------------------------------------------------------------------- /src/gpgpu-sim/histogram.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/histogram.cc -------------------------------------------------------------------------------- /src/gpgpu-sim/histogram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/histogram.h -------------------------------------------------------------------------------- /src/gpgpu-sim/icnt_wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/icnt_wrapper.cc -------------------------------------------------------------------------------- /src/gpgpu-sim/icnt_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/icnt_wrapper.h -------------------------------------------------------------------------------- /src/gpgpu-sim/l2cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/l2cache.cc -------------------------------------------------------------------------------- /src/gpgpu-sim/l2cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/l2cache.h -------------------------------------------------------------------------------- /src/gpgpu-sim/l2cache_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/l2cache_trace.h -------------------------------------------------------------------------------- /src/gpgpu-sim/mem_fetch.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/mem_fetch.cc -------------------------------------------------------------------------------- /src/gpgpu-sim/mem_fetch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/mem_fetch.h -------------------------------------------------------------------------------- /src/gpgpu-sim/mem_fetch_status.tup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/mem_fetch_status.tup -------------------------------------------------------------------------------- /src/gpgpu-sim/mem_latency_stat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/mem_latency_stat.cc -------------------------------------------------------------------------------- /src/gpgpu-sim/mem_latency_stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/mem_latency_stat.h -------------------------------------------------------------------------------- /src/gpgpu-sim/power_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/power_interface.cc -------------------------------------------------------------------------------- /src/gpgpu-sim/power_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/power_interface.h -------------------------------------------------------------------------------- /src/gpgpu-sim/power_stat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/power_stat.cc -------------------------------------------------------------------------------- /src/gpgpu-sim/power_stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/power_stat.h -------------------------------------------------------------------------------- /src/gpgpu-sim/scoreboard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/scoreboard.cc -------------------------------------------------------------------------------- /src/gpgpu-sim/scoreboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/scoreboard.h -------------------------------------------------------------------------------- /src/gpgpu-sim/shader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/shader.cc -------------------------------------------------------------------------------- /src/gpgpu-sim/shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/shader.h -------------------------------------------------------------------------------- /src/gpgpu-sim/shader_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/shader_trace.h -------------------------------------------------------------------------------- /src/gpgpu-sim/stack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/stack.cc -------------------------------------------------------------------------------- /src/gpgpu-sim/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/stack.h -------------------------------------------------------------------------------- /src/gpgpu-sim/stat-tool.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/stat-tool.cc -------------------------------------------------------------------------------- /src/gpgpu-sim/stat-tool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/stat-tool.h -------------------------------------------------------------------------------- /src/gpgpu-sim/stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/stats.h -------------------------------------------------------------------------------- /src/gpgpu-sim/temp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/temp.txt -------------------------------------------------------------------------------- /src/gpgpu-sim/traffic_breakdown.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/traffic_breakdown.cc -------------------------------------------------------------------------------- /src/gpgpu-sim/traffic_breakdown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/traffic_breakdown.h -------------------------------------------------------------------------------- /src/gpgpu-sim/visualizer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/visualizer.cc -------------------------------------------------------------------------------- /src/gpgpu-sim/visualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpu-sim/visualizer.h -------------------------------------------------------------------------------- /src/gpgpusim_entrypoint.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpusim_entrypoint.cc -------------------------------------------------------------------------------- /src/gpgpusim_entrypoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpgpusim_entrypoint.h -------------------------------------------------------------------------------- /src/gpuwattch/Alpha21364.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/Alpha21364.xml -------------------------------------------------------------------------------- /src/gpuwattch/Niagara1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/Niagara1.xml -------------------------------------------------------------------------------- /src/gpuwattch/Niagara1_sharing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/Niagara1_sharing.xml -------------------------------------------------------------------------------- /src/gpuwattch/Niagara1_sharing_DC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/Niagara1_sharing_DC.xml -------------------------------------------------------------------------------- /src/gpuwattch/Niagara1_sharing_SBT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/Niagara1_sharing_SBT.xml -------------------------------------------------------------------------------- /src/gpuwattch/Niagara1_sharing_ST.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/Niagara1_sharing_ST.xml -------------------------------------------------------------------------------- /src/gpuwattch/Niagara2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/Niagara2.xml -------------------------------------------------------------------------------- /src/gpuwattch/Penryn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/Penryn.xml -------------------------------------------------------------------------------- /src/gpuwattch/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/README -------------------------------------------------------------------------------- /src/gpuwattch/XML_Parse.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/XML_Parse.cc -------------------------------------------------------------------------------- /src/gpuwattch/XML_Parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/XML_Parse.h -------------------------------------------------------------------------------- /src/gpuwattch/Xeon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/Xeon.xml -------------------------------------------------------------------------------- /src/gpuwattch/arch_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/arch_const.h -------------------------------------------------------------------------------- /src/gpuwattch/array.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/array.cc -------------------------------------------------------------------------------- /src/gpuwattch/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/array.h -------------------------------------------------------------------------------- /src/gpuwattch/basic_components.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/basic_components.cc -------------------------------------------------------------------------------- /src/gpuwattch/basic_components.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/basic_components.h -------------------------------------------------------------------------------- /src/gpuwattch/cacti/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/README -------------------------------------------------------------------------------- /src/gpuwattch/cacti/Ucache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/Ucache.cc -------------------------------------------------------------------------------- /src/gpuwattch/cacti/Ucache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/Ucache.h -------------------------------------------------------------------------------- /src/gpuwattch/cacti/arbiter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/arbiter.cc -------------------------------------------------------------------------------- /src/gpuwattch/cacti/arbiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/arbiter.h -------------------------------------------------------------------------------- /src/gpuwattch/cacti/area.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/area.cc -------------------------------------------------------------------------------- /src/gpuwattch/cacti/area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/area.h -------------------------------------------------------------------------------- /src/gpuwattch/cacti/bank.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/bank.cc -------------------------------------------------------------------------------- /src/gpuwattch/cacti/bank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/bank.h -------------------------------------------------------------------------------- /src/gpuwattch/cacti/basic_circuit.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/basic_circuit.cc -------------------------------------------------------------------------------- /src/gpuwattch/cacti/basic_circuit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/basic_circuit.h -------------------------------------------------------------------------------- /src/gpuwattch/cacti/batch_tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/batch_tests -------------------------------------------------------------------------------- /src/gpuwattch/cacti/cache.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/cache.cfg -------------------------------------------------------------------------------- /src/gpuwattch/cacti/cacti.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/cacti.i -------------------------------------------------------------------------------- /src/gpuwattch/cacti/cacti.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/cacti.mk -------------------------------------------------------------------------------- /src/gpuwattch/cacti/cacti_interface.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/cacti_interface.cc -------------------------------------------------------------------------------- /src/gpuwattch/cacti/cacti_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/cacti_interface.h -------------------------------------------------------------------------------- /src/gpuwattch/cacti/component.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/component.cc -------------------------------------------------------------------------------- /src/gpuwattch/cacti/component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/component.h -------------------------------------------------------------------------------- /src/gpuwattch/cacti/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/const.h -------------------------------------------------------------------------------- /src/gpuwattch/cacti/contention.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/contention.dat -------------------------------------------------------------------------------- /src/gpuwattch/cacti/crossbar.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/crossbar.cc -------------------------------------------------------------------------------- /src/gpuwattch/cacti/crossbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/crossbar.h -------------------------------------------------------------------------------- /src/gpuwattch/cacti/decoder.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/decoder.cc -------------------------------------------------------------------------------- /src/gpuwattch/cacti/decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/decoder.h -------------------------------------------------------------------------------- /src/gpuwattch/cacti/highradix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/highradix.cc -------------------------------------------------------------------------------- /src/gpuwattch/cacti/highradix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/highradix.h -------------------------------------------------------------------------------- /src/gpuwattch/cacti/htree2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/htree2.cc -------------------------------------------------------------------------------- /src/gpuwattch/cacti/htree2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/htree2.h -------------------------------------------------------------------------------- /src/gpuwattch/cacti/io.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/io.cc -------------------------------------------------------------------------------- /src/gpuwattch/cacti/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/io.h -------------------------------------------------------------------------------- /src/gpuwattch/cacti/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/main.cc -------------------------------------------------------------------------------- /src/gpuwattch/cacti/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/makefile -------------------------------------------------------------------------------- /src/gpuwattch/cacti/mat.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/mat.cc -------------------------------------------------------------------------------- /src/gpuwattch/cacti/mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/mat.h -------------------------------------------------------------------------------- /src/gpuwattch/cacti/nuca.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/nuca.cc -------------------------------------------------------------------------------- /src/gpuwattch/cacti/nuca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/nuca.h -------------------------------------------------------------------------------- /src/gpuwattch/cacti/out_batch_test_result.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/out_batch_test_result.csv -------------------------------------------------------------------------------- /src/gpuwattch/cacti/parameter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/parameter.cc -------------------------------------------------------------------------------- /src/gpuwattch/cacti/parameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/parameter.h -------------------------------------------------------------------------------- /src/gpuwattch/cacti/router.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/router.cc -------------------------------------------------------------------------------- /src/gpuwattch/cacti/router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/router.h -------------------------------------------------------------------------------- /src/gpuwattch/cacti/subarray.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/subarray.cc -------------------------------------------------------------------------------- /src/gpuwattch/cacti/subarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/subarray.h -------------------------------------------------------------------------------- /src/gpuwattch/cacti/technology.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/technology.cc -------------------------------------------------------------------------------- /src/gpuwattch/cacti/uca.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/uca.cc -------------------------------------------------------------------------------- /src/gpuwattch/cacti/uca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/uca.h -------------------------------------------------------------------------------- /src/gpuwattch/cacti/wire.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/wire.cc -------------------------------------------------------------------------------- /src/gpuwattch/cacti/wire.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/cacti/wire.h -------------------------------------------------------------------------------- /src/gpuwattch/core.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/core.cc -------------------------------------------------------------------------------- /src/gpuwattch/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/core.h -------------------------------------------------------------------------------- /src/gpuwattch/fermi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/fermi.xml -------------------------------------------------------------------------------- /src/gpuwattch/globalvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/globalvar.h -------------------------------------------------------------------------------- /src/gpuwattch/gpgpu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/gpgpu.xml -------------------------------------------------------------------------------- /src/gpuwattch/gpgpu_sim.verify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/gpgpu_sim.verify -------------------------------------------------------------------------------- /src/gpuwattch/gpgpu_sim_wrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/gpgpu_sim_wrapper.cc -------------------------------------------------------------------------------- /src/gpuwattch/gpgpu_sim_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/gpgpu_sim_wrapper.h -------------------------------------------------------------------------------- /src/gpuwattch/gpgpu_static.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/gpgpu_static.xml -------------------------------------------------------------------------------- /src/gpuwattch/interconnect.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/interconnect.cc -------------------------------------------------------------------------------- /src/gpuwattch/interconnect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/interconnect.h -------------------------------------------------------------------------------- /src/gpuwattch/iocontrollers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/iocontrollers.cc -------------------------------------------------------------------------------- /src/gpuwattch/iocontrollers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/iocontrollers.h -------------------------------------------------------------------------------- /src/gpuwattch/logic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/logic.cc -------------------------------------------------------------------------------- /src/gpuwattch/logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/logic.h -------------------------------------------------------------------------------- /src/gpuwattch/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/main.cc -------------------------------------------------------------------------------- /src/gpuwattch/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/makefile -------------------------------------------------------------------------------- /src/gpuwattch/mcpat.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/mcpat.mk -------------------------------------------------------------------------------- /src/gpuwattch/mcpatXeonCore.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/mcpatXeonCore.mk -------------------------------------------------------------------------------- /src/gpuwattch/memoryctrl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/memoryctrl.cc -------------------------------------------------------------------------------- /src/gpuwattch/memoryctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/memoryctrl.h -------------------------------------------------------------------------------- /src/gpuwattch/noc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/noc.cc -------------------------------------------------------------------------------- /src/gpuwattch/noc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/noc.h -------------------------------------------------------------------------------- /src/gpuwattch/processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/processor.cc -------------------------------------------------------------------------------- /src/gpuwattch/processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/processor.h -------------------------------------------------------------------------------- /src/gpuwattch/quadro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/quadro.xml -------------------------------------------------------------------------------- /src/gpuwattch/results/Alpha21364: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/results/Alpha21364 -------------------------------------------------------------------------------- /src/gpuwattch/results/Alpha21364_90nm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/results/Alpha21364_90nm -------------------------------------------------------------------------------- /src/gpuwattch/results/Penryn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/results/Penryn -------------------------------------------------------------------------------- /src/gpuwattch/results/T1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/results/T1 -------------------------------------------------------------------------------- /src/gpuwattch/results/T1_DC_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/results/T1_DC_64 -------------------------------------------------------------------------------- /src/gpuwattch/results/T1_SBT_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/results/T1_SBT_64 -------------------------------------------------------------------------------- /src/gpuwattch/results/T1_ST_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/results/T1_ST_64 -------------------------------------------------------------------------------- /src/gpuwattch/results/T2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/results/T2 -------------------------------------------------------------------------------- /src/gpuwattch/results/Xeon_core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/results/Xeon_core -------------------------------------------------------------------------------- /src/gpuwattch/results/Xeon_uncore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/results/Xeon_uncore -------------------------------------------------------------------------------- /src/gpuwattch/sharedcache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/sharedcache.cc -------------------------------------------------------------------------------- /src/gpuwattch/sharedcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/sharedcache.h -------------------------------------------------------------------------------- /src/gpuwattch/technology_xeon_core.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/technology_xeon_core.cc -------------------------------------------------------------------------------- /src/gpuwattch/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/version.h -------------------------------------------------------------------------------- /src/gpuwattch/xmlParser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/xmlParser.cc -------------------------------------------------------------------------------- /src/gpuwattch/xmlParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/gpuwattch/xmlParser.h -------------------------------------------------------------------------------- /src/intersim2/.svn/entries: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /src/intersim2/.svn/format: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/04/043985cd8560fd203de2c2d82735f1e5ecf3783d.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/04/043985cd8560fd203de2c2d82735f1e5ecf3783d.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/05/05a079244c124bc5d781812aac07878c6956ef46.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/05/05a079244c124bc5d781812aac07878c6956ef46.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/0a/0a776321c5f55776af796ce2c5543f562d751c17.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/0a/0a776321c5f55776af796ce2c5543f562d751c17.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/0b/0b0c41499a28f0b7c2fccd583db339989d665677.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/0b/0b0c41499a28f0b7c2fccd583db339989d665677.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/0e/0eae5ca5351f1f31915bc0c3da4a3a1ae19e21c4.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/0e/0eae5ca5351f1f31915bc0c3da4a3a1ae19e21c4.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/0f/0fa9e6ee8d633c141585cd663a6307195b79db63.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/0f/0fa9e6ee8d633c141585cd663a6307195b79db63.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/10/1008fe454a2dfea0e03f6ab28358479e94cdb719.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/10/1008fe454a2dfea0e03f6ab28358479e94cdb719.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/12/125686d82b0fb03524a1bd1dc36fd9172006e780.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/12/125686d82b0fb03524a1bd1dc36fd9172006e780.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/12/1260dd25f0b77d1694bc40d60681090fdb77e795.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/12/1260dd25f0b77d1694bc40d60681090fdb77e795.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/12/129d383ada436691b3879ee38f72c6420d1b3b86.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/12/129d383ada436691b3879ee38f72c6420d1b3b86.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/13/135d8312fc0bb109518f6bfc62cbbf814c7d587c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/13/135d8312fc0bb109518f6bfc62cbbf814c7d587c.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/13/13e96ce60fa5bdc9726f48b5186ae562fcd4bbeb.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/13/13e96ce60fa5bdc9726f48b5186ae562fcd4bbeb.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/14/14292d017cd222997f376c20ca99e10a17cb7e0c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/14/14292d017cd222997f376c20ca99e10a17cb7e0c.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/14/14cfb5d4ea815b6697d047697a25ef8cfb9e17de.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/14/14cfb5d4ea815b6697d047697a25ef8cfb9e17de.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/15/1567f00df3a29e4f360b35e014b1f69cf281f55a.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/15/1567f00df3a29e4f360b35e014b1f69cf281f55a.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/1a/1abf005acda7eb93dad10f55694f27a84ba74f91.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/1a/1abf005acda7eb93dad10f55694f27a84ba74f91.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/1a/1afc46cd26811b568cd238a5bb6cf4a3e9687edf.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/1a/1afc46cd26811b568cd238a5bb6cf4a3e9687edf.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/1e/1e4194e8f6ff3aacdde8d0caf868ab69490d6a6c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/1e/1e4194e8f6ff3aacdde8d0caf868ab69490d6a6c.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/1f/1f35cbdd9ebe1ee0a41e949e03d51d268ac55bad.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/1f/1f35cbdd9ebe1ee0a41e949e03d51d268ac55bad.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/1f/1f6b483285599def0e7fea5379c0af7a176d2736.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/1f/1f6b483285599def0e7fea5379c0af7a176d2736.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/23/235d7e656a8ce9818d81cd7eb47ca78febbe438a.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/23/235d7e656a8ce9818d81cd7eb47ca78febbe438a.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/24/244c1dc93f9a90c660c06c653d3809b739d40458.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/24/244c1dc93f9a90c660c06c653d3809b739d40458.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/2a/2a04a186dfedaa33f2a0336556c086868dd6ccfc.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/2a/2a04a186dfedaa33f2a0336556c086868dd6ccfc.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/2c/2ca444c5a28eb3f8aaffcf0702edd18d4fe31fad.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/2c/2ca444c5a28eb3f8aaffcf0702edd18d4fe31fad.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/2e/2e9094d44209e8c6464b2834012a6dc9dd860340.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/2e/2e9094d44209e8c6464b2834012a6dc9dd860340.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/2f/2ff946ea4e0a43b74a424e711f7489085c496e3a.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/2f/2ff946ea4e0a43b74a424e711f7489085c496e3a.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/33/337f567cc4b77aad754f713a5fd363118f925249.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/33/337f567cc4b77aad754f713a5fd363118f925249.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/38/38bf48ff0300a37f3005867f74e32b80297f8b09.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/38/38bf48ff0300a37f3005867f74e32b80297f8b09.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/39/398668283dbbef318596ac5cdfdb72a53973f2d1.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/39/398668283dbbef318596ac5cdfdb72a53973f2d1.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/3a/3a771e1b366aae7e427d29b3f55d7f51045173d5.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/3a/3a771e1b366aae7e427d29b3f55d7f51045173d5.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/3b/3bdd451bbcde75941cf7ad8caf63c4465c856102.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/3b/3bdd451bbcde75941cf7ad8caf63c4465c856102.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/3b/3bebc9fde5e475aaa53b6d4abda241d37117421b.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/3b/3bebc9fde5e475aaa53b6d4abda241d37117421b.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/3c/3c57b304902a442e45bf4e4225aac564cd2bdc26.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/3c/3c57b304902a442e45bf4e4225aac564cd2bdc26.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/3c/3c8671257ad287c8e877c0942bdc9f16e9f7fe0c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/3c/3c8671257ad287c8e877c0942bdc9f16e9f7fe0c.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/3f/3f4cacd217f3c1d154a11537511bf6b6e96a8e6b.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/3f/3f4cacd217f3c1d154a11537511bf6b6e96a8e6b.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/42/42777bd5ccda83625dfbf29e7aec13f2e773373a.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/42/42777bd5ccda83625dfbf29e7aec13f2e773373a.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/47/471f8248dcd907fcddacc3b42c965e4919cb2f35.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/47/471f8248dcd907fcddacc3b42c965e4919cb2f35.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/4d/4d8326ecf3cc79ffda12daf20e4a46b4439ada88.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/4d/4d8326ecf3cc79ffda12daf20e4a46b4439ada88.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/52/52025d7789c8bb45a38bad2e58ac67cc26f3b4ed.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/52/52025d7789c8bb45a38bad2e58ac67cc26f3b4ed.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/55/5559780a67de13b98fb00d7f052ce254551f229b.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/55/5559780a67de13b98fb00d7f052ce254551f229b.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/55/55ee19fa1932804a55ee815f4456c4a6f21a355f.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/55/55ee19fa1932804a55ee815f4456c4a6f21a355f.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/56/569d5254648903d6589a32c30a98b3276cdbdebd.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/56/569d5254648903d6589a32c30a98b3276cdbdebd.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/58/589a6050104bd5e828d72f3efdc31796eae32683.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/58/589a6050104bd5e828d72f3efdc31796eae32683.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/59/59bcc26ad66045a58e3f0590f2b12ad7eba5991f.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/59/59bcc26ad66045a58e3f0590f2b12ad7eba5991f.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/5c/5cc61faafce12ea44fa63fb32a14f8f0c74c7338.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/5c/5cc61faafce12ea44fa63fb32a14f8f0c74c7338.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/5f/5f655d8c1cb25991e3f079611f3bad0ba05c6b6d.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/5f/5f655d8c1cb25991e3f079611f3bad0ba05c6b6d.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/65/650f86454fd17051ddb2eca80fd985027770a1ba.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/65/650f86454fd17051ddb2eca80fd985027770a1ba.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/66/6699bbb1b4cb750a8857780e76ee4923ef317c90.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/66/6699bbb1b4cb750a8857780e76ee4923ef317c90.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/69/691260433188a985b38ff49ca3f51e6c0b731c0a.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/69/691260433188a985b38ff49ca3f51e6c0b731c0a.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/6c/6c86a0b772d76fae9d90046d17b6ec12b77551d0.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/6c/6c86a0b772d76fae9d90046d17b6ec12b77551d0.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/6d/6d0272df1c727d8c5fa77a3bfa9155d50335a5c6.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/6d/6d0272df1c727d8c5fa77a3bfa9155d50335a5c6.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/6e/6ee04608f65a1c9be65fcbe3def54f38d00f1bf5.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/6e/6ee04608f65a1c9be65fcbe3def54f38d00f1bf5.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/70/7052ff59571d88c99070cd8d659460b1534cf1b3.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/70/7052ff59571d88c99070cd8d659460b1534cf1b3.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/72/72bdb07d5ae6b1010a5ae388c45b5fbe2d549f92.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/72/72bdb07d5ae6b1010a5ae388c45b5fbe2d549f92.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/75/75fab6aaa53ec97ae2f9769ab873fea5abf9516b.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/75/75fab6aaa53ec97ae2f9769ab873fea5abf9516b.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/76/7692129db779b4e8cd14cf7ab6fac567093153b2.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/76/7692129db779b4e8cd14cf7ab6fac567093153b2.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/77/77d1aaef881a98fa412061c4daa8137d12ee6f3f.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/77/77d1aaef881a98fa412061c4daa8137d12ee6f3f.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/78/78c651a126efa354bfbf06841fb91bf72d970003.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/78/78c651a126efa354bfbf06841fb91bf72d970003.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/78/78db9a8009e2eeebfa8c1d67e38108237e7cf1b3.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/78/78db9a8009e2eeebfa8c1d67e38108237e7cf1b3.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/7a/7a54a566c36bec4672c4c004940eb007ffb11730.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/7a/7a54a566c36bec4672c4c004940eb007ffb11730.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/7b/7b0efd00926de5ec0c6efc86d8ddfbba35da0f82.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/7b/7b0efd00926de5ec0c6efc86d8ddfbba35da0f82.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/7b/7b445ae8a3f265094d5af4956c88457b77c18fa5.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/7b/7b445ae8a3f265094d5af4956c88457b77c18fa5.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/7c/7c4fde53686972fa2db885e0743742173afd1bb9.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/7c/7c4fde53686972fa2db885e0743742173afd1bb9.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/7f/7fdf02535ae5ba5ca9a2b15879dbcdd928095585.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/7f/7fdf02535ae5ba5ca9a2b15879dbcdd928095585.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/82/829eb51edd8ef3cc3c06778a3e3a379f352728e1.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/82/829eb51edd8ef3cc3c06778a3e3a379f352728e1.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/8c/8c5b24b41796edbfedbb98138da7278e7c22d832.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/8c/8c5b24b41796edbfedbb98138da7278e7c22d832.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/8e/8e7a59b2896a3ee93a308768d554d28b324b26aa.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/8e/8e7a59b2896a3ee93a308768d554d28b324b26aa.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/8f/8fa65cdf95f29e2fd90afe3901d296d085ff768b.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/8f/8fa65cdf95f29e2fd90afe3901d296d085ff768b.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/8f/8fca73abe4a7446a1a53687a6baca97dc056eabf.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/8f/8fca73abe4a7446a1a53687a6baca97dc056eabf.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/8f/8fd71b46841aae63fcfe44908c2a1827741661fb.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/8f/8fd71b46841aae63fcfe44908c2a1827741661fb.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/90/90e277f393024f15eeb6e024bd34ac972b818aaf.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/90/90e277f393024f15eeb6e024bd34ac972b818aaf.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/90/90f780ee11bbe517547a3648019db3592a5e7675.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/90/90f780ee11bbe517547a3648019db3592a5e7675.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/94/941911d54bdc048828d97698138c156dd9becc6c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/94/941911d54bdc048828d97698138c156dd9becc6c.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/95/9532d33b08220b7f51a001451336e589a0a92e97.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/95/9532d33b08220b7f51a001451336e589a0a92e97.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/96/968162a2f3ef193e7baffadd696d73fccaf5d69c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/96/968162a2f3ef193e7baffadd696d73fccaf5d69c.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/97/9709aa53e9b91e3103a5c627cfd4c83d5857c451.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/97/9709aa53e9b91e3103a5c627cfd4c83d5857c451.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/9a/9a6a33f2fd931773aa82485ef360d84c227abb12.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/9a/9a6a33f2fd931773aa82485ef360d84c227abb12.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/9a/9a75723858a7c299341d4e68fbb1581f9865b898.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/9a/9a75723858a7c299341d4e68fbb1581f9865b898.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/9a/9aed09bfc8ce0fffa6872c93917412c0577120c2.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/9a/9aed09bfc8ce0fffa6872c93917412c0577120c2.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/9b/9b149c35e1f088a947ef877a58c79300dd5b074e.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/9b/9b149c35e1f088a947ef877a58c79300dd5b074e.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/9e/9ee6cbb1a61d3f7c2992c673ad86d0ed1d245ef8.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/9e/9ee6cbb1a61d3f7c2992c673ad86d0ed1d245ef8.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/9f/9f3bdc5b32d0fd02e717f7a9c517e280355586fb.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/9f/9f3bdc5b32d0fd02e717f7a9c517e280355586fb.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/a4/a4359ad59061eaed8a442687bbf1e8693be96a72.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/a4/a4359ad59061eaed8a442687bbf1e8693be96a72.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/ad/ad824944d4de71c9e947f9e386f12aa8c6ec4355.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/ad/ad824944d4de71c9e947f9e386f12aa8c6ec4355.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/af/afde60b791408b0db1c56c113ccfe45105b846eb.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/af/afde60b791408b0db1c56c113ccfe45105b846eb.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/b0/b0621120b70fa66b06fa3e7adc9b386974b8c0c3.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/b0/b0621120b70fa66b06fa3e7adc9b386974b8c0c3.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/b4/b4f5b1485bfafbb63c019d5aadd0f1c58250fbe4.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/b4/b4f5b1485bfafbb63c019d5aadd0f1c58250fbe4.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/b6/b6c4fdbece4c23327c9e321b130c2ec595705f98.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/b6/b6c4fdbece4c23327c9e321b130c2ec595705f98.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/b7/b755bb8c053f61f95a6ce87cddff8068f0fa19fa.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/b7/b755bb8c053f61f95a6ce87cddff8068f0fa19fa.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/b8/b8715f9652140e4746a42ce2c1ca742a6dcc8ab1.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/b8/b8715f9652140e4746a42ce2c1ca742a6dcc8ab1.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/b9/b92275ee465ac160db13b1f1e271cf80bc843710.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/b9/b92275ee465ac160db13b1f1e271cf80bc843710.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/bf/bf0b085441d2569f393cadb89df82945471cd4d4.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/bf/bf0b085441d2569f393cadb89df82945471cd4d4.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/c3/c3580bf85e8bc6015a74e1f37916987e00accdaa.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/c3/c3580bf85e8bc6015a74e1f37916987e00accdaa.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/c3/c3dce16b735e5ff4045d124ee30299d4ff39f5b1.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/c3/c3dce16b735e5ff4045d124ee30299d4ff39f5b1.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/c5/c5213fecc8710817b2514c72787b0207849f9280.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/c5/c5213fecc8710817b2514c72787b0207849f9280.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/cb/cb7c673e590ba7e01169bf437b3753f478aa55ac.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/cb/cb7c673e590ba7e01169bf437b3753f478aa55ac.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/cd/cdcc1ba4154908a4bfefe5993832475af05a62e6.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/cd/cdcc1ba4154908a4bfefe5993832475af05a62e6.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/ce/ce3f71fc2f0c6cac1246ba0e26b6af41edef501d.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/ce/ce3f71fc2f0c6cac1246ba0e26b6af41edef501d.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/d0/d0f90a9d59a9b0c3aa0cf7a6059e041d762561d1.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/d0/d0f90a9d59a9b0c3aa0cf7a6059e041d762561d1.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/d3/d37925d1e5c51c8adc54f266e526d96fd3468e65.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/d3/d37925d1e5c51c8adc54f266e526d96fd3468e65.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/d6/d61d8cfbf8e0ae5784d8d94c0bb085d6d1e7b214.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/d6/d61d8cfbf8e0ae5784d8d94c0bb085d6d1e7b214.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/d8/d829c556dee3dc27d19528e00200847c1b338e0e.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/d8/d829c556dee3dc27d19528e00200847c1b338e0e.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/da/dace18d8332403831e17e47c9f2dac7ee20fe786.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/da/dace18d8332403831e17e47c9f2dac7ee20fe786.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/de/de391802bf06c5a01ef346b8b98d27244c296855.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/de/de391802bf06c5a01ef346b8b98d27244c296855.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/e0/e0e6b10f519b612fdd24fcc64ea62b4d5fdf89fc.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/e0/e0e6b10f519b612fdd24fcc64ea62b4d5fdf89fc.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/e2/e216ca41a2789704029b85d462988590d43813f3.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/e2/e216ca41a2789704029b85d462988590d43813f3.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/e3/e3245c11796bcda90ba6909bb34dced14101b2c3.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/e3/e3245c11796bcda90ba6909bb34dced14101b2c3.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/e6/e64fcd97a677ff77ec1692273171f513fe794507.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/e6/e64fcd97a677ff77ec1692273171f513fe794507.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/eb/ebec0a8c0098e95bd530e52b0baed6d9a60a33c1.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/eb/ebec0a8c0098e95bd530e52b0baed6d9a60a33c1.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/ec/ec23715e6e01d44320732e4a8fc186d6b209a3bb.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/ec/ec23715e6e01d44320732e4a8fc186d6b209a3bb.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/ef/ef53e3bc23eac89edf00c7903de88ebb2f4084b6.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/ef/ef53e3bc23eac89edf00c7903de88ebb2f4084b6.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/f0/f0994d52a0bff0a75bf779e8ec53715b011bfd97.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/f0/f0994d52a0bff0a75bf779e8ec53715b011bfd97.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/f1/f18798b1a209786e47ee28ef3d5c7b5e908e0642.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/f1/f18798b1a209786e47ee28ef3d5c7b5e908e0642.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/f3/f3f385cd24e067dc09ab89284d234593352ee0bf.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/f3/f3f385cd24e067dc09ab89284d234593352ee0bf.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/f4/f47cc0dc517c023ddeaf70f92c90e0ecfe343030.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/f4/f47cc0dc517c023ddeaf70f92c90e0ecfe343030.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/f4/f48f9ec9cbd794b900c47d4fa1af919f73f844ab.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/f4/f48f9ec9cbd794b900c47d4fa1af919f73f844ab.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/f7/f7c0ca6108d1e538b05438c69b603d0d1903688f.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/f7/f7c0ca6108d1e538b05438c69b603d0d1903688f.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/f8/f88e58811f1c40d35b795e6d317579cc2c3668d0.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/f8/f88e58811f1c40d35b795e6d317579cc2c3668d0.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/f9/f9cf31dbae18e4e1930dc0632175d9c420d3c067.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/f9/f9cf31dbae18e4e1930dc0632175d9c420d3c067.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/f9/f9ef776d4727c7e2a1e057f5839da76e854ccae5.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/f9/f9ef776d4727c7e2a1e057f5839da76e854ccae5.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/fa/fad571d200d6232ee119a96b2ae1820f3d6903fa.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/fa/fad571d200d6232ee119a96b2ae1820f3d6903fa.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/pristine/fc/fc7b3404406776df7852a99657a25fb9feadbc84.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/pristine/fc/fc7b3404406776df7852a99657a25fb9feadbc84.svn-base -------------------------------------------------------------------------------- /src/intersim2/.svn/wc.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/.svn/wc.db -------------------------------------------------------------------------------- /src/intersim2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/Makefile -------------------------------------------------------------------------------- /src/intersim2/allocators/allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/allocators/allocator.cpp -------------------------------------------------------------------------------- /src/intersim2/allocators/allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/allocators/allocator.hpp -------------------------------------------------------------------------------- /src/intersim2/allocators/islip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/allocators/islip.cpp -------------------------------------------------------------------------------- /src/intersim2/allocators/islip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/allocators/islip.hpp -------------------------------------------------------------------------------- /src/intersim2/allocators/loa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/allocators/loa.cpp -------------------------------------------------------------------------------- /src/intersim2/allocators/loa.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/allocators/loa.hpp -------------------------------------------------------------------------------- /src/intersim2/allocators/maxsize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/allocators/maxsize.cpp -------------------------------------------------------------------------------- /src/intersim2/allocators/maxsize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/allocators/maxsize.hpp -------------------------------------------------------------------------------- /src/intersim2/allocators/pim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/allocators/pim.cpp -------------------------------------------------------------------------------- /src/intersim2/allocators/pim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/allocators/pim.hpp -------------------------------------------------------------------------------- /src/intersim2/allocators/selalloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/allocators/selalloc.cpp -------------------------------------------------------------------------------- /src/intersim2/allocators/selalloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/allocators/selalloc.hpp -------------------------------------------------------------------------------- /src/intersim2/allocators/separable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/allocators/separable.cpp -------------------------------------------------------------------------------- /src/intersim2/allocators/separable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/allocators/separable.hpp -------------------------------------------------------------------------------- /src/intersim2/allocators/separable_input_first.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/allocators/separable_input_first.cpp -------------------------------------------------------------------------------- /src/intersim2/allocators/separable_input_first.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/allocators/separable_input_first.hpp -------------------------------------------------------------------------------- /src/intersim2/allocators/separable_output_first.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/allocators/separable_output_first.cpp -------------------------------------------------------------------------------- /src/intersim2/allocators/separable_output_first.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/allocators/separable_output_first.hpp -------------------------------------------------------------------------------- /src/intersim2/allocators/wavefront.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/allocators/wavefront.cpp -------------------------------------------------------------------------------- /src/intersim2/allocators/wavefront.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/allocators/wavefront.hpp -------------------------------------------------------------------------------- /src/intersim2/arbiters/arbiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/arbiters/arbiter.cpp -------------------------------------------------------------------------------- /src/intersim2/arbiters/arbiter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/arbiters/arbiter.hpp -------------------------------------------------------------------------------- /src/intersim2/arbiters/matrix_arb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/arbiters/matrix_arb.cpp -------------------------------------------------------------------------------- /src/intersim2/arbiters/matrix_arb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/arbiters/matrix_arb.hpp -------------------------------------------------------------------------------- /src/intersim2/arbiters/prio_arb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/arbiters/prio_arb.cpp -------------------------------------------------------------------------------- /src/intersim2/arbiters/prio_arb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/arbiters/prio_arb.hpp -------------------------------------------------------------------------------- /src/intersim2/arbiters/roundrobin_arb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/arbiters/roundrobin_arb.cpp -------------------------------------------------------------------------------- /src/intersim2/arbiters/roundrobin_arb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/arbiters/roundrobin_arb.hpp -------------------------------------------------------------------------------- /src/intersim2/arbiters/tree_arb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/arbiters/tree_arb.cpp -------------------------------------------------------------------------------- /src/intersim2/arbiters/tree_arb.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/arbiters/tree_arb.hpp -------------------------------------------------------------------------------- /src/intersim2/batchtrafficmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/batchtrafficmanager.cpp -------------------------------------------------------------------------------- /src/intersim2/batchtrafficmanager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/batchtrafficmanager.hpp -------------------------------------------------------------------------------- /src/intersim2/booksim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/booksim.hpp -------------------------------------------------------------------------------- /src/intersim2/booksim_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/booksim_config.cpp -------------------------------------------------------------------------------- /src/intersim2/booksim_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/booksim_config.hpp -------------------------------------------------------------------------------- /src/intersim2/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/buffer.cpp -------------------------------------------------------------------------------- /src/intersim2/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/buffer.hpp -------------------------------------------------------------------------------- /src/intersim2/buffer_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/buffer_state.cpp -------------------------------------------------------------------------------- /src/intersim2/buffer_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/buffer_state.hpp -------------------------------------------------------------------------------- /src/intersim2/channel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/channel.hpp -------------------------------------------------------------------------------- /src/intersim2/config.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/config.l -------------------------------------------------------------------------------- /src/intersim2/config.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/config.y -------------------------------------------------------------------------------- /src/intersim2/config_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/config_utils.cpp -------------------------------------------------------------------------------- /src/intersim2/config_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/config_utils.hpp -------------------------------------------------------------------------------- /src/intersim2/credit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/credit.cpp -------------------------------------------------------------------------------- /src/intersim2/credit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/credit.hpp -------------------------------------------------------------------------------- /src/intersim2/examples/cmeshconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/examples/cmeshconfig -------------------------------------------------------------------------------- /src/intersim2/examples/dragonflyconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/examples/dragonflyconfig -------------------------------------------------------------------------------- /src/intersim2/examples/fattree_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/examples/fattree_config -------------------------------------------------------------------------------- /src/intersim2/examples/flatflyconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/examples/flatflyconfig -------------------------------------------------------------------------------- /src/intersim2/examples/mesh88_lat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/examples/mesh88_lat -------------------------------------------------------------------------------- /src/intersim2/examples/singleconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/examples/singleconfig -------------------------------------------------------------------------------- /src/intersim2/examples/torus88: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/examples/torus88 -------------------------------------------------------------------------------- /src/intersim2/flit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/flit.cpp -------------------------------------------------------------------------------- /src/intersim2/flit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/flit.hpp -------------------------------------------------------------------------------- /src/intersim2/flitchannel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/flitchannel.cpp -------------------------------------------------------------------------------- /src/intersim2/flitchannel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/flitchannel.hpp -------------------------------------------------------------------------------- /src/intersim2/globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/globals.hpp -------------------------------------------------------------------------------- /src/intersim2/gputrafficmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/gputrafficmanager.cpp -------------------------------------------------------------------------------- /src/intersim2/gputrafficmanager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/gputrafficmanager.hpp -------------------------------------------------------------------------------- /src/intersim2/injection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/injection.cpp -------------------------------------------------------------------------------- /src/intersim2/injection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/injection.hpp -------------------------------------------------------------------------------- /src/intersim2/interconnect_interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/interconnect_interface.cpp -------------------------------------------------------------------------------- /src/intersim2/interconnect_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/interconnect_interface.hpp -------------------------------------------------------------------------------- /src/intersim2/intersim_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/intersim_config.cpp -------------------------------------------------------------------------------- /src/intersim2/intersim_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/intersim_config.hpp -------------------------------------------------------------------------------- /src/intersim2/lex.yy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/lex.yy.c -------------------------------------------------------------------------------- /src/intersim2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/main.cpp -------------------------------------------------------------------------------- /src/intersim2/misc_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/misc_utils.cpp -------------------------------------------------------------------------------- /src/intersim2/misc_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/misc_utils.hpp -------------------------------------------------------------------------------- /src/intersim2/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/module.cpp -------------------------------------------------------------------------------- /src/intersim2/module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/module.hpp -------------------------------------------------------------------------------- /src/intersim2/networks/anynet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/networks/anynet.cpp -------------------------------------------------------------------------------- /src/intersim2/networks/anynet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/networks/anynet.hpp -------------------------------------------------------------------------------- /src/intersim2/networks/cmesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/networks/cmesh.cpp -------------------------------------------------------------------------------- /src/intersim2/networks/cmesh.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/networks/cmesh.hpp -------------------------------------------------------------------------------- /src/intersim2/networks/dragonfly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/networks/dragonfly.cpp -------------------------------------------------------------------------------- /src/intersim2/networks/dragonfly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/networks/dragonfly.hpp -------------------------------------------------------------------------------- /src/intersim2/networks/fattree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/networks/fattree.cpp -------------------------------------------------------------------------------- /src/intersim2/networks/fattree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/networks/fattree.hpp -------------------------------------------------------------------------------- /src/intersim2/networks/flatfly_onchip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/networks/flatfly_onchip.cpp -------------------------------------------------------------------------------- /src/intersim2/networks/flatfly_onchip.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/networks/flatfly_onchip.hpp -------------------------------------------------------------------------------- /src/intersim2/networks/fly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/networks/fly.cpp -------------------------------------------------------------------------------- /src/intersim2/networks/fly.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/networks/fly.hpp -------------------------------------------------------------------------------- /src/intersim2/networks/kncube.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/networks/kncube.cpp -------------------------------------------------------------------------------- /src/intersim2/networks/kncube.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/networks/kncube.hpp -------------------------------------------------------------------------------- /src/intersim2/networks/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/networks/network.cpp -------------------------------------------------------------------------------- /src/intersim2/networks/network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/networks/network.hpp -------------------------------------------------------------------------------- /src/intersim2/networks/qtree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/networks/qtree.cpp -------------------------------------------------------------------------------- /src/intersim2/networks/qtree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/networks/qtree.hpp -------------------------------------------------------------------------------- /src/intersim2/networks/tree4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/networks/tree4.cpp -------------------------------------------------------------------------------- /src/intersim2/networks/tree4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/networks/tree4.hpp -------------------------------------------------------------------------------- /src/intersim2/outputset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/outputset.cpp -------------------------------------------------------------------------------- /src/intersim2/outputset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/outputset.hpp -------------------------------------------------------------------------------- /src/intersim2/packet_reply_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/packet_reply_info.cpp -------------------------------------------------------------------------------- /src/intersim2/packet_reply_info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/packet_reply_info.hpp -------------------------------------------------------------------------------- /src/intersim2/pipefifo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/pipefifo.hpp -------------------------------------------------------------------------------- /src/intersim2/power/buffer_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/power/buffer_monitor.cpp -------------------------------------------------------------------------------- /src/intersim2/power/buffer_monitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/power/buffer_monitor.hpp -------------------------------------------------------------------------------- /src/intersim2/power/power_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/power/power_module.cpp -------------------------------------------------------------------------------- /src/intersim2/power/power_module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/power/power_module.hpp -------------------------------------------------------------------------------- /src/intersim2/power/switch_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/power/switch_monitor.cpp -------------------------------------------------------------------------------- /src/intersim2/power/switch_monitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/power/switch_monitor.hpp -------------------------------------------------------------------------------- /src/intersim2/power/techfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/power/techfile.txt -------------------------------------------------------------------------------- /src/intersim2/random_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/random_utils.hpp -------------------------------------------------------------------------------- /src/intersim2/rng-double.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/rng-double.c -------------------------------------------------------------------------------- /src/intersim2/rng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/rng.c -------------------------------------------------------------------------------- /src/intersim2/rng_double_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/rng_double_wrapper.cpp -------------------------------------------------------------------------------- /src/intersim2/rng_wrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/rng_wrapper.cpp -------------------------------------------------------------------------------- /src/intersim2/routefunc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/routefunc.cpp -------------------------------------------------------------------------------- /src/intersim2/routefunc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/routefunc.hpp -------------------------------------------------------------------------------- /src/intersim2/routers/chaos_router.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/routers/chaos_router.cpp -------------------------------------------------------------------------------- /src/intersim2/routers/chaos_router.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/routers/chaos_router.hpp -------------------------------------------------------------------------------- /src/intersim2/routers/event_router.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/routers/event_router.cpp -------------------------------------------------------------------------------- /src/intersim2/routers/event_router.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/routers/event_router.hpp -------------------------------------------------------------------------------- /src/intersim2/routers/iq_router.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/routers/iq_router.cpp -------------------------------------------------------------------------------- /src/intersim2/routers/iq_router.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/routers/iq_router.hpp -------------------------------------------------------------------------------- /src/intersim2/routers/router.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/routers/router.cpp -------------------------------------------------------------------------------- /src/intersim2/routers/router.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/routers/router.hpp -------------------------------------------------------------------------------- /src/intersim2/stats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/stats.cpp -------------------------------------------------------------------------------- /src/intersim2/stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/stats.hpp -------------------------------------------------------------------------------- /src/intersim2/timed_module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/timed_module.hpp -------------------------------------------------------------------------------- /src/intersim2/traffic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/traffic.cpp -------------------------------------------------------------------------------- /src/intersim2/traffic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/traffic.hpp -------------------------------------------------------------------------------- /src/intersim2/trafficmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/trafficmanager.cpp -------------------------------------------------------------------------------- /src/intersim2/trafficmanager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/trafficmanager.hpp -------------------------------------------------------------------------------- /src/intersim2/vc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/vc.cpp -------------------------------------------------------------------------------- /src/intersim2/vc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/vc.hpp -------------------------------------------------------------------------------- /src/intersim2/y.tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/y.tab.c -------------------------------------------------------------------------------- /src/intersim2/y.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/intersim2/y.tab.h -------------------------------------------------------------------------------- /src/option_parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/option_parser.cc -------------------------------------------------------------------------------- /src/option_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/option_parser.h -------------------------------------------------------------------------------- /src/ramulator/ALDRAM.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/ALDRAM.cc -------------------------------------------------------------------------------- /src/ramulator/ALDRAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/ALDRAM.h -------------------------------------------------------------------------------- /src/ramulator/Cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/Cache.cc -------------------------------------------------------------------------------- /src/ramulator/Cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/Cache.h -------------------------------------------------------------------------------- /src/ramulator/Config.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/Config.cc -------------------------------------------------------------------------------- /src/ramulator/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/Config.h -------------------------------------------------------------------------------- /src/ramulator/Controller.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/Controller.cc -------------------------------------------------------------------------------- /src/ramulator/Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/Controller.h -------------------------------------------------------------------------------- /src/ramulator/DDR3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/DDR3.cc -------------------------------------------------------------------------------- /src/ramulator/DDR3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/DDR3.h -------------------------------------------------------------------------------- /src/ramulator/DDR4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/DDR4.cc -------------------------------------------------------------------------------- /src/ramulator/DDR4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/DDR4.h -------------------------------------------------------------------------------- /src/ramulator/DRAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/DRAM.h -------------------------------------------------------------------------------- /src/ramulator/DSARP.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/DSARP.cc -------------------------------------------------------------------------------- /src/ramulator/DSARP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/DSARP.h -------------------------------------------------------------------------------- /src/ramulator/GDDR5.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/GDDR5.cc -------------------------------------------------------------------------------- /src/ramulator/GDDR5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/GDDR5.h -------------------------------------------------------------------------------- /src/ramulator/GPUwrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/GPUwrapper.cc -------------------------------------------------------------------------------- /src/ramulator/GPUwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/GPUwrapper.h -------------------------------------------------------------------------------- /src/ramulator/HBM.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/HBM.cc -------------------------------------------------------------------------------- /src/ramulator/HBM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/HBM.h -------------------------------------------------------------------------------- /src/ramulator/HMC.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/HMC.cc -------------------------------------------------------------------------------- /src/ramulator/HMC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/HMC.h -------------------------------------------------------------------------------- /src/ramulator/HMC_Controller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/HMC_Controller.h -------------------------------------------------------------------------------- /src/ramulator/HMC_Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/HMC_Memory.h -------------------------------------------------------------------------------- /src/ramulator/LPDDR3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/LPDDR3.cc -------------------------------------------------------------------------------- /src/ramulator/LPDDR3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/LPDDR3.h -------------------------------------------------------------------------------- /src/ramulator/LPDDR4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/LPDDR4.cc -------------------------------------------------------------------------------- /src/ramulator/LPDDR4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/LPDDR4.h -------------------------------------------------------------------------------- /src/ramulator/LogicLayer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/LogicLayer.cc -------------------------------------------------------------------------------- /src/ramulator/LogicLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/LogicLayer.h -------------------------------------------------------------------------------- /src/ramulator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/Makefile -------------------------------------------------------------------------------- /src/ramulator/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/Memory.h -------------------------------------------------------------------------------- /src/ramulator/MemoryFactory.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/MemoryFactory.cc -------------------------------------------------------------------------------- /src/ramulator/MemoryFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/MemoryFactory.h -------------------------------------------------------------------------------- /src/ramulator/Packet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/Packet.cc -------------------------------------------------------------------------------- /src/ramulator/Packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/Packet.h -------------------------------------------------------------------------------- /src/ramulator/Processor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/Processor.cc -------------------------------------------------------------------------------- /src/ramulator/Processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/Processor.h -------------------------------------------------------------------------------- /src/ramulator/Ramulator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/Ramulator.cc -------------------------------------------------------------------------------- /src/ramulator/Ramulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/Ramulator.h -------------------------------------------------------------------------------- /src/ramulator/Refresh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/Refresh.cc -------------------------------------------------------------------------------- /src/ramulator/Refresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/Refresh.h -------------------------------------------------------------------------------- /src/ramulator/Request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/Request.h -------------------------------------------------------------------------------- /src/ramulator/SALP.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/SALP.cc -------------------------------------------------------------------------------- /src/ramulator/SALP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/SALP.h -------------------------------------------------------------------------------- /src/ramulator/Scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/Scheduler.h -------------------------------------------------------------------------------- /src/ramulator/SpeedyController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/SpeedyController.h -------------------------------------------------------------------------------- /src/ramulator/StatType.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/StatType.cc -------------------------------------------------------------------------------- /src/ramulator/StatType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/StatType.h -------------------------------------------------------------------------------- /src/ramulator/Statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/Statistics.h -------------------------------------------------------------------------------- /src/ramulator/TLDRAM.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/TLDRAM.cc -------------------------------------------------------------------------------- /src/ramulator/TLDRAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/TLDRAM.h -------------------------------------------------------------------------------- /src/ramulator/WideIO.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/WideIO.cc -------------------------------------------------------------------------------- /src/ramulator/WideIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/WideIO.h -------------------------------------------------------------------------------- /src/ramulator/WideIO2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/WideIO2.cc -------------------------------------------------------------------------------- /src/ramulator/WideIO2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/ramulator/WideIO2.h -------------------------------------------------------------------------------- /src/statwrapper.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/statwrapper.cc -------------------------------------------------------------------------------- /src/statwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/statwrapper.h -------------------------------------------------------------------------------- /src/stream_manager.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/stream_manager.cc -------------------------------------------------------------------------------- /src/stream_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/stream_manager.h -------------------------------------------------------------------------------- /src/tr1_hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/tr1_hash_map.h -------------------------------------------------------------------------------- /src/trace.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/trace.cc -------------------------------------------------------------------------------- /src/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/trace.h -------------------------------------------------------------------------------- /src/trace_streams.tup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/src/trace_streams.tup -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/version -------------------------------------------------------------------------------- /version_detection.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CMU-SAFARI/GPGPUSim-Ramulator/HEAD/version_detection.mk --------------------------------------------------------------------------------