├── Makefile └── README.md ├── README.md ├── examples ├── fft │ ├── .clangd │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── Vitis Tutorial.md │ ├── Vitis_HLS Tutorial.md │ ├── common │ │ └── include │ │ │ ├── event_timer.cpp │ │ │ ├── event_timer.hpp │ │ │ ├── logger.hpp │ │ │ ├── utils.hpp │ │ │ ├── xcl2.cpp │ │ │ └── xcl2.hpp │ ├── conn_u280.cfg │ ├── emconfig.json │ ├── global.h │ ├── host │ │ ├── fft_wrapper.hpp │ │ └── host.cpp │ ├── img │ │ ├── 2bde4ea848e911dc307525dd359e70e4.png │ │ ├── abaeeb9056d37a72a2598b4490bd3c41.png │ │ ├── image-20250106154407864.png │ │ ├── image-20250106161357212.png │ │ ├── image-20250106161814852.png │ │ ├── image-20250106164155120.png │ │ ├── image-20250106164530672.png │ │ ├── image-20250106164624970.png │ │ ├── image-20250106164843096.png │ │ ├── image-20250106164909915.png │ │ ├── image-20250106165003683.png │ │ ├── image-20250106165306262.png │ │ ├── image-20250106165321358.png │ │ ├── image-20250106165438505.png │ │ ├── image-20250106194714626.png │ │ └── image-20250108170352415.png │ ├── kernel │ │ ├── fft.cpp │ │ ├── fft.h │ │ ├── fft_test.cpp │ │ └── out.gold.dat │ ├── make_hw.sh │ ├── make_hwe.sh │ ├── make_kernel.sh │ ├── make_run.sh │ ├── make_sw.sh │ ├── remake_host.sh │ └── utils.mk └── vadd_vmul │ ├── Makefile │ ├── common │ └── include │ │ ├── event_timer.cpp │ │ ├── event_timer.hpp │ │ ├── logger.hpp │ │ ├── utils.hpp │ │ ├── xcl2.cpp │ │ └── xcl2.hpp │ ├── conn_u280.cfg │ ├── global.h │ ├── host │ ├── host.cpp │ └── vadd_vmul_wrapper.h │ ├── kernel │ ├── vadd.cpp │ ├── vadd.h │ ├── vmul.cpp │ └── vmul.h │ ├── make_hw.sh │ ├── make_hwe.sh │ ├── make_kernel.sh │ ├── make_run.sh │ ├── make_sw.sh │ ├── remake_host.sh │ └── utils.mk ├── git_push.sh ├── host └── README.md ├── img ├── add_kernel_func.png ├── add_kernel_func_u50.png ├── add_u50.png ├── add_zcu104.jpg ├── app_prj.jpg ├── build.jpg ├── common_image.jpg ├── creat_app_prj.jpg ├── empty_app.jpg ├── host_code.jpg ├── host_run_zcu104.png ├── image2sd.png ├── image_cfg.jpg ├── kernel_code.jpg ├── kernel_code_u50.png ├── kernel_setting.png ├── kernel_vitis_hls.png ├── link.png ├── link_setting.png ├── link_u50.png ├── link_vivado.jpg ├── mk_01-dig.png ├── mk_01-link.png ├── mk_01-reg.png ├── mk_01-res.png ├── mk_02-dig.png ├── mk_02-link.png ├── mk_02-reg.png ├── mk_02-res.png ├── mk_03-dig1.png ├── mk_03-dig2.png ├── mk_03-link.png ├── mk_03-res.png ├── putty.png ├── run_u50.png ├── sysroot.jpg ├── u50_platform.png ├── vitis_shell.png ├── vitis_workflow.image ├── workspace.jpg └── zcu104.jpg ├── multi-kernels ├── README.md └── src │ ├── host │ ├── event_timer.cpp │ ├── event_timer.hpp │ ├── host-01.cpp │ ├── host-01.hpp │ ├── host-02.cpp │ ├── host-02.hpp │ ├── host-03.cpp │ ├── host-03.hpp │ ├── op_host-02.hpp │ ├── vadd_host-01.hpp │ ├── vadd_host-03.hpp │ ├── vmul_host-03.hpp │ ├── xcl2.cpp │ └── xcl2.hpp │ └── kernel │ ├── vadd.cpp │ ├── vadd.hpp │ ├── vmul.cpp │ └── vmul.hpp ├── overall ├── README.md ├── src │ ├── host │ │ ├── event_timer.cpp │ │ ├── event_timer.hpp │ │ ├── host.cpp │ │ ├── host.hpp │ │ ├── vadd_host.hpp │ │ ├── xcl2.cpp │ │ └── xcl2.hpp │ └── kernel │ │ ├── vadd.cpp │ │ └── vadd.hpp ├── start_U50.md └── start_ZCU104.md ├── vitis_pid1639.str └── xrc.log /Makefile/README.md: -------------------------------------------------------------------------------- 1 | # Makefile for Vitis project 2 | 3 | TODO 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/README.md -------------------------------------------------------------------------------- /examples/fft/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/.clangd -------------------------------------------------------------------------------- /examples/fft/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/.gitignore -------------------------------------------------------------------------------- /examples/fft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/Makefile -------------------------------------------------------------------------------- /examples/fft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/README.md -------------------------------------------------------------------------------- /examples/fft/Vitis Tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/Vitis Tutorial.md -------------------------------------------------------------------------------- /examples/fft/Vitis_HLS Tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/Vitis_HLS Tutorial.md -------------------------------------------------------------------------------- /examples/fft/common/include/event_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/common/include/event_timer.cpp -------------------------------------------------------------------------------- /examples/fft/common/include/event_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/common/include/event_timer.hpp -------------------------------------------------------------------------------- /examples/fft/common/include/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/common/include/logger.hpp -------------------------------------------------------------------------------- /examples/fft/common/include/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/common/include/utils.hpp -------------------------------------------------------------------------------- /examples/fft/common/include/xcl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/common/include/xcl2.cpp -------------------------------------------------------------------------------- /examples/fft/common/include/xcl2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/common/include/xcl2.hpp -------------------------------------------------------------------------------- /examples/fft/conn_u280.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/conn_u280.cfg -------------------------------------------------------------------------------- /examples/fft/emconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/emconfig.json -------------------------------------------------------------------------------- /examples/fft/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/global.h -------------------------------------------------------------------------------- /examples/fft/host/fft_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/host/fft_wrapper.hpp -------------------------------------------------------------------------------- /examples/fft/host/host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/host/host.cpp -------------------------------------------------------------------------------- /examples/fft/img/2bde4ea848e911dc307525dd359e70e4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/img/2bde4ea848e911dc307525dd359e70e4.png -------------------------------------------------------------------------------- /examples/fft/img/abaeeb9056d37a72a2598b4490bd3c41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/img/abaeeb9056d37a72a2598b4490bd3c41.png -------------------------------------------------------------------------------- /examples/fft/img/image-20250106154407864.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/img/image-20250106154407864.png -------------------------------------------------------------------------------- /examples/fft/img/image-20250106161357212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/img/image-20250106161357212.png -------------------------------------------------------------------------------- /examples/fft/img/image-20250106161814852.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/img/image-20250106161814852.png -------------------------------------------------------------------------------- /examples/fft/img/image-20250106164155120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/img/image-20250106164155120.png -------------------------------------------------------------------------------- /examples/fft/img/image-20250106164530672.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/img/image-20250106164530672.png -------------------------------------------------------------------------------- /examples/fft/img/image-20250106164624970.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/img/image-20250106164624970.png -------------------------------------------------------------------------------- /examples/fft/img/image-20250106164843096.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/img/image-20250106164843096.png -------------------------------------------------------------------------------- /examples/fft/img/image-20250106164909915.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/img/image-20250106164909915.png -------------------------------------------------------------------------------- /examples/fft/img/image-20250106165003683.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/img/image-20250106165003683.png -------------------------------------------------------------------------------- /examples/fft/img/image-20250106165306262.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/img/image-20250106165306262.png -------------------------------------------------------------------------------- /examples/fft/img/image-20250106165321358.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/img/image-20250106165321358.png -------------------------------------------------------------------------------- /examples/fft/img/image-20250106165438505.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/img/image-20250106165438505.png -------------------------------------------------------------------------------- /examples/fft/img/image-20250106194714626.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/img/image-20250106194714626.png -------------------------------------------------------------------------------- /examples/fft/img/image-20250108170352415.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/img/image-20250108170352415.png -------------------------------------------------------------------------------- /examples/fft/kernel/fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/kernel/fft.cpp -------------------------------------------------------------------------------- /examples/fft/kernel/fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/kernel/fft.h -------------------------------------------------------------------------------- /examples/fft/kernel/fft_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/kernel/fft_test.cpp -------------------------------------------------------------------------------- /examples/fft/kernel/out.gold.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/kernel/out.gold.dat -------------------------------------------------------------------------------- /examples/fft/make_hw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/make_hw.sh -------------------------------------------------------------------------------- /examples/fft/make_hwe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/make_hwe.sh -------------------------------------------------------------------------------- /examples/fft/make_kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/make_kernel.sh -------------------------------------------------------------------------------- /examples/fft/make_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/make_run.sh -------------------------------------------------------------------------------- /examples/fft/make_sw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/make_sw.sh -------------------------------------------------------------------------------- /examples/fft/remake_host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/remake_host.sh -------------------------------------------------------------------------------- /examples/fft/utils.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/fft/utils.mk -------------------------------------------------------------------------------- /examples/vadd_vmul/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/vadd_vmul/Makefile -------------------------------------------------------------------------------- /examples/vadd_vmul/common/include/event_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/vadd_vmul/common/include/event_timer.cpp -------------------------------------------------------------------------------- /examples/vadd_vmul/common/include/event_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/vadd_vmul/common/include/event_timer.hpp -------------------------------------------------------------------------------- /examples/vadd_vmul/common/include/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/vadd_vmul/common/include/logger.hpp -------------------------------------------------------------------------------- /examples/vadd_vmul/common/include/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/vadd_vmul/common/include/utils.hpp -------------------------------------------------------------------------------- /examples/vadd_vmul/common/include/xcl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/vadd_vmul/common/include/xcl2.cpp -------------------------------------------------------------------------------- /examples/vadd_vmul/common/include/xcl2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/vadd_vmul/common/include/xcl2.hpp -------------------------------------------------------------------------------- /examples/vadd_vmul/conn_u280.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/vadd_vmul/conn_u280.cfg -------------------------------------------------------------------------------- /examples/vadd_vmul/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/vadd_vmul/global.h -------------------------------------------------------------------------------- /examples/vadd_vmul/host/host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/vadd_vmul/host/host.cpp -------------------------------------------------------------------------------- /examples/vadd_vmul/host/vadd_vmul_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/vadd_vmul/host/vadd_vmul_wrapper.h -------------------------------------------------------------------------------- /examples/vadd_vmul/kernel/vadd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/vadd_vmul/kernel/vadd.cpp -------------------------------------------------------------------------------- /examples/vadd_vmul/kernel/vadd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/vadd_vmul/kernel/vadd.h -------------------------------------------------------------------------------- /examples/vadd_vmul/kernel/vmul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/vadd_vmul/kernel/vmul.cpp -------------------------------------------------------------------------------- /examples/vadd_vmul/kernel/vmul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/vadd_vmul/kernel/vmul.h -------------------------------------------------------------------------------- /examples/vadd_vmul/make_hw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/vadd_vmul/make_hw.sh -------------------------------------------------------------------------------- /examples/vadd_vmul/make_hwe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/vadd_vmul/make_hwe.sh -------------------------------------------------------------------------------- /examples/vadd_vmul/make_kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/vadd_vmul/make_kernel.sh -------------------------------------------------------------------------------- /examples/vadd_vmul/make_run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/vadd_vmul/make_run.sh -------------------------------------------------------------------------------- /examples/vadd_vmul/make_sw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/vadd_vmul/make_sw.sh -------------------------------------------------------------------------------- /examples/vadd_vmul/remake_host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/vadd_vmul/remake_host.sh -------------------------------------------------------------------------------- /examples/vadd_vmul/utils.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/examples/vadd_vmul/utils.mk -------------------------------------------------------------------------------- /git_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/git_push.sh -------------------------------------------------------------------------------- /host/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/host/README.md -------------------------------------------------------------------------------- /img/add_kernel_func.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/add_kernel_func.png -------------------------------------------------------------------------------- /img/add_kernel_func_u50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/add_kernel_func_u50.png -------------------------------------------------------------------------------- /img/add_u50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/add_u50.png -------------------------------------------------------------------------------- /img/add_zcu104.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/add_zcu104.jpg -------------------------------------------------------------------------------- /img/app_prj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/app_prj.jpg -------------------------------------------------------------------------------- /img/build.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/build.jpg -------------------------------------------------------------------------------- /img/common_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/common_image.jpg -------------------------------------------------------------------------------- /img/creat_app_prj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/creat_app_prj.jpg -------------------------------------------------------------------------------- /img/empty_app.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/empty_app.jpg -------------------------------------------------------------------------------- /img/host_code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/host_code.jpg -------------------------------------------------------------------------------- /img/host_run_zcu104.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/host_run_zcu104.png -------------------------------------------------------------------------------- /img/image2sd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/image2sd.png -------------------------------------------------------------------------------- /img/image_cfg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/image_cfg.jpg -------------------------------------------------------------------------------- /img/kernel_code.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/kernel_code.jpg -------------------------------------------------------------------------------- /img/kernel_code_u50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/kernel_code_u50.png -------------------------------------------------------------------------------- /img/kernel_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/kernel_setting.png -------------------------------------------------------------------------------- /img/kernel_vitis_hls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/kernel_vitis_hls.png -------------------------------------------------------------------------------- /img/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/link.png -------------------------------------------------------------------------------- /img/link_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/link_setting.png -------------------------------------------------------------------------------- /img/link_u50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/link_u50.png -------------------------------------------------------------------------------- /img/link_vivado.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/link_vivado.jpg -------------------------------------------------------------------------------- /img/mk_01-dig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/mk_01-dig.png -------------------------------------------------------------------------------- /img/mk_01-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/mk_01-link.png -------------------------------------------------------------------------------- /img/mk_01-reg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/mk_01-reg.png -------------------------------------------------------------------------------- /img/mk_01-res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/mk_01-res.png -------------------------------------------------------------------------------- /img/mk_02-dig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/mk_02-dig.png -------------------------------------------------------------------------------- /img/mk_02-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/mk_02-link.png -------------------------------------------------------------------------------- /img/mk_02-reg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/mk_02-reg.png -------------------------------------------------------------------------------- /img/mk_02-res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/mk_02-res.png -------------------------------------------------------------------------------- /img/mk_03-dig1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/mk_03-dig1.png -------------------------------------------------------------------------------- /img/mk_03-dig2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/mk_03-dig2.png -------------------------------------------------------------------------------- /img/mk_03-link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/mk_03-link.png -------------------------------------------------------------------------------- /img/mk_03-res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/mk_03-res.png -------------------------------------------------------------------------------- /img/putty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/putty.png -------------------------------------------------------------------------------- /img/run_u50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/run_u50.png -------------------------------------------------------------------------------- /img/sysroot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/sysroot.jpg -------------------------------------------------------------------------------- /img/u50_platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/u50_platform.png -------------------------------------------------------------------------------- /img/vitis_shell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/vitis_shell.png -------------------------------------------------------------------------------- /img/vitis_workflow.image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/vitis_workflow.image -------------------------------------------------------------------------------- /img/workspace.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/workspace.jpg -------------------------------------------------------------------------------- /img/zcu104.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/img/zcu104.jpg -------------------------------------------------------------------------------- /multi-kernels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/multi-kernels/README.md -------------------------------------------------------------------------------- /multi-kernels/src/host/event_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/multi-kernels/src/host/event_timer.cpp -------------------------------------------------------------------------------- /multi-kernels/src/host/event_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/multi-kernels/src/host/event_timer.hpp -------------------------------------------------------------------------------- /multi-kernels/src/host/host-01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/multi-kernels/src/host/host-01.cpp -------------------------------------------------------------------------------- /multi-kernels/src/host/host-01.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/multi-kernels/src/host/host-01.hpp -------------------------------------------------------------------------------- /multi-kernels/src/host/host-02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/multi-kernels/src/host/host-02.cpp -------------------------------------------------------------------------------- /multi-kernels/src/host/host-02.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/multi-kernels/src/host/host-02.hpp -------------------------------------------------------------------------------- /multi-kernels/src/host/host-03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/multi-kernels/src/host/host-03.cpp -------------------------------------------------------------------------------- /multi-kernels/src/host/host-03.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/multi-kernels/src/host/host-03.hpp -------------------------------------------------------------------------------- /multi-kernels/src/host/op_host-02.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/multi-kernels/src/host/op_host-02.hpp -------------------------------------------------------------------------------- /multi-kernels/src/host/vadd_host-01.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/multi-kernels/src/host/vadd_host-01.hpp -------------------------------------------------------------------------------- /multi-kernels/src/host/vadd_host-03.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/multi-kernels/src/host/vadd_host-03.hpp -------------------------------------------------------------------------------- /multi-kernels/src/host/vmul_host-03.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/multi-kernels/src/host/vmul_host-03.hpp -------------------------------------------------------------------------------- /multi-kernels/src/host/xcl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/multi-kernels/src/host/xcl2.cpp -------------------------------------------------------------------------------- /multi-kernels/src/host/xcl2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/multi-kernels/src/host/xcl2.hpp -------------------------------------------------------------------------------- /multi-kernels/src/kernel/vadd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/multi-kernels/src/kernel/vadd.cpp -------------------------------------------------------------------------------- /multi-kernels/src/kernel/vadd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/multi-kernels/src/kernel/vadd.hpp -------------------------------------------------------------------------------- /multi-kernels/src/kernel/vmul.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/multi-kernels/src/kernel/vmul.cpp -------------------------------------------------------------------------------- /multi-kernels/src/kernel/vmul.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/multi-kernels/src/kernel/vmul.hpp -------------------------------------------------------------------------------- /overall/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/overall/README.md -------------------------------------------------------------------------------- /overall/src/host/event_timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/overall/src/host/event_timer.cpp -------------------------------------------------------------------------------- /overall/src/host/event_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/overall/src/host/event_timer.hpp -------------------------------------------------------------------------------- /overall/src/host/host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/overall/src/host/host.cpp -------------------------------------------------------------------------------- /overall/src/host/host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/overall/src/host/host.hpp -------------------------------------------------------------------------------- /overall/src/host/vadd_host.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/overall/src/host/vadd_host.hpp -------------------------------------------------------------------------------- /overall/src/host/xcl2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/overall/src/host/xcl2.cpp -------------------------------------------------------------------------------- /overall/src/host/xcl2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/overall/src/host/xcl2.hpp -------------------------------------------------------------------------------- /overall/src/kernel/vadd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/overall/src/kernel/vadd.cpp -------------------------------------------------------------------------------- /overall/src/kernel/vadd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/overall/src/kernel/vadd.hpp -------------------------------------------------------------------------------- /overall/start_U50.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/overall/start_U50.md -------------------------------------------------------------------------------- /overall/start_ZCU104.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/overall/start_ZCU104.md -------------------------------------------------------------------------------- /vitis_pid1639.str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/vitis_pid1639.str -------------------------------------------------------------------------------- /xrc.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Reconfigurable-Computing/Vitis_workflow/HEAD/xrc.log --------------------------------------------------------------------------------