├── README.md ├── config ├── gpu.json ├── st_setting.json ├── tile.json └── wafer.json ├── dl_graph.py ├── gpu_main.py ├── hardware.py ├── macro.py ├── mapping.py ├── op.py ├── pipeline.py ├── resource.py ├── sim_visualize ├── pipeline │ ├── Dreampipe1F1B_dram_max_req.pdf │ ├── computational_utilization.pdf │ ├── pipeline_06_12_18_47_23.pdf │ └── utilization.pdf └── test_map.pdf ├── simpy_tourial.md ├── tile.py ├── util.py ├── visualize.py └── wafer_main.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/README.md -------------------------------------------------------------------------------- /config/gpu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/config/gpu.json -------------------------------------------------------------------------------- /config/st_setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/config/st_setting.json -------------------------------------------------------------------------------- /config/tile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/config/tile.json -------------------------------------------------------------------------------- /config/wafer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/config/wafer.json -------------------------------------------------------------------------------- /dl_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/dl_graph.py -------------------------------------------------------------------------------- /gpu_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/gpu_main.py -------------------------------------------------------------------------------- /hardware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/hardware.py -------------------------------------------------------------------------------- /macro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/macro.py -------------------------------------------------------------------------------- /mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/mapping.py -------------------------------------------------------------------------------- /op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/op.py -------------------------------------------------------------------------------- /pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/pipeline.py -------------------------------------------------------------------------------- /resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/resource.py -------------------------------------------------------------------------------- /sim_visualize/pipeline/Dreampipe1F1B_dram_max_req.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/sim_visualize/pipeline/Dreampipe1F1B_dram_max_req.pdf -------------------------------------------------------------------------------- /sim_visualize/pipeline/computational_utilization.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/sim_visualize/pipeline/computational_utilization.pdf -------------------------------------------------------------------------------- /sim_visualize/pipeline/pipeline_06_12_18_47_23.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/sim_visualize/pipeline/pipeline_06_12_18_47_23.pdf -------------------------------------------------------------------------------- /sim_visualize/pipeline/utilization.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/sim_visualize/pipeline/utilization.pdf -------------------------------------------------------------------------------- /sim_visualize/test_map.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/sim_visualize/test_map.pdf -------------------------------------------------------------------------------- /simpy_tourial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/simpy_tourial.md -------------------------------------------------------------------------------- /tile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/tile.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/util.py -------------------------------------------------------------------------------- /visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/visualize.py -------------------------------------------------------------------------------- /wafer_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangjh21/PALM/HEAD/wafer_main.py --------------------------------------------------------------------------------