├── .gitignore ├── AutoBridge-FPGA21.pdf ├── LICENSE.md ├── README.md ├── archive ├── benchmarks │ ├── CNN │ │ ├── 13x10 │ │ │ ├── ab_cnn_13x10.py │ │ │ ├── generate_rtl.tcl │ │ │ ├── pack_xo.tcl │ │ │ ├── run_vitis.sh │ │ │ ├── runme.sh │ │ │ └── src │ │ │ │ ├── kernel.c │ │ │ │ ├── kernel.h │ │ │ │ ├── kernel_host.cpp │ │ │ │ ├── kernel_host.hpp │ │ │ │ ├── kernel_kernel.cpp │ │ │ │ ├── kernel_kernel.h │ │ │ │ └── kernel_kernel_new.cpp │ │ ├── 13x12 │ │ │ ├── ab_cnn_13x12.py │ │ │ ├── generate_rtl.tcl │ │ │ ├── pack_xo.tcl │ │ │ ├── run_vitis.sh │ │ │ ├── runme.sh │ │ │ └── src │ │ │ │ ├── kernel.c │ │ │ │ ├── kernel.h │ │ │ │ ├── kernel_host.cpp │ │ │ │ ├── kernel_host.hpp │ │ │ │ ├── kernel_kernel.cpp │ │ │ │ ├── kernel_kernel.h │ │ │ │ └── kernel_kernel_new.cpp │ │ ├── 13x14 │ │ │ ├── ab_cnn_13x14.py │ │ │ ├── generate_rtl.tcl │ │ │ ├── pack_xo.tcl │ │ │ ├── run_vitis.sh │ │ │ ├── runme.sh │ │ │ └── src │ │ │ │ ├── kernel.c │ │ │ │ ├── kernel.h │ │ │ │ ├── kernel_host.cpp │ │ │ │ ├── kernel_host.hpp │ │ │ │ ├── kernel_kernel.cpp │ │ │ │ ├── kernel_kernel.h │ │ │ │ └── kernel_kernel_new.cpp │ │ ├── 13x16 │ │ │ ├── ab_cnn_13x16.py │ │ │ ├── generate_rtl.tcl │ │ │ ├── pack_xo.tcl │ │ │ ├── run_vitis.sh │ │ │ ├── runme.sh │ │ │ └── src │ │ │ │ ├── kernel.c │ │ │ │ ├── kernel.h │ │ │ │ ├── kernel_host.cpp │ │ │ │ ├── kernel_host.hpp │ │ │ │ ├── kernel_kernel.cpp │ │ │ │ ├── kernel_kernel.h │ │ │ │ └── kernel_kernel_new.cpp │ │ ├── 13x2 │ │ │ ├── ab_cnn_13x2.py │ │ │ ├── generate_rtl.tcl │ │ │ ├── pack_xo.tcl │ │ │ ├── run_vitis.sh │ │ │ ├── runme.sh │ │ │ └── src │ │ │ │ ├── kernel.c │ │ │ │ ├── kernel.h │ │ │ │ ├── kernel_host.cpp │ │ │ │ ├── kernel_host.hpp │ │ │ │ ├── kernel_kernel.cpp │ │ │ │ ├── kernel_kernel.h │ │ │ │ └── kernel_kernel_new.cpp │ │ ├── 13x4 │ │ │ ├── ab_cnn_13x4.py │ │ │ ├── generate_rtl.tcl │ │ │ ├── pack_xo.tcl │ │ │ ├── run_vitis.sh │ │ │ ├── runme.sh │ │ │ └── src │ │ │ │ ├── kernel.c │ │ │ │ ├── kernel.h │ │ │ │ ├── kernel_host.cpp │ │ │ │ ├── kernel_host.hpp │ │ │ │ ├── kernel_kernel.cpp │ │ │ │ ├── kernel_kernel.h │ │ │ │ └── kernel_kernel_new.cpp │ │ ├── 13x6 │ │ │ ├── ab_cnn_13x6.py │ │ │ ├── generate_rtl.tcl │ │ │ ├── pack_xo.tcl │ │ │ ├── run_vitis.sh │ │ │ ├── runme.sh │ │ │ └── src │ │ │ │ ├── kernel.c │ │ │ │ ├── kernel.h │ │ │ │ ├── kernel_host.cpp │ │ │ │ ├── kernel_host.hpp │ │ │ │ ├── kernel_kernel.cpp │ │ │ │ ├── kernel_kernel.h │ │ │ │ └── kernel_kernel_new.cpp │ │ └── 13x8 │ │ │ ├── ab_cnn_13x8.py │ │ │ ├── generate_rtl.tcl │ │ │ ├── pack_xo.tcl │ │ │ ├── run_vitis.sh │ │ │ ├── runme.sh │ │ │ └── src │ │ │ ├── kernel.c │ │ │ ├── kernel.h │ │ │ ├── kernel_host.cpp │ │ │ ├── kernel_host.hpp │ │ │ ├── kernel_kernel.cpp │ │ │ ├── kernel_kernel.h │ │ │ └── kernel_kernel_new.cpp │ ├── LUDecomposition │ │ ├── 12x12 │ │ │ ├── src.lu.12 │ │ │ │ ├── kernel.c │ │ │ │ ├── kernel.h │ │ │ │ ├── kernel_host.cpp │ │ │ │ ├── kernel_host.hpp │ │ │ │ ├── kernel_kernel.cpp │ │ │ │ ├── kernel_kernel.h │ │ │ │ ├── kernel_kernel_modules.cpp │ │ │ │ ├── kernel_top_gen.cpp │ │ │ │ ├── kernel_top_gen.h │ │ │ │ ├── top.cpp │ │ │ │ └── top_gen │ │ │ ├── u250 │ │ │ │ ├── ab_u250.py │ │ │ │ ├── generate_rtl.tcl │ │ │ │ ├── pack_xo.tcl │ │ │ │ ├── run_vitis.sh │ │ │ │ ├── runme.sh │ │ │ │ └── src │ │ │ │ │ ├── kernel.c │ │ │ │ │ ├── kernel.h │ │ │ │ │ ├── kernel_host.cpp │ │ │ │ │ ├── kernel_host.hpp │ │ │ │ │ ├── kernel_kernel.cpp │ │ │ │ │ ├── kernel_kernel.h │ │ │ │ │ ├── kernel_kernel_modules.cpp │ │ │ │ │ ├── kernel_top_gen.cpp │ │ │ │ │ ├── kernel_top_gen.h │ │ │ │ │ ├── top.cpp │ │ │ │ │ └── top_gen │ │ │ └── u280 │ │ │ │ ├── ab_u280.py │ │ │ │ ├── generate_rtl.tcl │ │ │ │ ├── pack_xo.tcl │ │ │ │ ├── run_vitis.sh │ │ │ │ ├── runme.sh │ │ │ │ └── src │ │ │ │ ├── kernel.c │ │ │ │ ├── kernel.h │ │ │ │ ├── kernel_host.cpp │ │ │ │ ├── kernel_host.hpp │ │ │ │ ├── kernel_kernel.cpp │ │ │ │ ├── kernel_kernel.h │ │ │ │ ├── kernel_kernel_modules.cpp │ │ │ │ ├── kernel_top_gen.cpp │ │ │ │ ├── kernel_top_gen.h │ │ │ │ ├── top.cpp │ │ │ │ └── top_gen │ │ ├── 16x16 │ │ │ ├── src.lu.16 │ │ │ │ ├── kernel.c │ │ │ │ ├── kernel.h │ │ │ │ ├── kernel_host.cpp │ │ │ │ ├── kernel_host.hpp │ │ │ │ ├── kernel_kernel.cpp │ │ │ │ ├── kernel_kernel.h │ │ │ │ ├── kernel_kernel_modules.cpp │ │ │ │ ├── kernel_top_gen.cpp │ │ │ │ ├── kernel_top_gen.h │ │ │ │ ├── top.cpp │ │ │ │ └── top_gen │ │ │ ├── u250 │ │ │ │ ├── ab_u250.py │ │ │ │ ├── generate_rtl.tcl │ │ │ │ ├── pack_xo.tcl │ │ │ │ ├── run_vitis.sh │ │ │ │ ├── runme.sh │ │ │ │ └── src │ │ │ │ │ ├── kernel.c │ │ │ │ │ ├── kernel.h │ │ │ │ │ ├── kernel_host.cpp │ │ │ │ │ ├── kernel_host.hpp │ │ │ │ │ ├── kernel_kernel.cpp │ │ │ │ │ ├── kernel_kernel.h │ │ │ │ │ ├── kernel_kernel_modules.cpp │ │ │ │ │ ├── kernel_top_gen.cpp │ │ │ │ │ ├── kernel_top_gen.h │ │ │ │ │ ├── top.cpp │ │ │ │ │ └── top_gen │ │ │ └── u280 │ │ │ │ ├── ab_u280.py │ │ │ │ ├── generate_rtl.tcl │ │ │ │ ├── pack_xo.tcl │ │ │ │ ├── run_vitis.sh │ │ │ │ ├── runme.sh │ │ │ │ └── src │ │ │ │ ├── kernel.c │ │ │ │ ├── kernel.h │ │ │ │ ├── kernel_host.cpp │ │ │ │ ├── kernel_host.hpp │ │ │ │ ├── kernel_kernel.cpp │ │ │ │ ├── kernel_kernel.h │ │ │ │ ├── kernel_kernel_modules.cpp │ │ │ │ ├── kernel_top_gen.cpp │ │ │ │ ├── kernel_top_gen.h │ │ │ │ ├── top.cpp │ │ │ │ └── top_gen │ │ ├── 20x20 │ │ │ ├── src.lu.20 │ │ │ │ ├── kernel.c │ │ │ │ ├── kernel.h │ │ │ │ ├── kernel_host.cpp │ │ │ │ ├── kernel_host.hpp │ │ │ │ ├── kernel_kernel.cpp │ │ │ │ ├── kernel_kernel.h │ │ │ │ ├── kernel_kernel_modules.cpp │ │ │ │ ├── kernel_top_gen.cpp │ │ │ │ ├── kernel_top_gen.h │ │ │ │ ├── top.cpp │ │ │ │ └── top_gen │ │ │ ├── u250 │ │ │ │ ├── ab_u250.py │ │ │ │ ├── generate_rtl.tcl │ │ │ │ ├── pack_xo.tcl │ │ │ │ ├── run_vitis.sh │ │ │ │ ├── runme.sh │ │ │ │ └── src │ │ │ │ │ ├── kernel.c │ │ │ │ │ ├── kernel.h │ │ │ │ │ ├── kernel_host.cpp │ │ │ │ │ ├── kernel_host.hpp │ │ │ │ │ ├── kernel_kernel.cpp │ │ │ │ │ ├── kernel_kernel.h │ │ │ │ │ ├── kernel_kernel_modules.cpp │ │ │ │ │ ├── kernel_top_gen.cpp │ │ │ │ │ ├── kernel_top_gen.h │ │ │ │ │ ├── top.cpp │ │ │ │ │ └── top_gen │ │ │ └── u280 │ │ │ │ ├── ab_u280.py │ │ │ │ ├── generate_rtl.tcl │ │ │ │ ├── pack_xo.tcl │ │ │ │ ├── run_vitis.sh │ │ │ │ ├── runme.sh │ │ │ │ └── src │ │ │ │ ├── kernel.c │ │ │ │ ├── kernel.h │ │ │ │ ├── kernel_host.cpp │ │ │ │ ├── kernel_host.hpp │ │ │ │ ├── kernel_kernel.cpp │ │ │ │ ├── kernel_kernel.h │ │ │ │ ├── kernel_kernel_modules.cpp │ │ │ │ ├── kernel_top_gen.cpp │ │ │ │ ├── kernel_top_gen.h │ │ │ │ ├── top.cpp │ │ │ │ └── top_gen │ │ └── 24x24 │ │ │ ├── src │ │ │ ├── kernel.c │ │ │ ├── kernel.h │ │ │ ├── kernel_host.cpp │ │ │ ├── kernel_host.hpp │ │ │ ├── kernel_kernel.cpp │ │ │ ├── kernel_kernel.h │ │ │ ├── kernel_kernel_modules.cpp │ │ │ ├── kernel_top_gen.cpp │ │ │ ├── kernel_top_gen.h │ │ │ ├── top.cpp │ │ │ └── top_gen │ │ │ ├── u250 │ │ │ ├── ab_u250.py │ │ │ ├── generate_rtl.tcl │ │ │ ├── pack_xo.tcl │ │ │ ├── run_vitis.sh │ │ │ ├── runme.sh │ │ │ └── src │ │ │ │ ├── kernel.c │ │ │ │ ├── kernel.h │ │ │ │ ├── kernel_host.cpp │ │ │ │ ├── kernel_host.hpp │ │ │ │ ├── kernel_kernel.cpp │ │ │ │ ├── kernel_kernel.h │ │ │ │ ├── kernel_kernel_modules.cpp │ │ │ │ ├── kernel_top_gen.cpp │ │ │ │ ├── kernel_top_gen.h │ │ │ │ ├── top.cpp │ │ │ │ └── top_gen │ │ │ └── u280 │ │ │ ├── ab_u280.py │ │ │ ├── generate_rtl.tcl │ │ │ ├── pack_xo.tcl │ │ │ ├── run_vitis.sh │ │ │ ├── runme.sh │ │ │ └── src │ │ │ ├── kernel.c │ │ │ ├── kernel.h │ │ │ ├── kernel_host.cpp │ │ │ ├── kernel_host.hpp │ │ │ ├── kernel_kernel.cpp │ │ │ ├── kernel_kernel.h │ │ │ ├── kernel_kernel_modules.cpp │ │ │ ├── kernel_top_gen.cpp │ │ │ ├── kernel_top_gen.h │ │ │ ├── top.cpp │ │ │ └── top_gen │ ├── PageRank │ │ ├── PageRank_FP1.xo │ │ ├── README.md │ │ ├── ab_pagerank_u280.py │ │ ├── constraint_ref.tcl │ │ ├── run_autobridge.sh │ │ ├── run_vitis.sh │ │ ├── runme.sh │ │ ├── tapa_result │ │ │ ├── cpp │ │ │ │ ├── Control.cpp │ │ │ │ ├── EdgeMem.cpp │ │ │ │ ├── PageRank.cpp │ │ │ │ ├── ProcElem.cpp │ │ │ │ ├── UpdateHandler.cpp │ │ │ │ ├── UpdateMem.cpp │ │ │ │ ├── VertexMem.cpp │ │ │ │ ├── VertexRouterR1.cpp │ │ │ │ ├── VertexRouterR2.cpp │ │ │ │ ├── page-rank-kernel.h │ │ │ │ └── page-rank.h │ │ │ ├── hdl │ │ │ │ ├── Control_Control_ap_fdiv_8_no_dsp_32_ip.tcl │ │ │ │ ├── Control_Control_ap_uitofp_2_no_dsp_32_ip.tcl │ │ │ │ ├── ProcElem_ProcElem_ap_fadd_2_no_dsp_32_ip.tcl │ │ │ │ ├── ProcElem_ProcElem_ap_fadd_3_full_dsp_32_ip.tcl │ │ │ │ ├── ProcElem_ProcElem_ap_fcmp_0_no_dsp_32_ip.tcl │ │ │ │ ├── ProcElem_ProcElem_ap_fmul_2_max_dsp_32_ip.tcl │ │ │ │ └── ProcElem_ProcElem_ap_fsub_3_full_dsp_32_ip.tcl │ │ │ ├── program.json │ │ │ ├── report │ │ │ │ ├── Control.sched.adb.xml │ │ │ │ ├── Control.verbose.sched.rpt │ │ │ │ ├── Control.verbose.sched.rpt.xml │ │ │ │ ├── Control_csynth.rpt │ │ │ │ ├── Control_csynth.xml │ │ │ │ ├── EdgeMem.sched.adb.xml │ │ │ │ ├── EdgeMem.verbose.sched.rpt │ │ │ │ ├── EdgeMem.verbose.sched.rpt.xml │ │ │ │ ├── EdgeMem_csynth.rpt │ │ │ │ ├── EdgeMem_csynth.xml │ │ │ │ ├── PageRank.sched.adb.xml │ │ │ │ ├── PageRank.verbose.sched.rpt │ │ │ │ ├── PageRank.verbose.sched.rpt.xml │ │ │ │ ├── PageRank_csynth.rpt │ │ │ │ ├── PageRank_csynth.xml │ │ │ │ ├── ProcElem.sched.adb.xml │ │ │ │ ├── ProcElem.verbose.sched.rpt │ │ │ │ ├── ProcElem.verbose.sched.rpt.xml │ │ │ │ ├── ProcElem_csynth.rpt │ │ │ │ ├── ProcElem_csynth.xml │ │ │ │ ├── UpdateHandler.sched.adb.xml │ │ │ │ ├── UpdateHandler.verbose.sched.rpt │ │ │ │ ├── UpdateHandler.verbose.sched.rpt.xml │ │ │ │ ├── UpdateHandler_csynth.rpt │ │ │ │ ├── UpdateHandler_csynth.xml │ │ │ │ ├── UpdateMem.sched.adb.xml │ │ │ │ ├── UpdateMem.verbose.sched.rpt │ │ │ │ ├── UpdateMem.verbose.sched.rpt.xml │ │ │ │ ├── UpdateMem_csynth.rpt │ │ │ │ ├── UpdateMem_csynth.xml │ │ │ │ ├── VertexMem.sched.adb.xml │ │ │ │ ├── VertexMem.verbose.sched.rpt │ │ │ │ ├── VertexMem.verbose.sched.rpt.xml │ │ │ │ ├── VertexMem_csynth.rpt │ │ │ │ ├── VertexMem_csynth.xml │ │ │ │ ├── VertexRouterR1.sched.adb.xml │ │ │ │ ├── VertexRouterR1.verbose.sched.rpt │ │ │ │ ├── VertexRouterR1.verbose.sched.rpt.xml │ │ │ │ ├── VertexRouterR1_csynth.rpt │ │ │ │ ├── VertexRouterR1_csynth.xml │ │ │ │ ├── VertexRouterR2.sched.adb.xml │ │ │ │ ├── VertexRouterR2.verbose.sched.rpt │ │ │ │ ├── VertexRouterR2.verbose.sched.rpt.xml │ │ │ │ ├── VertexRouterR2_csynth.rpt │ │ │ │ ├── VertexRouterR2_csynth.xml │ │ │ │ ├── csynth.xml │ │ │ │ ├── reg_VertexReq_s.sched.adb.xml │ │ │ │ ├── reg_VertexReq_s.verbose.sched.rpt │ │ │ │ ├── reg_VertexReq_s.verbose.sched.rpt.xml │ │ │ │ ├── reg_VertexReq_s_csynth.rpt │ │ │ │ ├── reg_VertexReq_s_csynth.xml │ │ │ │ ├── reg_float_s.sched.adb.xml │ │ │ │ ├── reg_float_s.verbose.sched.rpt │ │ │ │ ├── reg_float_s.verbose.sched.rpt.xml │ │ │ │ ├── reg_float_s_csynth.rpt │ │ │ │ └── reg_float_s_csynth.xml │ │ │ └── tar │ │ │ │ ├── Control.tar │ │ │ │ ├── EdgeMem.tar │ │ │ │ ├── PageRank.tar │ │ │ │ ├── ProcElem.tar │ │ │ │ ├── UpdateHandler.tar │ │ │ │ ├── UpdateMem.tar │ │ │ │ ├── VertexMem.tar │ │ │ │ ├── VertexRouterR1.tar │ │ │ │ └── VertexRouterR2.tar │ │ └── tapa_src │ │ │ ├── cpp │ │ │ ├── Control.cpp │ │ │ ├── EdgeMem.cpp │ │ │ ├── PageRank.cpp │ │ │ ├── ProcElem.cpp │ │ │ ├── UpdateHandler.cpp │ │ │ ├── UpdateMem.cpp │ │ │ ├── VertexMem.cpp │ │ │ ├── VertexRouterR1.cpp │ │ │ ├── VertexRouterR2.cpp │ │ │ ├── page-rank-kernel.h │ │ │ └── page-rank.h │ │ │ ├── hdl │ │ │ ├── Control_Control_ap_fdiv_8_no_dsp_32_ip.tcl │ │ │ ├── Control_Control_ap_uitofp_2_no_dsp_32_ip.tcl │ │ │ ├── ProcElem_ProcElem_ap_fadd_2_no_dsp_32_ip.tcl │ │ │ ├── ProcElem_ProcElem_ap_fadd_3_full_dsp_32_ip.tcl │ │ │ ├── ProcElem_ProcElem_ap_fcmp_0_no_dsp_32_ip.tcl │ │ │ ├── ProcElem_ProcElem_ap_fmul_2_max_dsp_32_ip.tcl │ │ │ └── ProcElem_ProcElem_ap_fsub_3_full_dsp_32_ip.tcl │ │ │ ├── program.json │ │ │ ├── report │ │ │ ├── Control.sched.adb.xml │ │ │ ├── Control.verbose.sched.rpt │ │ │ ├── Control.verbose.sched.rpt.xml │ │ │ ├── Control_csynth.rpt │ │ │ ├── Control_csynth.xml │ │ │ ├── EdgeMem.sched.adb.xml │ │ │ ├── EdgeMem.verbose.sched.rpt │ │ │ ├── EdgeMem.verbose.sched.rpt.xml │ │ │ ├── EdgeMem_csynth.rpt │ │ │ ├── EdgeMem_csynth.xml │ │ │ ├── PageRank.sched.adb.xml │ │ │ ├── PageRank.verbose.sched.rpt │ │ │ ├── PageRank.verbose.sched.rpt.xml │ │ │ ├── PageRank_csynth.rpt │ │ │ ├── PageRank_csynth.xml │ │ │ ├── ProcElem.sched.adb.xml │ │ │ ├── ProcElem.verbose.sched.rpt │ │ │ ├── ProcElem.verbose.sched.rpt.xml │ │ │ ├── ProcElem_csynth.rpt │ │ │ ├── ProcElem_csynth.xml │ │ │ ├── UpdateHandler.sched.adb.xml │ │ │ ├── UpdateHandler.verbose.sched.rpt │ │ │ ├── UpdateHandler.verbose.sched.rpt.xml │ │ │ ├── UpdateHandler_csynth.rpt │ │ │ ├── UpdateHandler_csynth.xml │ │ │ ├── UpdateMem.sched.adb.xml │ │ │ ├── UpdateMem.verbose.sched.rpt │ │ │ ├── UpdateMem.verbose.sched.rpt.xml │ │ │ ├── UpdateMem_csynth.rpt │ │ │ ├── UpdateMem_csynth.xml │ │ │ ├── VertexMem.sched.adb.xml │ │ │ ├── VertexMem.verbose.sched.rpt │ │ │ ├── VertexMem.verbose.sched.rpt.xml │ │ │ ├── VertexMem_csynth.rpt │ │ │ ├── VertexMem_csynth.xml │ │ │ ├── VertexRouterR1.sched.adb.xml │ │ │ ├── VertexRouterR1.verbose.sched.rpt │ │ │ ├── VertexRouterR1.verbose.sched.rpt.xml │ │ │ ├── VertexRouterR1_csynth.rpt │ │ │ ├── VertexRouterR1_csynth.xml │ │ │ ├── VertexRouterR2.sched.adb.xml │ │ │ ├── VertexRouterR2.verbose.sched.rpt │ │ │ ├── VertexRouterR2.verbose.sched.rpt.xml │ │ │ ├── VertexRouterR2_csynth.rpt │ │ │ ├── VertexRouterR2_csynth.xml │ │ │ ├── csynth.xml │ │ │ ├── reg_VertexReq_s.sched.adb.xml │ │ │ ├── reg_VertexReq_s.verbose.sched.rpt │ │ │ ├── reg_VertexReq_s.verbose.sched.rpt.xml │ │ │ ├── reg_VertexReq_s_csynth.rpt │ │ │ ├── reg_VertexReq_s_csynth.xml │ │ │ ├── reg_float_s.sched.adb.xml │ │ │ ├── reg_float_s.verbose.sched.rpt │ │ │ ├── reg_float_s.verbose.sched.rpt.xml │ │ │ ├── reg_float_s_csynth.rpt │ │ │ └── reg_float_s_csynth.xml │ │ │ └── tar │ │ │ ├── Control.tar │ │ │ ├── EdgeMem.tar │ │ │ ├── PageRank.tar │ │ │ ├── ProcElem.tar │ │ │ ├── UpdateHandler.tar │ │ │ ├── UpdateMem.tar │ │ │ ├── VertexMem.tar │ │ │ ├── VertexRouterR1.tar │ │ │ └── VertexRouterR2.tar │ ├── README.md │ └── Stencil │ │ ├── 1PE │ │ ├── ab_stencil_1pe.py │ │ ├── constraint_ref.tcl │ │ ├── run_vitis.sh │ │ ├── runme.sh │ │ ├── soda_autobridge.py │ │ ├── soda_jacobi2d_iter1.xo │ │ ├── tapa_result │ │ │ ├── cpp │ │ │ │ ├── ap_common.h │ │ │ │ ├── ap_decl.h │ │ │ │ ├── ap_fixed.h │ │ │ │ ├── ap_fixed_base.h │ │ │ │ ├── ap_fixed_ref.h │ │ │ │ ├── ap_fixed_special.h │ │ │ │ ├── ap_int.h │ │ │ │ ├── ap_int_base.h │ │ │ │ ├── ap_int_ref.h │ │ │ │ ├── ap_int_special.h │ │ │ │ ├── compute.cpp │ │ │ │ ├── etc │ │ │ │ │ └── ap_private.h │ │ │ │ ├── floating_point_v7_0_bitacc_cmodel.h │ │ │ │ ├── gmp.h │ │ │ │ ├── hls_fpo.h │ │ │ │ ├── hls_half.h │ │ │ │ ├── jacobi2d_kernel.cpp │ │ │ │ ├── load.cpp │ │ │ │ ├── mpfr.h │ │ │ │ └── store.cpp │ │ │ ├── hdl │ │ │ │ ├── compute_compute_ap_fadd_5_full_dsp_32_ip.tcl │ │ │ │ └── compute_compute_ap_fmul_2_max_dsp_32_ip.tcl │ │ │ ├── program.json │ │ │ ├── report │ │ │ │ ├── compute.sched.adb.xml │ │ │ │ ├── compute.verbose.sched.rpt │ │ │ │ ├── compute.verbose.sched.rpt.xml │ │ │ │ ├── compute_csynth.rpt │ │ │ │ ├── compute_csynth.xml │ │ │ │ ├── csynth.xml │ │ │ │ ├── jacobi2d_kernel.sched.adb.xml │ │ │ │ ├── jacobi2d_kernel.verbose.sched.rpt │ │ │ │ ├── jacobi2d_kernel.verbose.sched.rpt.xml │ │ │ │ ├── jacobi2d_kernel_csynth.rpt │ │ │ │ ├── jacobi2d_kernel_csynth.xml │ │ │ │ ├── load.sched.adb.xml │ │ │ │ ├── load.verbose.sched.rpt │ │ │ │ ├── load.verbose.sched.rpt.xml │ │ │ │ ├── load_csynth.rpt │ │ │ │ ├── load_csynth.xml │ │ │ │ ├── store.sched.adb.xml │ │ │ │ ├── store.verbose.sched.rpt │ │ │ │ ├── store.verbose.sched.rpt.xml │ │ │ │ ├── store_csynth.rpt │ │ │ │ └── store_csynth.xml │ │ │ └── tar │ │ │ │ ├── compute.tar │ │ │ │ ├── jacobi2d_kernel.tar │ │ │ │ ├── load.tar │ │ │ │ └── store.tar │ │ └── tapa_src │ │ │ └── jacobi2d_tlp.cpp │ │ ├── 2PE │ │ ├── ab_stencil_2pe.py │ │ ├── constraint_ref.tcl │ │ ├── run_vitis.sh │ │ ├── runme.sh │ │ ├── soda_autobridge.py │ │ ├── soda_jacobi2d_iter2.xo │ │ ├── tapa_result │ │ │ ├── cpp │ │ │ │ ├── ap_common.h │ │ │ │ ├── ap_decl.h │ │ │ │ ├── ap_fixed.h │ │ │ │ ├── ap_fixed_base.h │ │ │ │ ├── ap_fixed_ref.h │ │ │ │ ├── ap_fixed_special.h │ │ │ │ ├── ap_int.h │ │ │ │ ├── ap_int_base.h │ │ │ │ ├── ap_int_ref.h │ │ │ │ ├── ap_int_special.h │ │ │ │ ├── compute.cpp │ │ │ │ ├── etc │ │ │ │ │ └── ap_private.h │ │ │ │ ├── floating_point_v7_0_bitacc_cmodel.h │ │ │ │ ├── gmp.h │ │ │ │ ├── hls_fpo.h │ │ │ │ ├── hls_half.h │ │ │ │ ├── jacobi2d_kernel.cpp │ │ │ │ ├── load.cpp │ │ │ │ ├── mpfr.h │ │ │ │ └── store.cpp │ │ │ ├── hdl │ │ │ │ ├── compute_compute_ap_fadd_5_full_dsp_32_ip.tcl │ │ │ │ └── compute_compute_ap_fmul_2_max_dsp_32_ip.tcl │ │ │ ├── program.json │ │ │ ├── report │ │ │ │ ├── compute.sched.adb.xml │ │ │ │ ├── compute.verbose.sched.rpt │ │ │ │ ├── compute.verbose.sched.rpt.xml │ │ │ │ ├── compute_csynth.rpt │ │ │ │ ├── compute_csynth.xml │ │ │ │ ├── csynth.xml │ │ │ │ ├── jacobi2d_kernel.sched.adb.xml │ │ │ │ ├── jacobi2d_kernel.verbose.sched.rpt │ │ │ │ ├── jacobi2d_kernel.verbose.sched.rpt.xml │ │ │ │ ├── jacobi2d_kernel_csynth.rpt │ │ │ │ ├── jacobi2d_kernel_csynth.xml │ │ │ │ ├── load.sched.adb.xml │ │ │ │ ├── load.verbose.sched.rpt │ │ │ │ ├── load.verbose.sched.rpt.xml │ │ │ │ ├── load_csynth.rpt │ │ │ │ ├── load_csynth.xml │ │ │ │ ├── store.sched.adb.xml │ │ │ │ ├── store.verbose.sched.rpt │ │ │ │ ├── store.verbose.sched.rpt.xml │ │ │ │ ├── store_csynth.rpt │ │ │ │ └── store_csynth.xml │ │ │ └── tar │ │ │ │ ├── compute.tar │ │ │ │ ├── jacobi2d_kernel.tar │ │ │ │ ├── load.tar │ │ │ │ └── store.tar │ │ └── tapa_src │ │ │ └── jacobi2d_tlp.cpp │ │ ├── 3PE │ │ ├── ab_stencil_3pe.py │ │ ├── constraint_ref.tcl │ │ ├── run_vitis.sh │ │ ├── runme.sh │ │ ├── soda_autobridge.py │ │ ├── soda_jacobi2d_iter3.xo │ │ ├── tapa_result │ │ │ ├── cpp │ │ │ │ ├── ap_common.h │ │ │ │ ├── ap_decl.h │ │ │ │ ├── ap_fixed.h │ │ │ │ ├── ap_fixed_base.h │ │ │ │ ├── ap_fixed_ref.h │ │ │ │ ├── ap_fixed_special.h │ │ │ │ ├── ap_int.h │ │ │ │ ├── ap_int_base.h │ │ │ │ ├── ap_int_ref.h │ │ │ │ ├── ap_int_special.h │ │ │ │ ├── compute.cpp │ │ │ │ ├── etc │ │ │ │ │ └── ap_private.h │ │ │ │ ├── floating_point_v7_0_bitacc_cmodel.h │ │ │ │ ├── gmp.h │ │ │ │ ├── hls_fpo.h │ │ │ │ ├── hls_half.h │ │ │ │ ├── jacobi2d_kernel.cpp │ │ │ │ ├── load.cpp │ │ │ │ ├── mpfr.h │ │ │ │ └── store.cpp │ │ │ ├── hdl │ │ │ │ ├── compute_compute_ap_fadd_5_full_dsp_32_ip.tcl │ │ │ │ └── compute_compute_ap_fmul_2_max_dsp_32_ip.tcl │ │ │ ├── program.json │ │ │ ├── report │ │ │ │ ├── compute.sched.adb.xml │ │ │ │ ├── compute.verbose.sched.rpt │ │ │ │ ├── compute.verbose.sched.rpt.xml │ │ │ │ ├── compute_csynth.rpt │ │ │ │ ├── compute_csynth.xml │ │ │ │ ├── csynth.xml │ │ │ │ ├── jacobi2d_kernel.sched.adb.xml │ │ │ │ ├── jacobi2d_kernel.verbose.sched.rpt │ │ │ │ ├── jacobi2d_kernel.verbose.sched.rpt.xml │ │ │ │ ├── jacobi2d_kernel_csynth.rpt │ │ │ │ ├── jacobi2d_kernel_csynth.xml │ │ │ │ ├── load.sched.adb.xml │ │ │ │ ├── load.verbose.sched.rpt │ │ │ │ ├── load.verbose.sched.rpt.xml │ │ │ │ ├── load_csynth.rpt │ │ │ │ ├── load_csynth.xml │ │ │ │ ├── store.sched.adb.xml │ │ │ │ ├── store.verbose.sched.rpt │ │ │ │ ├── store.verbose.sched.rpt.xml │ │ │ │ ├── store_csynth.rpt │ │ │ │ └── store_csynth.xml │ │ │ └── tar │ │ │ │ ├── compute.tar │ │ │ │ ├── jacobi2d_kernel.tar │ │ │ │ ├── load.tar │ │ │ │ └── store.tar │ │ └── tapa_src │ │ │ └── jacobi2d_tlp.cpp │ │ ├── 4PE │ │ ├── ab_stencil_4pe.py │ │ ├── constraint_ref.tcl │ │ ├── run_vitis.sh │ │ ├── runme.sh │ │ ├── soda_autobridge.py │ │ ├── soda_jacobi2d_iter4.xo │ │ ├── tapa_result │ │ │ ├── cpp │ │ │ │ ├── ap_common.h │ │ │ │ ├── ap_decl.h │ │ │ │ ├── ap_fixed.h │ │ │ │ ├── ap_fixed_base.h │ │ │ │ ├── ap_fixed_ref.h │ │ │ │ ├── ap_fixed_special.h │ │ │ │ ├── ap_int.h │ │ │ │ ├── ap_int_base.h │ │ │ │ ├── ap_int_ref.h │ │ │ │ ├── ap_int_special.h │ │ │ │ ├── compute.cpp │ │ │ │ ├── etc │ │ │ │ │ └── ap_private.h │ │ │ │ ├── floating_point_v7_0_bitacc_cmodel.h │ │ │ │ ├── gmp.h │ │ │ │ ├── hls_fpo.h │ │ │ │ ├── hls_half.h │ │ │ │ ├── jacobi2d_kernel.cpp │ │ │ │ ├── load.cpp │ │ │ │ ├── mpfr.h │ │ │ │ └── store.cpp │ │ │ ├── hdl │ │ │ │ ├── compute_compute_ap_fadd_5_full_dsp_32_ip.tcl │ │ │ │ └── compute_compute_ap_fmul_2_max_dsp_32_ip.tcl │ │ │ ├── program.json │ │ │ ├── report │ │ │ │ ├── compute.sched.adb.xml │ │ │ │ ├── compute.verbose.sched.rpt │ │ │ │ ├── compute.verbose.sched.rpt.xml │ │ │ │ ├── compute_csynth.rpt │ │ │ │ ├── compute_csynth.xml │ │ │ │ ├── csynth.xml │ │ │ │ ├── jacobi2d_kernel.sched.adb.xml │ │ │ │ ├── jacobi2d_kernel.verbose.sched.rpt │ │ │ │ ├── jacobi2d_kernel.verbose.sched.rpt.xml │ │ │ │ ├── jacobi2d_kernel_csynth.rpt │ │ │ │ ├── jacobi2d_kernel_csynth.xml │ │ │ │ ├── load.sched.adb.xml │ │ │ │ ├── load.verbose.sched.rpt │ │ │ │ ├── load.verbose.sched.rpt.xml │ │ │ │ ├── load_csynth.rpt │ │ │ │ ├── load_csynth.xml │ │ │ │ ├── store.sched.adb.xml │ │ │ │ ├── store.verbose.sched.rpt │ │ │ │ ├── store.verbose.sched.rpt.xml │ │ │ │ ├── store_csynth.rpt │ │ │ │ └── store_csynth.xml │ │ │ └── tar │ │ │ │ ├── compute.tar │ │ │ │ ├── jacobi2d_kernel.tar │ │ │ │ ├── load.tar │ │ │ │ └── store.tar │ │ └── tapa_src │ │ │ └── jacobi2d_tlp.cpp │ │ ├── 5PE │ │ ├── ab_stencil_5pe.py │ │ ├── constraint_ref.tcl │ │ ├── run_vitis.sh │ │ ├── runme.sh │ │ ├── soda_autobridge.py │ │ ├── soda_jacobi2d_iter5.xo │ │ ├── tapa_result │ │ │ ├── cpp │ │ │ │ ├── ap_common.h │ │ │ │ ├── ap_decl.h │ │ │ │ ├── ap_fixed.h │ │ │ │ ├── ap_fixed_base.h │ │ │ │ ├── ap_fixed_ref.h │ │ │ │ ├── ap_fixed_special.h │ │ │ │ ├── ap_int.h │ │ │ │ ├── ap_int_base.h │ │ │ │ ├── ap_int_ref.h │ │ │ │ ├── ap_int_special.h │ │ │ │ ├── compute.cpp │ │ │ │ ├── etc │ │ │ │ │ └── ap_private.h │ │ │ │ ├── floating_point_v7_0_bitacc_cmodel.h │ │ │ │ ├── gmp.h │ │ │ │ ├── hls_fpo.h │ │ │ │ ├── hls_half.h │ │ │ │ ├── jacobi2d_kernel.cpp │ │ │ │ ├── load.cpp │ │ │ │ ├── mpfr.h │ │ │ │ └── store.cpp │ │ │ ├── hdl │ │ │ │ ├── compute_compute_ap_fadd_5_full_dsp_32_ip.tcl │ │ │ │ └── compute_compute_ap_fmul_2_max_dsp_32_ip.tcl │ │ │ ├── program.json │ │ │ ├── report │ │ │ │ ├── compute.sched.adb.xml │ │ │ │ ├── compute.verbose.sched.rpt │ │ │ │ ├── compute.verbose.sched.rpt.xml │ │ │ │ ├── compute_csynth.rpt │ │ │ │ ├── compute_csynth.xml │ │ │ │ ├── csynth.xml │ │ │ │ ├── jacobi2d_kernel.sched.adb.xml │ │ │ │ ├── jacobi2d_kernel.verbose.sched.rpt │ │ │ │ ├── jacobi2d_kernel.verbose.sched.rpt.xml │ │ │ │ ├── jacobi2d_kernel_csynth.rpt │ │ │ │ ├── jacobi2d_kernel_csynth.xml │ │ │ │ ├── load.sched.adb.xml │ │ │ │ ├── load.verbose.sched.rpt │ │ │ │ ├── load.verbose.sched.rpt.xml │ │ │ │ ├── load_csynth.rpt │ │ │ │ ├── load_csynth.xml │ │ │ │ ├── store.sched.adb.xml │ │ │ │ ├── store.verbose.sched.rpt │ │ │ │ ├── store.verbose.sched.rpt.xml │ │ │ │ ├── store_csynth.rpt │ │ │ │ └── store_csynth.xml │ │ │ └── tar │ │ │ │ ├── compute.tar │ │ │ │ ├── jacobi2d_kernel.tar │ │ │ │ ├── load.tar │ │ │ │ └── store.tar │ │ └── tapa_src │ │ │ └── jacobi2d_tlp.cpp │ │ ├── 6PE │ │ ├── ab_stencil_6pe.py │ │ ├── constraint_ref.tcl │ │ ├── run_vitis.sh │ │ ├── runme.sh │ │ ├── soda_autobridge.py │ │ ├── soda_jacobi2d_iter6.xo │ │ ├── tapa_result │ │ │ ├── cpp │ │ │ │ ├── ap_common.h │ │ │ │ ├── ap_decl.h │ │ │ │ ├── ap_fixed.h │ │ │ │ ├── ap_fixed_base.h │ │ │ │ ├── ap_fixed_ref.h │ │ │ │ ├── ap_fixed_special.h │ │ │ │ ├── ap_int.h │ │ │ │ ├── ap_int_base.h │ │ │ │ ├── ap_int_ref.h │ │ │ │ ├── ap_int_special.h │ │ │ │ ├── compute.cpp │ │ │ │ ├── etc │ │ │ │ │ └── ap_private.h │ │ │ │ ├── floating_point_v7_0_bitacc_cmodel.h │ │ │ │ ├── gmp.h │ │ │ │ ├── hls_fpo.h │ │ │ │ ├── hls_half.h │ │ │ │ ├── jacobi2d_kernel.cpp │ │ │ │ ├── load.cpp │ │ │ │ ├── mpfr.h │ │ │ │ └── store.cpp │ │ │ ├── hdl │ │ │ │ ├── compute_compute_ap_fadd_5_full_dsp_32_ip.tcl │ │ │ │ └── compute_compute_ap_fmul_2_max_dsp_32_ip.tcl │ │ │ ├── program.json │ │ │ ├── report │ │ │ │ ├── compute.sched.adb.xml │ │ │ │ ├── compute.verbose.sched.rpt │ │ │ │ ├── compute.verbose.sched.rpt.xml │ │ │ │ ├── compute_csynth.rpt │ │ │ │ ├── compute_csynth.xml │ │ │ │ ├── csynth.xml │ │ │ │ ├── jacobi2d_kernel.sched.adb.xml │ │ │ │ ├── jacobi2d_kernel.verbose.sched.rpt │ │ │ │ ├── jacobi2d_kernel.verbose.sched.rpt.xml │ │ │ │ ├── jacobi2d_kernel_csynth.rpt │ │ │ │ ├── jacobi2d_kernel_csynth.xml │ │ │ │ ├── load.sched.adb.xml │ │ │ │ ├── load.verbose.sched.rpt │ │ │ │ ├── load.verbose.sched.rpt.xml │ │ │ │ ├── load_csynth.rpt │ │ │ │ ├── load_csynth.xml │ │ │ │ ├── store.sched.adb.xml │ │ │ │ ├── store.verbose.sched.rpt │ │ │ │ ├── store.verbose.sched.rpt.xml │ │ │ │ ├── store_csynth.rpt │ │ │ │ └── store_csynth.xml │ │ │ └── tar │ │ │ │ ├── compute.tar │ │ │ │ ├── jacobi2d_kernel.tar │ │ │ │ ├── load.tar │ │ │ │ └── store.tar │ │ └── tapa_src │ │ │ └── jacobi2d_tlp.cpp │ │ ├── 7PE │ │ ├── ab_stencil_7pe.py │ │ ├── constraint_ref.tcl │ │ ├── run_vitis.sh │ │ ├── runme.sh │ │ ├── soda_autobridge.py │ │ ├── soda_jacobi2d_iter7.xo │ │ ├── tapa_result │ │ │ ├── cpp │ │ │ │ ├── ap_common.h │ │ │ │ ├── ap_decl.h │ │ │ │ ├── ap_fixed.h │ │ │ │ ├── ap_fixed_base.h │ │ │ │ ├── ap_fixed_ref.h │ │ │ │ ├── ap_fixed_special.h │ │ │ │ ├── ap_int.h │ │ │ │ ├── ap_int_base.h │ │ │ │ ├── ap_int_ref.h │ │ │ │ ├── ap_int_special.h │ │ │ │ ├── compute.cpp │ │ │ │ ├── etc │ │ │ │ │ └── ap_private.h │ │ │ │ ├── floating_point_v7_0_bitacc_cmodel.h │ │ │ │ ├── gmp.h │ │ │ │ ├── hls_fpo.h │ │ │ │ ├── hls_half.h │ │ │ │ ├── jacobi2d_kernel.cpp │ │ │ │ ├── load.cpp │ │ │ │ ├── mpfr.h │ │ │ │ └── store.cpp │ │ │ ├── hdl │ │ │ │ ├── compute_compute_ap_fadd_5_full_dsp_32_ip.tcl │ │ │ │ └── compute_compute_ap_fmul_2_max_dsp_32_ip.tcl │ │ │ ├── program.json │ │ │ ├── report │ │ │ │ ├── compute.sched.adb.xml │ │ │ │ ├── compute.verbose.sched.rpt │ │ │ │ ├── compute.verbose.sched.rpt.xml │ │ │ │ ├── compute_csynth.rpt │ │ │ │ ├── compute_csynth.xml │ │ │ │ ├── csynth.xml │ │ │ │ ├── jacobi2d_kernel.sched.adb.xml │ │ │ │ ├── jacobi2d_kernel.verbose.sched.rpt │ │ │ │ ├── jacobi2d_kernel.verbose.sched.rpt.xml │ │ │ │ ├── jacobi2d_kernel_csynth.rpt │ │ │ │ ├── jacobi2d_kernel_csynth.xml │ │ │ │ ├── load.sched.adb.xml │ │ │ │ ├── load.verbose.sched.rpt │ │ │ │ ├── load.verbose.sched.rpt.xml │ │ │ │ ├── load_csynth.rpt │ │ │ │ ├── load_csynth.xml │ │ │ │ ├── store.sched.adb.xml │ │ │ │ ├── store.verbose.sched.rpt │ │ │ │ ├── store.verbose.sched.rpt.xml │ │ │ │ ├── store_csynth.rpt │ │ │ │ └── store_csynth.xml │ │ │ └── tar │ │ │ │ ├── compute.tar │ │ │ │ ├── jacobi2d_kernel.tar │ │ │ │ ├── load.tar │ │ │ │ └── store.tar │ │ └── tapa_src │ │ │ └── jacobi2d_tlp.cpp │ │ └── 8PE │ │ ├── ab_stencil_8pe.py │ │ ├── constraint_ref.tcl │ │ ├── run_vitis.sh │ │ ├── runme.sh │ │ ├── soda_autobridge.py │ │ ├── soda_jacobi2d_iter8.xo │ │ ├── tapa_result │ │ ├── cpp │ │ │ ├── ap_common.h │ │ │ ├── ap_decl.h │ │ │ ├── ap_fixed.h │ │ │ ├── ap_fixed_base.h │ │ │ ├── ap_fixed_ref.h │ │ │ ├── ap_fixed_special.h │ │ │ ├── ap_int.h │ │ │ ├── ap_int_base.h │ │ │ ├── ap_int_ref.h │ │ │ ├── ap_int_special.h │ │ │ ├── compute.cpp │ │ │ ├── etc │ │ │ │ └── ap_private.h │ │ │ ├── floating_point_v7_0_bitacc_cmodel.h │ │ │ ├── gmp.h │ │ │ ├── hls_fpo.h │ │ │ ├── hls_half.h │ │ │ ├── jacobi2d_kernel.cpp │ │ │ ├── load.cpp │ │ │ ├── mpfr.h │ │ │ └── store.cpp │ │ ├── hdl │ │ │ ├── compute_compute_ap_fadd_5_full_dsp_32_ip.tcl │ │ │ └── compute_compute_ap_fmul_2_max_dsp_32_ip.tcl │ │ ├── program.json │ │ ├── report │ │ │ ├── compute.sched.adb.xml │ │ │ ├── compute.verbose.sched.rpt │ │ │ ├── compute.verbose.sched.rpt.xml │ │ │ ├── compute_csynth.rpt │ │ │ ├── compute_csynth.xml │ │ │ ├── csynth.xml │ │ │ ├── jacobi2d_kernel.sched.adb.xml │ │ │ ├── jacobi2d_kernel.verbose.sched.rpt │ │ │ ├── jacobi2d_kernel.verbose.sched.rpt.xml │ │ │ ├── jacobi2d_kernel_csynth.rpt │ │ │ ├── jacobi2d_kernel_csynth.xml │ │ │ ├── load.sched.adb.xml │ │ │ ├── load.verbose.sched.rpt │ │ │ ├── load.verbose.sched.rpt.xml │ │ │ ├── load_csynth.rpt │ │ │ ├── load_csynth.xml │ │ │ ├── store.sched.adb.xml │ │ │ ├── store.verbose.sched.rpt │ │ │ ├── store.verbose.sched.rpt.xml │ │ │ ├── store_csynth.rpt │ │ │ └── store_csynth.xml │ │ └── tar │ │ │ ├── compute.tar │ │ │ ├── jacobi2d_kernel.tar │ │ │ ├── load.tar │ │ │ └── store.tar │ │ └── tapa_src │ │ └── jacobi2d_tlp.cpp ├── reference-scripts │ ├── README.md │ ├── runme.sh │ ├── step1-run-hls.tcl │ ├── step2-autobridge.py │ ├── step3-pack-xo.tcl │ └── step4-run-vitis.sh ├── regression │ └── systolic_2x2 │ │ ├── cosim │ │ ├── emconfig.json │ │ ├── host.exe │ │ └── xrt.ini │ │ ├── run.sh │ │ ├── src │ │ ├── kernel.c │ │ ├── kernel.h │ │ ├── kernel_hcl_decl.h │ │ ├── kernel_host.cpp │ │ ├── kernel_host.hpp │ │ └── kernel_kernel.cpp │ │ ├── step1-run-hls.tcl │ │ ├── step2-autobridge.py │ │ ├── step3-pack-xo.tcl │ │ └── step4-run-vitis.sh └── src │ ├── README.md │ ├── assign_slr.py │ ├── autopilot_parser.py │ ├── formator.py │ ├── graph.py │ ├── my_generator.py │ └── optimize_control_signals.py └── src ├── LICENSE ├── README.md ├── autobridge ├── Codegen │ ├── Codegen.py │ ├── FIFOTemplate.py │ ├── FloorplanTclGeneration.py │ ├── InjectPipelineLogic.py │ ├── PipeliningControl.py │ ├── PipeliningFIFO.py │ ├── README.md │ ├── __init__.py │ └── axi_pipeline.sv ├── Device │ ├── DeviceManager.py │ ├── README.md │ └── __init__.py ├── Floorplan │ ├── Bipartition.py │ ├── EightWayPartition.py │ ├── FourWayPartition.py │ ├── ILPUtilities.py │ ├── IterativeBipartion.py │ ├── LegalizeFloorplan.py │ ├── Partition.py │ ├── Utilities.py │ ├── __init__.py │ ├── multi_way_partition.py │ └── u280_resource.py ├── Flow │ ├── Manager.py │ ├── README.md │ └── __init__.py ├── HLSParser │ ├── AXIConnectionParser.py │ ├── README.md │ ├── __init__.py │ ├── tapa │ │ ├── DataflowGraphTapa.py │ │ ├── ProgramJsonManager.py │ │ ├── SampleUserConfig.json │ │ └── __init__.py │ └── vivado_hls │ │ ├── HLSProjectManager.py │ │ ├── TopRTLParser.py │ │ └── __init__.py ├── Opt │ ├── Common.py │ ├── DataflowGraph.py │ ├── Floorplan.py │ ├── FloorplanLegalize.py │ ├── GlobalRouting.py │ ├── LatencyBalancing.py │ ├── README.md │ ├── Slot.py │ ├── SlotManager.py │ └── __init__.py ├── Route │ ├── __init__.py │ ├── global_route.py │ └── latency_balancing.py ├── __init__.py ├── analyze.py ├── dotgraph.py ├── main.py └── util.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/.gitignore -------------------------------------------------------------------------------- /AutoBridge-FPGA21.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/AutoBridge-FPGA21.pdf -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/README.md -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x10/ab_cnn_13x10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x10/ab_cnn_13x10.py -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x10/generate_rtl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x10/generate_rtl.tcl -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x10/pack_xo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x10/pack_xo.tcl -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x10/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x10/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x10/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x10/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x10/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x10/src/kernel.c -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x10/src/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x10/src/kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x10/src/kernel_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x10/src/kernel_host.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x10/src/kernel_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x10/src/kernel_host.hpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x10/src/kernel_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x10/src/kernel_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x10/src/kernel_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x10/src/kernel_kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x10/src/kernel_kernel_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x10/src/kernel_kernel_new.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x12/ab_cnn_13x12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x12/ab_cnn_13x12.py -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x12/generate_rtl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x12/generate_rtl.tcl -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x12/pack_xo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x12/pack_xo.tcl -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x12/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x12/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x12/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x12/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x12/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x12/src/kernel.c -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x12/src/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x12/src/kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x12/src/kernel_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x12/src/kernel_host.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x12/src/kernel_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x12/src/kernel_host.hpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x12/src/kernel_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x12/src/kernel_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x12/src/kernel_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x12/src/kernel_kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x12/src/kernel_kernel_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x12/src/kernel_kernel_new.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x14/ab_cnn_13x14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x14/ab_cnn_13x14.py -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x14/generate_rtl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x14/generate_rtl.tcl -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x14/pack_xo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x14/pack_xo.tcl -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x14/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x14/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x14/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x14/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x14/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x14/src/kernel.c -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x14/src/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x14/src/kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x14/src/kernel_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x14/src/kernel_host.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x14/src/kernel_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x14/src/kernel_host.hpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x14/src/kernel_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x14/src/kernel_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x14/src/kernel_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x14/src/kernel_kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x14/src/kernel_kernel_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x14/src/kernel_kernel_new.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x16/ab_cnn_13x16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x16/ab_cnn_13x16.py -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x16/generate_rtl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x16/generate_rtl.tcl -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x16/pack_xo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x16/pack_xo.tcl -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x16/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x16/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x16/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x16/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x16/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x16/src/kernel.c -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x16/src/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x16/src/kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x16/src/kernel_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x16/src/kernel_host.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x16/src/kernel_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x16/src/kernel_host.hpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x16/src/kernel_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x16/src/kernel_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x16/src/kernel_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x16/src/kernel_kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x16/src/kernel_kernel_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x16/src/kernel_kernel_new.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x2/ab_cnn_13x2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x2/ab_cnn_13x2.py -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x2/generate_rtl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x2/generate_rtl.tcl -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x2/pack_xo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x2/pack_xo.tcl -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x2/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x2/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x2/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x2/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x2/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x2/src/kernel.c -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x2/src/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x2/src/kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x2/src/kernel_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x2/src/kernel_host.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x2/src/kernel_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x2/src/kernel_host.hpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x2/src/kernel_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x2/src/kernel_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x2/src/kernel_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x2/src/kernel_kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x2/src/kernel_kernel_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x2/src/kernel_kernel_new.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x4/ab_cnn_13x4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x4/ab_cnn_13x4.py -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x4/generate_rtl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x4/generate_rtl.tcl -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x4/pack_xo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x4/pack_xo.tcl -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x4/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x4/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x4/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x4/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x4/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x4/src/kernel.c -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x4/src/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x4/src/kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x4/src/kernel_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x4/src/kernel_host.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x4/src/kernel_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x4/src/kernel_host.hpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x4/src/kernel_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x4/src/kernel_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x4/src/kernel_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x4/src/kernel_kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x4/src/kernel_kernel_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x4/src/kernel_kernel_new.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x6/ab_cnn_13x6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x6/ab_cnn_13x6.py -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x6/generate_rtl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x6/generate_rtl.tcl -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x6/pack_xo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x6/pack_xo.tcl -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x6/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x6/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x6/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x6/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x6/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x6/src/kernel.c -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x6/src/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x6/src/kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x6/src/kernel_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x6/src/kernel_host.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x6/src/kernel_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x6/src/kernel_host.hpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x6/src/kernel_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x6/src/kernel_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x6/src/kernel_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x6/src/kernel_kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x6/src/kernel_kernel_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x6/src/kernel_kernel_new.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x8/ab_cnn_13x8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x8/ab_cnn_13x8.py -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x8/generate_rtl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x8/generate_rtl.tcl -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x8/pack_xo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x8/pack_xo.tcl -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x8/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x8/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x8/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x8/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x8/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x8/src/kernel.c -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x8/src/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x8/src/kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x8/src/kernel_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x8/src/kernel_host.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x8/src/kernel_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x8/src/kernel_host.hpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x8/src/kernel_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x8/src/kernel_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x8/src/kernel_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x8/src/kernel_kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/CNN/13x8/src/kernel_kernel_new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/CNN/13x8/src/kernel_kernel_new.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/src.lu.12/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/src.lu.12/kernel.c -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/src.lu.12/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/src.lu.12/kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/src.lu.12/kernel_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/src.lu.12/kernel_host.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/src.lu.12/kernel_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/src.lu.12/kernel_host.hpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/src.lu.12/kernel_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/src.lu.12/kernel_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/src.lu.12/kernel_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/src.lu.12/kernel_kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/src.lu.12/kernel_top_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/src.lu.12/kernel_top_gen.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/src.lu.12/kernel_top_gen.h: -------------------------------------------------------------------------------- 1 | void top_generate(FILE *f); 2 | -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/src.lu.12/top.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/src.lu.12/top.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/src.lu.12/top_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/src.lu.12/top_gen -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u250/ab_u250.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u250/ab_u250.py -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u250/generate_rtl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u250/generate_rtl.tcl -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u250/pack_xo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u250/pack_xo.tcl -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u250/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u250/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u250/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u250/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u250/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u250/src/kernel.c -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u250/src/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u250/src/kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u250/src/kernel_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u250/src/kernel_host.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u250/src/kernel_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u250/src/kernel_host.hpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u250/src/kernel_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u250/src/kernel_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u250/src/kernel_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u250/src/kernel_kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u250/src/kernel_top_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u250/src/kernel_top_gen.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u250/src/kernel_top_gen.h: -------------------------------------------------------------------------------- 1 | void top_generate(FILE *f); 2 | -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u250/src/top.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u250/src/top.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u250/src/top_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u250/src/top_gen -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u280/ab_u280.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u280/ab_u280.py -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u280/generate_rtl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u280/generate_rtl.tcl -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u280/pack_xo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u280/pack_xo.tcl -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u280/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u280/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u280/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u280/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u280/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u280/src/kernel.c -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u280/src/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u280/src/kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u280/src/kernel_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u280/src/kernel_host.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u280/src/kernel_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u280/src/kernel_host.hpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u280/src/kernel_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u280/src/kernel_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u280/src/kernel_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u280/src/kernel_kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u280/src/kernel_top_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u280/src/kernel_top_gen.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u280/src/kernel_top_gen.h: -------------------------------------------------------------------------------- 1 | void top_generate(FILE *f); 2 | -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u280/src/top.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u280/src/top.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/12x12/u280/src/top_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/12x12/u280/src/top_gen -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/src.lu.16/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/src.lu.16/kernel.c -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/src.lu.16/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/src.lu.16/kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/src.lu.16/kernel_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/src.lu.16/kernel_host.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/src.lu.16/kernel_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/src.lu.16/kernel_host.hpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/src.lu.16/kernel_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/src.lu.16/kernel_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/src.lu.16/kernel_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/src.lu.16/kernel_kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/src.lu.16/kernel_top_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/src.lu.16/kernel_top_gen.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/src.lu.16/kernel_top_gen.h: -------------------------------------------------------------------------------- 1 | void top_generate(FILE *f); 2 | -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/src.lu.16/top.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/src.lu.16/top.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/src.lu.16/top_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/src.lu.16/top_gen -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u250/ab_u250.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u250/ab_u250.py -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u250/generate_rtl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u250/generate_rtl.tcl -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u250/pack_xo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u250/pack_xo.tcl -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u250/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u250/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u250/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u250/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u250/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u250/src/kernel.c -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u250/src/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u250/src/kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u250/src/kernel_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u250/src/kernel_host.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u250/src/kernel_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u250/src/kernel_host.hpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u250/src/kernel_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u250/src/kernel_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u250/src/kernel_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u250/src/kernel_kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u250/src/kernel_top_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u250/src/kernel_top_gen.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u250/src/kernel_top_gen.h: -------------------------------------------------------------------------------- 1 | void top_generate(FILE *f); 2 | -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u250/src/top.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u250/src/top.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u250/src/top_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u250/src/top_gen -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u280/ab_u280.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u280/ab_u280.py -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u280/generate_rtl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u280/generate_rtl.tcl -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u280/pack_xo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u280/pack_xo.tcl -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u280/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u280/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u280/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u280/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u280/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u280/src/kernel.c -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u280/src/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u280/src/kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u280/src/kernel_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u280/src/kernel_host.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u280/src/kernel_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u280/src/kernel_host.hpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u280/src/kernel_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u280/src/kernel_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u280/src/kernel_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u280/src/kernel_kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u280/src/kernel_top_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u280/src/kernel_top_gen.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u280/src/kernel_top_gen.h: -------------------------------------------------------------------------------- 1 | void top_generate(FILE *f); 2 | -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u280/src/top.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u280/src/top.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/16x16/u280/src/top_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/16x16/u280/src/top_gen -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/src.lu.20/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/src.lu.20/kernel.c -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/src.lu.20/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/src.lu.20/kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/src.lu.20/kernel_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/src.lu.20/kernel_host.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/src.lu.20/kernel_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/src.lu.20/kernel_host.hpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/src.lu.20/kernel_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/src.lu.20/kernel_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/src.lu.20/kernel_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/src.lu.20/kernel_kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/src.lu.20/kernel_top_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/src.lu.20/kernel_top_gen.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/src.lu.20/kernel_top_gen.h: -------------------------------------------------------------------------------- 1 | void top_generate(FILE *f); 2 | -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/src.lu.20/top.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/src.lu.20/top.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/src.lu.20/top_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/src.lu.20/top_gen -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u250/ab_u250.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u250/ab_u250.py -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u250/generate_rtl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u250/generate_rtl.tcl -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u250/pack_xo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u250/pack_xo.tcl -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u250/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u250/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u250/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u250/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u250/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u250/src/kernel.c -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u250/src/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u250/src/kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u250/src/kernel_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u250/src/kernel_host.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u250/src/kernel_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u250/src/kernel_host.hpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u250/src/kernel_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u250/src/kernel_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u250/src/kernel_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u250/src/kernel_kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u250/src/kernel_top_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u250/src/kernel_top_gen.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u250/src/kernel_top_gen.h: -------------------------------------------------------------------------------- 1 | void top_generate(FILE *f); 2 | -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u250/src/top.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u250/src/top.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u250/src/top_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u250/src/top_gen -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u280/ab_u280.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u280/ab_u280.py -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u280/generate_rtl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u280/generate_rtl.tcl -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u280/pack_xo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u280/pack_xo.tcl -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u280/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u280/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u280/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u280/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u280/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u280/src/kernel.c -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u280/src/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u280/src/kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u280/src/kernel_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u280/src/kernel_host.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u280/src/kernel_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u280/src/kernel_host.hpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u280/src/kernel_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u280/src/kernel_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u280/src/kernel_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u280/src/kernel_kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u280/src/kernel_top_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u280/src/kernel_top_gen.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u280/src/kernel_top_gen.h: -------------------------------------------------------------------------------- 1 | void top_generate(FILE *f); 2 | -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u280/src/top.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u280/src/top.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/20x20/u280/src/top_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/20x20/u280/src/top_gen -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/src/kernel.c -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/src/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/src/kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/src/kernel_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/src/kernel_host.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/src/kernel_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/src/kernel_host.hpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/src/kernel_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/src/kernel_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/src/kernel_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/src/kernel_kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/src/kernel_top_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/src/kernel_top_gen.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/src/kernel_top_gen.h: -------------------------------------------------------------------------------- 1 | void top_generate(FILE *f); 2 | -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/src/top.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/src/top.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/src/top_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/src/top_gen -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u250/ab_u250.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u250/ab_u250.py -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u250/generate_rtl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u250/generate_rtl.tcl -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u250/pack_xo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u250/pack_xo.tcl -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u250/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u250/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u250/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u250/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u250/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u250/src/kernel.c -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u250/src/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u250/src/kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u250/src/kernel_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u250/src/kernel_host.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u250/src/kernel_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u250/src/kernel_host.hpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u250/src/kernel_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u250/src/kernel_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u250/src/kernel_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u250/src/kernel_kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u250/src/kernel_top_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u250/src/kernel_top_gen.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u250/src/kernel_top_gen.h: -------------------------------------------------------------------------------- 1 | void top_generate(FILE *f); 2 | -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u250/src/top.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u250/src/top.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u250/src/top_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u250/src/top_gen -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u280/ab_u280.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u280/ab_u280.py -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u280/generate_rtl.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u280/generate_rtl.tcl -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u280/pack_xo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u280/pack_xo.tcl -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u280/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u280/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u280/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u280/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u280/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u280/src/kernel.c -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u280/src/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u280/src/kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u280/src/kernel_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u280/src/kernel_host.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u280/src/kernel_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u280/src/kernel_host.hpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u280/src/kernel_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u280/src/kernel_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u280/src/kernel_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u280/src/kernel_kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u280/src/kernel_top_gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u280/src/kernel_top_gen.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u280/src/kernel_top_gen.h: -------------------------------------------------------------------------------- 1 | void top_generate(FILE *f); 2 | -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u280/src/top.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u280/src/top.cpp -------------------------------------------------------------------------------- /archive/benchmarks/LUDecomposition/24x24/u280/src/top_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/LUDecomposition/24x24/u280/src/top_gen -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/PageRank_FP1.xo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/PageRank_FP1.xo -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/README.md -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/ab_pagerank_u280.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/ab_pagerank_u280.py -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/constraint_ref.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/constraint_ref.tcl -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/run_autobridge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/run_autobridge.sh -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/cpp/Control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/cpp/Control.cpp -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/cpp/EdgeMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/cpp/EdgeMem.cpp -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/cpp/PageRank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/cpp/PageRank.cpp -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/cpp/ProcElem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/cpp/ProcElem.cpp -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/cpp/UpdateHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/cpp/UpdateHandler.cpp -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/cpp/UpdateMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/cpp/UpdateMem.cpp -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/cpp/VertexMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/cpp/VertexMem.cpp -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/cpp/VertexRouterR1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/cpp/VertexRouterR1.cpp -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/cpp/VertexRouterR2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/cpp/VertexRouterR2.cpp -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/cpp/page-rank-kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/cpp/page-rank-kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/cpp/page-rank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/cpp/page-rank.h -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/program.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/program.json -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/report/Control.sched.adb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/report/Control.sched.adb.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/report/Control_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/report/Control_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/report/Control_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/report/Control_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/report/EdgeMem.sched.adb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/report/EdgeMem.sched.adb.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/report/EdgeMem_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/report/EdgeMem_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/report/EdgeMem_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/report/EdgeMem_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/report/PageRank_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/report/PageRank_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/report/PageRank_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/report/PageRank_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/report/ProcElem_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/report/ProcElem_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/report/ProcElem_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/report/ProcElem_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/report/UpdateMem_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/report/UpdateMem_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/report/UpdateMem_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/report/UpdateMem_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/report/VertexMem_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/report/VertexMem_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/report/VertexMem_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/report/VertexMem_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/report/csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/report/csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/tar/Control.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/tar/Control.tar -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/tar/EdgeMem.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/tar/EdgeMem.tar -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/tar/PageRank.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/tar/PageRank.tar -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/tar/ProcElem.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/tar/ProcElem.tar -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/tar/UpdateHandler.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/tar/UpdateHandler.tar -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/tar/UpdateMem.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/tar/UpdateMem.tar -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/tar/VertexMem.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/tar/VertexMem.tar -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/tar/VertexRouterR1.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/tar/VertexRouterR1.tar -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_result/tar/VertexRouterR2.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_result/tar/VertexRouterR2.tar -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/cpp/Control.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/cpp/Control.cpp -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/cpp/EdgeMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/cpp/EdgeMem.cpp -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/cpp/PageRank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/cpp/PageRank.cpp -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/cpp/ProcElem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/cpp/ProcElem.cpp -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/cpp/UpdateHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/cpp/UpdateHandler.cpp -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/cpp/UpdateMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/cpp/UpdateMem.cpp -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/cpp/VertexMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/cpp/VertexMem.cpp -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/cpp/VertexRouterR1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/cpp/VertexRouterR1.cpp -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/cpp/VertexRouterR2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/cpp/VertexRouterR2.cpp -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/cpp/page-rank-kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/cpp/page-rank-kernel.h -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/cpp/page-rank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/cpp/page-rank.h -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/program.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/program.json -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/Control.sched.adb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/Control.sched.adb.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/Control_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/Control_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/Control_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/Control_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/EdgeMem.sched.adb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/EdgeMem.sched.adb.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/EdgeMem_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/EdgeMem_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/EdgeMem_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/EdgeMem_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/PageRank.sched.adb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/PageRank.sched.adb.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/PageRank_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/PageRank_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/PageRank_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/PageRank_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/ProcElem.sched.adb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/ProcElem.sched.adb.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/ProcElem_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/ProcElem_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/ProcElem_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/ProcElem_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/UpdateHandler_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/UpdateHandler_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/UpdateHandler_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/UpdateHandler_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/UpdateMem.sched.adb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/UpdateMem.sched.adb.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/UpdateMem_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/UpdateMem_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/UpdateMem_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/UpdateMem_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/VertexMem.sched.adb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/VertexMem.sched.adb.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/VertexMem_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/VertexMem_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/VertexMem_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/VertexMem_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/reg_float_s_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/reg_float_s_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/report/reg_float_s_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/report/reg_float_s_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/tar/Control.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/tar/Control.tar -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/tar/EdgeMem.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/tar/EdgeMem.tar -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/tar/PageRank.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/tar/PageRank.tar -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/tar/ProcElem.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/tar/ProcElem.tar -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/tar/UpdateHandler.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/tar/UpdateHandler.tar -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/tar/UpdateMem.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/tar/UpdateMem.tar -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/tar/VertexMem.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/tar/VertexMem.tar -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/tar/VertexRouterR1.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/tar/VertexRouterR1.tar -------------------------------------------------------------------------------- /archive/benchmarks/PageRank/tapa_src/tar/VertexRouterR2.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/PageRank/tapa_src/tar/VertexRouterR2.tar -------------------------------------------------------------------------------- /archive/benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/README.md -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/ab_stencil_1pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/ab_stencil_1pe.py -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/constraint_ref.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/constraint_ref.tcl -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/soda_autobridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/soda_autobridge.py -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/soda_jacobi2d_iter1.xo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/soda_jacobi2d_iter1.xo -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/cpp/ap_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/cpp/ap_common.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/cpp/ap_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/cpp/ap_decl.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/cpp/ap_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/cpp/ap_fixed.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/cpp/ap_fixed_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/cpp/ap_fixed_base.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/cpp/ap_fixed_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/cpp/ap_fixed_ref.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/cpp/ap_fixed_special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/cpp/ap_fixed_special.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/cpp/ap_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/cpp/ap_int.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/cpp/ap_int_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/cpp/ap_int_base.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/cpp/ap_int_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/cpp/ap_int_ref.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/cpp/ap_int_special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/cpp/ap_int_special.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/cpp/compute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/cpp/compute.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/cpp/etc/ap_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/cpp/etc/ap_private.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/cpp/gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/cpp/gmp.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/cpp/hls_fpo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/cpp/hls_fpo.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/cpp/hls_half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/cpp/hls_half.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/cpp/jacobi2d_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/cpp/jacobi2d_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/cpp/load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/cpp/load.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/cpp/mpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/cpp/mpfr.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/cpp/store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/cpp/store.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/program.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/program.json -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/report/compute_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/report/compute_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/report/compute_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/report/compute_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/report/csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/report/csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/report/load.sched.adb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/report/load.sched.adb.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/report/load_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/report/load_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/report/load_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/report/load_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/report/store_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/report/store_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/report/store_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/report/store_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/tar/compute.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/tar/compute.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/tar/jacobi2d_kernel.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/tar/jacobi2d_kernel.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/tar/load.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/tar/load.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_result/tar/store.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_result/tar/store.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/1PE/tapa_src/jacobi2d_tlp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/1PE/tapa_src/jacobi2d_tlp.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/ab_stencil_2pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/ab_stencil_2pe.py -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/constraint_ref.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/constraint_ref.tcl -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/soda_autobridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/soda_autobridge.py -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/soda_jacobi2d_iter2.xo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/soda_jacobi2d_iter2.xo -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/cpp/ap_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/cpp/ap_common.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/cpp/ap_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/cpp/ap_decl.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/cpp/ap_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/cpp/ap_fixed.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/cpp/ap_fixed_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/cpp/ap_fixed_base.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/cpp/ap_fixed_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/cpp/ap_fixed_ref.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/cpp/ap_fixed_special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/cpp/ap_fixed_special.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/cpp/ap_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/cpp/ap_int.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/cpp/ap_int_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/cpp/ap_int_base.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/cpp/ap_int_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/cpp/ap_int_ref.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/cpp/ap_int_special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/cpp/ap_int_special.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/cpp/compute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/cpp/compute.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/cpp/etc/ap_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/cpp/etc/ap_private.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/cpp/gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/cpp/gmp.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/cpp/hls_fpo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/cpp/hls_fpo.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/cpp/hls_half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/cpp/hls_half.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/cpp/jacobi2d_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/cpp/jacobi2d_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/cpp/load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/cpp/load.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/cpp/mpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/cpp/mpfr.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/cpp/store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/cpp/store.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/program.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/program.json -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/report/compute_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/report/compute_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/report/compute_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/report/compute_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/report/csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/report/csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/report/load.sched.adb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/report/load.sched.adb.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/report/load_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/report/load_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/report/load_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/report/load_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/report/store_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/report/store_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/report/store_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/report/store_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/tar/compute.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/tar/compute.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/tar/jacobi2d_kernel.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/tar/jacobi2d_kernel.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/tar/load.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/tar/load.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_result/tar/store.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_result/tar/store.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/2PE/tapa_src/jacobi2d_tlp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/2PE/tapa_src/jacobi2d_tlp.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/ab_stencil_3pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/ab_stencil_3pe.py -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/constraint_ref.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/constraint_ref.tcl -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/soda_autobridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/soda_autobridge.py -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/soda_jacobi2d_iter3.xo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/soda_jacobi2d_iter3.xo -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/cpp/ap_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/cpp/ap_common.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/cpp/ap_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/cpp/ap_decl.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/cpp/ap_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/cpp/ap_fixed.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/cpp/ap_fixed_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/cpp/ap_fixed_base.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/cpp/ap_fixed_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/cpp/ap_fixed_ref.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/cpp/ap_fixed_special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/cpp/ap_fixed_special.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/cpp/ap_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/cpp/ap_int.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/cpp/ap_int_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/cpp/ap_int_base.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/cpp/ap_int_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/cpp/ap_int_ref.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/cpp/ap_int_special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/cpp/ap_int_special.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/cpp/compute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/cpp/compute.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/cpp/etc/ap_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/cpp/etc/ap_private.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/cpp/gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/cpp/gmp.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/cpp/hls_fpo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/cpp/hls_fpo.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/cpp/hls_half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/cpp/hls_half.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/cpp/jacobi2d_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/cpp/jacobi2d_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/cpp/load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/cpp/load.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/cpp/mpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/cpp/mpfr.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/cpp/store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/cpp/store.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/program.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/program.json -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/report/compute_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/report/compute_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/report/compute_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/report/compute_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/report/csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/report/csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/report/load.sched.adb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/report/load.sched.adb.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/report/load_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/report/load_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/report/load_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/report/load_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/report/store_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/report/store_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/report/store_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/report/store_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/tar/compute.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/tar/compute.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/tar/jacobi2d_kernel.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/tar/jacobi2d_kernel.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/tar/load.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/tar/load.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_result/tar/store.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_result/tar/store.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/3PE/tapa_src/jacobi2d_tlp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/3PE/tapa_src/jacobi2d_tlp.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/ab_stencil_4pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/ab_stencil_4pe.py -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/constraint_ref.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/constraint_ref.tcl -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/soda_autobridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/soda_autobridge.py -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/soda_jacobi2d_iter4.xo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/soda_jacobi2d_iter4.xo -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/cpp/ap_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/cpp/ap_common.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/cpp/ap_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/cpp/ap_decl.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/cpp/ap_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/cpp/ap_fixed.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/cpp/ap_fixed_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/cpp/ap_fixed_base.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/cpp/ap_fixed_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/cpp/ap_fixed_ref.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/cpp/ap_fixed_special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/cpp/ap_fixed_special.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/cpp/ap_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/cpp/ap_int.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/cpp/ap_int_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/cpp/ap_int_base.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/cpp/ap_int_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/cpp/ap_int_ref.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/cpp/ap_int_special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/cpp/ap_int_special.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/cpp/compute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/cpp/compute.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/cpp/etc/ap_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/cpp/etc/ap_private.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/cpp/gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/cpp/gmp.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/cpp/hls_fpo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/cpp/hls_fpo.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/cpp/hls_half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/cpp/hls_half.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/cpp/jacobi2d_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/cpp/jacobi2d_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/cpp/load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/cpp/load.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/cpp/mpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/cpp/mpfr.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/cpp/store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/cpp/store.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/program.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/program.json -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/report/compute_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/report/compute_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/report/compute_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/report/compute_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/report/csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/report/csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/report/load.sched.adb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/report/load.sched.adb.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/report/load_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/report/load_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/report/load_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/report/load_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/report/store_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/report/store_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/report/store_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/report/store_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/tar/compute.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/tar/compute.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/tar/jacobi2d_kernel.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/tar/jacobi2d_kernel.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/tar/load.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/tar/load.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_result/tar/store.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_result/tar/store.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/4PE/tapa_src/jacobi2d_tlp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/4PE/tapa_src/jacobi2d_tlp.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/ab_stencil_5pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/ab_stencil_5pe.py -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/constraint_ref.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/constraint_ref.tcl -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/soda_autobridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/soda_autobridge.py -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/soda_jacobi2d_iter5.xo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/soda_jacobi2d_iter5.xo -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/cpp/ap_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/cpp/ap_common.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/cpp/ap_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/cpp/ap_decl.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/cpp/ap_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/cpp/ap_fixed.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/cpp/ap_fixed_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/cpp/ap_fixed_base.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/cpp/ap_fixed_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/cpp/ap_fixed_ref.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/cpp/ap_fixed_special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/cpp/ap_fixed_special.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/cpp/ap_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/cpp/ap_int.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/cpp/ap_int_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/cpp/ap_int_base.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/cpp/ap_int_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/cpp/ap_int_ref.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/cpp/ap_int_special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/cpp/ap_int_special.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/cpp/compute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/cpp/compute.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/cpp/etc/ap_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/cpp/etc/ap_private.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/cpp/gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/cpp/gmp.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/cpp/hls_fpo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/cpp/hls_fpo.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/cpp/hls_half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/cpp/hls_half.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/cpp/jacobi2d_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/cpp/jacobi2d_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/cpp/load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/cpp/load.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/cpp/mpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/cpp/mpfr.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/cpp/store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/cpp/store.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/program.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/program.json -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/report/compute_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/report/compute_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/report/compute_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/report/compute_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/report/csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/report/csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/report/load.sched.adb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/report/load.sched.adb.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/report/load_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/report/load_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/report/load_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/report/load_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/report/store_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/report/store_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/report/store_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/report/store_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/tar/compute.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/tar/compute.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/tar/jacobi2d_kernel.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/tar/jacobi2d_kernel.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/tar/load.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/tar/load.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_result/tar/store.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_result/tar/store.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/5PE/tapa_src/jacobi2d_tlp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/5PE/tapa_src/jacobi2d_tlp.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/ab_stencil_6pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/ab_stencil_6pe.py -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/constraint_ref.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/constraint_ref.tcl -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/soda_autobridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/soda_autobridge.py -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/soda_jacobi2d_iter6.xo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/soda_jacobi2d_iter6.xo -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/cpp/ap_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/cpp/ap_common.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/cpp/ap_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/cpp/ap_decl.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/cpp/ap_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/cpp/ap_fixed.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/cpp/ap_fixed_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/cpp/ap_fixed_base.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/cpp/ap_fixed_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/cpp/ap_fixed_ref.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/cpp/ap_fixed_special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/cpp/ap_fixed_special.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/cpp/ap_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/cpp/ap_int.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/cpp/ap_int_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/cpp/ap_int_base.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/cpp/ap_int_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/cpp/ap_int_ref.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/cpp/ap_int_special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/cpp/ap_int_special.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/cpp/compute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/cpp/compute.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/cpp/etc/ap_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/cpp/etc/ap_private.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/cpp/gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/cpp/gmp.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/cpp/hls_fpo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/cpp/hls_fpo.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/cpp/hls_half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/cpp/hls_half.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/cpp/jacobi2d_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/cpp/jacobi2d_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/cpp/load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/cpp/load.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/cpp/mpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/cpp/mpfr.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/cpp/store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/cpp/store.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/program.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/program.json -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/report/compute_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/report/compute_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/report/compute_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/report/compute_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/report/csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/report/csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/report/load.sched.adb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/report/load.sched.adb.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/report/load_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/report/load_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/report/load_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/report/load_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/report/store_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/report/store_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/report/store_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/report/store_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/tar/compute.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/tar/compute.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/tar/jacobi2d_kernel.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/tar/jacobi2d_kernel.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/tar/load.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/tar/load.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_result/tar/store.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_result/tar/store.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/6PE/tapa_src/jacobi2d_tlp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/6PE/tapa_src/jacobi2d_tlp.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/ab_stencil_7pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/ab_stencil_7pe.py -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/constraint_ref.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/constraint_ref.tcl -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/soda_autobridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/soda_autobridge.py -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/soda_jacobi2d_iter7.xo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/soda_jacobi2d_iter7.xo -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/cpp/ap_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/cpp/ap_common.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/cpp/ap_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/cpp/ap_decl.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/cpp/ap_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/cpp/ap_fixed.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/cpp/ap_fixed_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/cpp/ap_fixed_base.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/cpp/ap_fixed_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/cpp/ap_fixed_ref.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/cpp/ap_fixed_special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/cpp/ap_fixed_special.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/cpp/ap_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/cpp/ap_int.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/cpp/ap_int_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/cpp/ap_int_base.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/cpp/ap_int_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/cpp/ap_int_ref.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/cpp/ap_int_special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/cpp/ap_int_special.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/cpp/compute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/cpp/compute.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/cpp/etc/ap_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/cpp/etc/ap_private.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/cpp/gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/cpp/gmp.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/cpp/hls_fpo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/cpp/hls_fpo.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/cpp/hls_half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/cpp/hls_half.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/cpp/jacobi2d_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/cpp/jacobi2d_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/cpp/load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/cpp/load.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/cpp/mpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/cpp/mpfr.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/cpp/store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/cpp/store.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/program.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/program.json -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/report/compute_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/report/compute_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/report/compute_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/report/compute_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/report/csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/report/csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/report/load.sched.adb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/report/load.sched.adb.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/report/load_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/report/load_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/report/load_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/report/load_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/report/store_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/report/store_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/report/store_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/report/store_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/tar/compute.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/tar/compute.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/tar/jacobi2d_kernel.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/tar/jacobi2d_kernel.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/tar/load.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/tar/load.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_result/tar/store.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_result/tar/store.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/7PE/tapa_src/jacobi2d_tlp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/7PE/tapa_src/jacobi2d_tlp.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/ab_stencil_8pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/ab_stencil_8pe.py -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/constraint_ref.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/constraint_ref.tcl -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/run_vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/run_vitis.sh -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/runme.sh -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/soda_autobridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/soda_autobridge.py -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/soda_jacobi2d_iter8.xo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/soda_jacobi2d_iter8.xo -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/cpp/ap_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/cpp/ap_common.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/cpp/ap_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/cpp/ap_decl.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/cpp/ap_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/cpp/ap_fixed.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/cpp/ap_fixed_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/cpp/ap_fixed_base.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/cpp/ap_fixed_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/cpp/ap_fixed_ref.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/cpp/ap_fixed_special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/cpp/ap_fixed_special.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/cpp/ap_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/cpp/ap_int.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/cpp/ap_int_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/cpp/ap_int_base.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/cpp/ap_int_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/cpp/ap_int_ref.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/cpp/ap_int_special.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/cpp/ap_int_special.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/cpp/compute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/cpp/compute.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/cpp/etc/ap_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/cpp/etc/ap_private.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/cpp/gmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/cpp/gmp.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/cpp/hls_fpo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/cpp/hls_fpo.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/cpp/hls_half.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/cpp/hls_half.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/cpp/jacobi2d_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/cpp/jacobi2d_kernel.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/cpp/load.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/cpp/load.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/cpp/mpfr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/cpp/mpfr.h -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/cpp/store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/cpp/store.cpp -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/program.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/program.json -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/report/compute_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/report/compute_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/report/compute_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/report/compute_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/report/csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/report/csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/report/load.sched.adb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/report/load.sched.adb.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/report/load_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/report/load_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/report/load_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/report/load_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/report/store_csynth.rpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/report/store_csynth.rpt -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/report/store_csynth.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/report/store_csynth.xml -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/tar/compute.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/tar/compute.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/tar/jacobi2d_kernel.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/tar/jacobi2d_kernel.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/tar/load.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/tar/load.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_result/tar/store.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_result/tar/store.tar -------------------------------------------------------------------------------- /archive/benchmarks/Stencil/8PE/tapa_src/jacobi2d_tlp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/benchmarks/Stencil/8PE/tapa_src/jacobi2d_tlp.cpp -------------------------------------------------------------------------------- /archive/reference-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/reference-scripts/README.md -------------------------------------------------------------------------------- /archive/reference-scripts/runme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/reference-scripts/runme.sh -------------------------------------------------------------------------------- /archive/reference-scripts/step1-run-hls.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/reference-scripts/step1-run-hls.tcl -------------------------------------------------------------------------------- /archive/reference-scripts/step2-autobridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/reference-scripts/step2-autobridge.py -------------------------------------------------------------------------------- /archive/reference-scripts/step3-pack-xo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/reference-scripts/step3-pack-xo.tcl -------------------------------------------------------------------------------- /archive/reference-scripts/step4-run-vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/reference-scripts/step4-run-vitis.sh -------------------------------------------------------------------------------- /archive/regression/systolic_2x2/cosim/emconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/regression/systolic_2x2/cosim/emconfig.json -------------------------------------------------------------------------------- /archive/regression/systolic_2x2/cosim/host.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/regression/systolic_2x2/cosim/host.exe -------------------------------------------------------------------------------- /archive/regression/systolic_2x2/cosim/xrt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/regression/systolic_2x2/cosim/xrt.ini -------------------------------------------------------------------------------- /archive/regression/systolic_2x2/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/regression/systolic_2x2/run.sh -------------------------------------------------------------------------------- /archive/regression/systolic_2x2/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/regression/systolic_2x2/src/kernel.c -------------------------------------------------------------------------------- /archive/regression/systolic_2x2/src/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/regression/systolic_2x2/src/kernel.h -------------------------------------------------------------------------------- /archive/regression/systolic_2x2/src/kernel_hcl_decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/regression/systolic_2x2/src/kernel_hcl_decl.h -------------------------------------------------------------------------------- /archive/regression/systolic_2x2/src/kernel_host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/regression/systolic_2x2/src/kernel_host.cpp -------------------------------------------------------------------------------- /archive/regression/systolic_2x2/src/kernel_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/regression/systolic_2x2/src/kernel_host.hpp -------------------------------------------------------------------------------- /archive/regression/systolic_2x2/src/kernel_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/regression/systolic_2x2/src/kernel_kernel.cpp -------------------------------------------------------------------------------- /archive/regression/systolic_2x2/step1-run-hls.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/regression/systolic_2x2/step1-run-hls.tcl -------------------------------------------------------------------------------- /archive/regression/systolic_2x2/step2-autobridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/regression/systolic_2x2/step2-autobridge.py -------------------------------------------------------------------------------- /archive/regression/systolic_2x2/step3-pack-xo.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/regression/systolic_2x2/step3-pack-xo.tcl -------------------------------------------------------------------------------- /archive/regression/systolic_2x2/step4-run-vitis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/regression/systolic_2x2/step4-run-vitis.sh -------------------------------------------------------------------------------- /archive/src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/src/README.md -------------------------------------------------------------------------------- /archive/src/assign_slr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/src/assign_slr.py -------------------------------------------------------------------------------- /archive/src/autopilot_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/src/autopilot_parser.py -------------------------------------------------------------------------------- /archive/src/formator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/src/formator.py -------------------------------------------------------------------------------- /archive/src/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/src/graph.py -------------------------------------------------------------------------------- /archive/src/my_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/src/my_generator.py -------------------------------------------------------------------------------- /archive/src/optimize_control_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/archive/src/optimize_control_signals.py -------------------------------------------------------------------------------- /src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/LICENSE -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- 1 | ../README.md -------------------------------------------------------------------------------- /src/autobridge/Codegen/Codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Codegen/Codegen.py -------------------------------------------------------------------------------- /src/autobridge/Codegen/FIFOTemplate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Codegen/FIFOTemplate.py -------------------------------------------------------------------------------- /src/autobridge/Codegen/FloorplanTclGeneration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Codegen/FloorplanTclGeneration.py -------------------------------------------------------------------------------- /src/autobridge/Codegen/InjectPipelineLogic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Codegen/InjectPipelineLogic.py -------------------------------------------------------------------------------- /src/autobridge/Codegen/PipeliningControl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Codegen/PipeliningControl.py -------------------------------------------------------------------------------- /src/autobridge/Codegen/PipeliningFIFO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Codegen/PipeliningFIFO.py -------------------------------------------------------------------------------- /src/autobridge/Codegen/README.md: -------------------------------------------------------------------------------- 1 | in development -------------------------------------------------------------------------------- /src/autobridge/Codegen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/autobridge/Codegen/axi_pipeline.sv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Codegen/axi_pipeline.sv -------------------------------------------------------------------------------- /src/autobridge/Device/DeviceManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Device/DeviceManager.py -------------------------------------------------------------------------------- /src/autobridge/Device/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Device/README.md -------------------------------------------------------------------------------- /src/autobridge/Device/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/autobridge/Floorplan/Bipartition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Floorplan/Bipartition.py -------------------------------------------------------------------------------- /src/autobridge/Floorplan/EightWayPartition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Floorplan/EightWayPartition.py -------------------------------------------------------------------------------- /src/autobridge/Floorplan/FourWayPartition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Floorplan/FourWayPartition.py -------------------------------------------------------------------------------- /src/autobridge/Floorplan/ILPUtilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Floorplan/ILPUtilities.py -------------------------------------------------------------------------------- /src/autobridge/Floorplan/IterativeBipartion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Floorplan/IterativeBipartion.py -------------------------------------------------------------------------------- /src/autobridge/Floorplan/LegalizeFloorplan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Floorplan/LegalizeFloorplan.py -------------------------------------------------------------------------------- /src/autobridge/Floorplan/Partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Floorplan/Partition.py -------------------------------------------------------------------------------- /src/autobridge/Floorplan/Utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Floorplan/Utilities.py -------------------------------------------------------------------------------- /src/autobridge/Floorplan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Floorplan/__init__.py -------------------------------------------------------------------------------- /src/autobridge/Floorplan/multi_way_partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Floorplan/multi_way_partition.py -------------------------------------------------------------------------------- /src/autobridge/Floorplan/u280_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Floorplan/u280_resource.py -------------------------------------------------------------------------------- /src/autobridge/Flow/Manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Flow/Manager.py -------------------------------------------------------------------------------- /src/autobridge/Flow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Flow/README.md -------------------------------------------------------------------------------- /src/autobridge/Flow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/autobridge/HLSParser/AXIConnectionParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/HLSParser/AXIConnectionParser.py -------------------------------------------------------------------------------- /src/autobridge/HLSParser/README.md: -------------------------------------------------------------------------------- 1 | Interface with the given HLS front end. -------------------------------------------------------------------------------- /src/autobridge/HLSParser/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/autobridge/HLSParser/tapa/DataflowGraphTapa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/HLSParser/tapa/DataflowGraphTapa.py -------------------------------------------------------------------------------- /src/autobridge/HLSParser/tapa/ProgramJsonManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/HLSParser/tapa/ProgramJsonManager.py -------------------------------------------------------------------------------- /src/autobridge/HLSParser/tapa/SampleUserConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/HLSParser/tapa/SampleUserConfig.json -------------------------------------------------------------------------------- /src/autobridge/HLSParser/tapa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/HLSParser/tapa/__init__.py -------------------------------------------------------------------------------- /src/autobridge/HLSParser/vivado_hls/HLSProjectManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/HLSParser/vivado_hls/HLSProjectManager.py -------------------------------------------------------------------------------- /src/autobridge/HLSParser/vivado_hls/TopRTLParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/HLSParser/vivado_hls/TopRTLParser.py -------------------------------------------------------------------------------- /src/autobridge/HLSParser/vivado_hls/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/autobridge/Opt/Common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Opt/Common.py -------------------------------------------------------------------------------- /src/autobridge/Opt/DataflowGraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Opt/DataflowGraph.py -------------------------------------------------------------------------------- /src/autobridge/Opt/Floorplan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Opt/Floorplan.py -------------------------------------------------------------------------------- /src/autobridge/Opt/FloorplanLegalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Opt/FloorplanLegalize.py -------------------------------------------------------------------------------- /src/autobridge/Opt/GlobalRouting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Opt/GlobalRouting.py -------------------------------------------------------------------------------- /src/autobridge/Opt/LatencyBalancing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Opt/LatencyBalancing.py -------------------------------------------------------------------------------- /src/autobridge/Opt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Opt/README.md -------------------------------------------------------------------------------- /src/autobridge/Opt/Slot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Opt/Slot.py -------------------------------------------------------------------------------- /src/autobridge/Opt/SlotManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Opt/SlotManager.py -------------------------------------------------------------------------------- /src/autobridge/Opt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/autobridge/Route/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/autobridge/Route/global_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Route/global_route.py -------------------------------------------------------------------------------- /src/autobridge/Route/latency_balancing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/Route/latency_balancing.py -------------------------------------------------------------------------------- /src/autobridge/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/autobridge/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/analyze.py -------------------------------------------------------------------------------- /src/autobridge/dotgraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/dotgraph.py -------------------------------------------------------------------------------- /src/autobridge/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/main.py -------------------------------------------------------------------------------- /src/autobridge/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/autobridge/util.py -------------------------------------------------------------------------------- /src/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UCLA-VAST/AutoBridge/HEAD/src/setup.py --------------------------------------------------------------------------------