├── .clangd ├── .gitattributes ├── .github ├── CODEOWNERS ├── dco.yml ├── pull_request_template.md ├── scripts │ ├── clang-tidy-review.py │ └── pipeline │ │ ├── attach_cards.sh │ │ ├── build_xrt.sh │ │ ├── create_vm.sh │ │ ├── install_platform.sh │ │ ├── install_xrt.sh │ │ └── template.xml └── workflows │ ├── README.md │ ├── binary_check.yml │ ├── call_mirror.yml │ ├── clangtidy-post.yml │ ├── clangtidy-review.yml │ ├── clangtidy.yml │ ├── codeql-analysis.yml │ ├── coverity.yml │ ├── coverity2.yml │ ├── pipeline.yml │ ├── xrt_ci.yml │ └── xrt_master_2026.1.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CHANGELOG.rst ├── CMakeLists.txt ├── CONTRIBUTING.rst ├── LICENSE ├── NOTICE ├── README.rst ├── pyrightconfig.json ├── src ├── .clang-tidy ├── CMake │ ├── Findlibdw.cmake │ ├── Findlibelf.cmake │ ├── Findlibffi.cmake │ ├── boostUtil.cmake │ ├── ccache.cmake │ ├── changelog.cmake │ ├── components.cmake │ ├── config │ │ ├── dkms-awsmgmt │ │ │ └── dkms.conf.in │ │ ├── dkms-azure.conf.in │ │ ├── dkms-container.conf.in │ │ ├── dkms-xocl │ │ │ └── dkms.conf.in │ │ ├── dkms-zocl │ │ │ └── dkms.conf.in │ │ ├── postinst-aws.in │ │ ├── postinst-azure.in │ │ ├── postinst-container.in │ │ ├── postinst-edge.in │ │ ├── postinst.in │ │ ├── prerm-aws.in │ │ ├── prerm-azure.in │ │ ├── prerm-container.in │ │ ├── prerm-edge.in │ │ ├── prerm.in │ │ ├── testBashWrapper.sh.in │ │ ├── version-slim.h.in │ │ ├── version.h.in │ │ ├── version.json.in │ │ ├── version.rc.in │ │ ├── xilinx.icd.in │ │ ├── xrt-aws.pc.in │ │ ├── xrt-edge.fp.in │ │ ├── xrt-edge.pc.in │ │ ├── xrt.fp.in │ │ └── xrt.pc.in │ ├── coverity.cmake │ ├── cpack-windows-sdk.cmake │ ├── cpackLin.cmake │ ├── cpackWin.cmake │ ├── dkms-aws.cmake │ ├── dkms-azure.cmake │ ├── dkms-container.cmake │ ├── dkms-edge.cmake │ ├── dkms.cmake │ ├── embedded_system.cmake │ ├── findpackage.cmake │ ├── icd.cmake │ ├── lint.cmake │ ├── nativeLnx.cmake │ ├── nativeTests.cmake │ ├── nativeWin.cmake │ ├── patch │ │ └── CPackDeb.cmake │ ├── pkgconfig.cmake │ ├── resources │ │ ├── XilinxBanner.bmp │ │ └── XilinxDialog.bmp │ ├── settings.cmake │ ├── tags.cmake │ ├── unitTestSupport.cmake │ ├── utilities.cmake │ ├── version.cmake │ └── xrtVariables.cmake ├── CMakeLists.txt ├── include │ └── 1_2 │ │ └── CL │ │ ├── cl2xrt.hpp │ │ ├── cl_ext.h │ │ ├── cl_ext_xilinx.h │ │ └── cl_gl_ext.h ├── platform │ └── README.md ├── python │ ├── CMakeLists.txt │ └── pybind11 │ │ ├── CMakeLists.txt │ │ └── src │ │ └── pyxrt.cpp └── runtime_src │ ├── CMakeLists.txt │ ├── core │ ├── CMakeLists.txt │ ├── common │ │ ├── AlignedAllocator.h │ │ ├── CMakeLists.txt │ │ ├── api │ │ │ ├── CMakeLists.txt │ │ │ ├── aie │ │ │ │ └── xrt_graph.cpp │ │ │ ├── bo.h │ │ │ ├── bo_int.h │ │ │ ├── command.h │ │ │ ├── context_mgr.cpp │ │ │ ├── context_mgr.h │ │ │ ├── device_int.h │ │ │ ├── elf_int.h │ │ │ ├── error_int.h │ │ │ ├── fence_int.h │ │ │ ├── handle.h │ │ │ ├── hw_context_int.h │ │ │ ├── hw_queue.cpp │ │ │ ├── hw_queue.h │ │ │ ├── ip_int.h │ │ │ ├── kernel_int.h │ │ │ ├── module_int.h │ │ │ ├── native_profile.cpp │ │ │ ├── native_profile.h │ │ │ ├── xclbin_int.h │ │ │ ├── xrt_bo.cpp │ │ │ ├── xrt_device.cpp │ │ │ ├── xrt_elf.cpp │ │ │ ├── xrt_error.cpp │ │ │ ├── xrt_fence.cpp │ │ │ ├── xrt_hw_context.cpp │ │ │ ├── xrt_ini.cpp │ │ │ ├── xrt_ip.cpp │ │ │ ├── xrt_kernel.cpp │ │ │ ├── xrt_message.cpp │ │ │ ├── xrt_module.cpp │ │ │ ├── xrt_profile.cpp │ │ │ ├── xrt_queue.cpp │ │ │ ├── xrt_system.cpp │ │ │ ├── xrt_version.cpp │ │ │ └── xrt_xclbin.cpp │ │ ├── archive.cpp │ │ ├── archive.h │ │ ├── bo_cache.h │ │ ├── buffer_dumper.cpp │ │ ├── buffer_dumper.h │ │ ├── config.h │ │ ├── config_reader.cpp │ │ ├── config_reader.h │ │ ├── cuidx_type.h │ │ ├── debug.cpp │ │ ├── debug.h │ │ ├── debug_ip.cpp │ │ ├── debug_ip.h │ │ ├── detail │ │ │ ├── linux │ │ │ │ ├── sysinfo.h │ │ │ │ ├── systime.h │ │ │ │ ├── trace.h │ │ │ │ ├── trace_init.h │ │ │ │ └── xilinx_xrt.h │ │ │ ├── sysinfo.h │ │ │ ├── systime.h │ │ │ ├── trace.h │ │ │ ├── trace_init.h │ │ │ ├── windows │ │ │ │ ├── sysinfo.h │ │ │ │ ├── systime.h │ │ │ │ ├── trace.h │ │ │ │ ├── trace_init.h │ │ │ │ └── xilinx_xrt.h │ │ │ └── xilinx_xrt.h │ │ ├── device.cpp │ │ ├── device.h │ │ ├── dlfcn.h │ │ ├── drv │ │ │ ├── Makefile │ │ │ ├── cu_hls.c │ │ │ ├── fast_adapter.c │ │ │ ├── include │ │ │ │ ├── cu_xgq.h │ │ │ │ ├── kds_client.h │ │ │ │ ├── kds_command.h │ │ │ │ ├── kds_core.h │ │ │ │ ├── kds_ert_table.h │ │ │ │ ├── kds_hwctx.h │ │ │ │ ├── kds_stat.h │ │ │ │ ├── xgq_execbuf.h │ │ │ │ ├── xrt_cu.h │ │ │ │ ├── xrt_drv.h │ │ │ │ ├── xrt_ert.h │ │ │ │ └── xrt_xclbin.h │ │ │ ├── kds_core.c │ │ │ ├── kds_hwctx.c │ │ │ ├── xgq_execbuf.c │ │ │ ├── xrt_cu.c │ │ │ └── xrt_xclbin.c │ │ ├── error.cpp │ │ ├── error.h │ │ ├── info_aie.cpp │ │ ├── info_aie.h │ │ ├── info_aie2.cpp │ │ ├── info_aie2.h │ │ ├── info_memory.cpp │ │ ├── info_memory.h │ │ ├── info_platform.cpp │ │ ├── info_platform.h │ │ ├── info_telemetry.cpp │ │ ├── info_telemetry.h │ │ ├── info_vmr.cpp │ │ ├── info_vmr.h │ │ ├── ishim.h │ │ ├── json │ │ │ └── nlohmann │ │ │ │ ├── json.hpp │ │ │ │ └── json_fwd.hpp │ │ ├── linux │ │ │ └── linux_utils.h │ │ ├── memaccess.cpp │ │ ├── memaccess.h │ │ ├── memalign.h │ │ ├── message.cpp │ │ ├── message.h │ │ ├── module_loader.cpp │ │ ├── module_loader.h │ │ ├── query.h │ │ ├── query_requests.cpp │ │ ├── query_requests.h │ │ ├── query_reset.h │ │ ├── runner │ │ │ ├── CMakeLists.txt │ │ │ ├── README.md │ │ │ ├── cpu.cpp │ │ │ ├── cpu.h │ │ │ ├── main.cpp │ │ │ ├── profile.md │ │ │ ├── recipe.md │ │ │ ├── runner.cpp │ │ │ ├── runner.h │ │ │ ├── schema │ │ │ │ ├── jobs.report.schema.json │ │ │ │ └── recipe.schema.json │ │ │ └── test │ │ │ │ ├── .gitignore │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── README.md │ │ │ │ ├── cpulib.cpp │ │ │ │ ├── jobs_report_to_csv.py │ │ │ │ ├── profile.json │ │ │ │ ├── recipe.cpp │ │ │ │ ├── recipe.json │ │ │ │ ├── runner-profile.cpp │ │ │ │ ├── runner.cpp │ │ │ │ ├── schema-validator.py │ │ │ │ └── tcpu.cpp │ │ ├── scheduler.cpp │ │ ├── scheduler.h │ │ ├── scope_guard.h │ │ ├── sensor.cpp │ │ ├── sensor.h │ │ ├── shim │ │ │ ├── aie_buffer_handle.h │ │ │ ├── buffer_handle.h │ │ │ ├── fence_handle.h │ │ │ ├── graph_handle.h │ │ │ ├── hwctx_handle.h │ │ │ ├── hwqueue_handle.h │ │ │ ├── profile_handle.h │ │ │ └── shared_handle.h │ │ ├── smi.cpp │ │ ├── smi.h │ │ ├── span.h │ │ ├── sysinfo.cpp │ │ ├── sysinfo.h │ │ ├── system.cpp │ │ ├── system.h │ │ ├── task.h │ │ ├── test │ │ │ ├── CMakeLists.txt │ │ │ └── archive.cpp │ │ ├── thread.cpp │ │ ├── thread.h │ │ ├── time.cpp │ │ ├── time.h │ │ ├── trace.cpp │ │ ├── trace.h │ │ ├── unistd.h │ │ ├── usage_metrics.cpp │ │ ├── usage_metrics.h │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── uuid.h │ │ ├── windows │ │ │ └── win_utils.h │ │ ├── xclbin_parser.cpp │ │ ├── xclbin_parser.h │ │ ├── xclbin_swemu.cpp │ │ ├── xclbin_swemu.h │ │ ├── xdp │ │ │ ├── CMakeLists.txt │ │ │ ├── profile.cpp │ │ │ └── profile.h │ │ └── xrt_profiling.h │ ├── edge │ │ ├── CMakeLists.txt │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── aie_parser.cpp │ │ │ ├── aie_parser.h │ │ │ ├── device_edge.cpp │ │ │ ├── device_edge.h │ │ │ ├── system_edge.cpp │ │ │ └── system_edge.h │ │ ├── common_em │ │ │ ├── CMakeLists.txt │ │ │ ├── config.cxx │ │ │ ├── config.h │ │ │ ├── em_defines.h │ │ │ ├── memorymanager.cxx │ │ │ ├── memorymanager.h │ │ │ ├── rpc_messages.proto │ │ │ ├── system_utils.cxx │ │ │ ├── system_utils.h │ │ │ ├── unix_socket.cxx │ │ │ └── unix_socket.h │ │ ├── drm │ │ │ ├── Makefile │ │ │ ├── Makefile.native │ │ │ ├── README │ │ │ ├── build_aarch.sh │ │ │ ├── build_zgem.csh │ │ │ └── zocl │ │ │ │ ├── .dir-locals.el │ │ │ │ ├── 10-zocl.rules │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── common │ │ │ │ ├── cu.c │ │ │ │ ├── zocl_bo.c │ │ │ │ ├── zocl_drv.c │ │ │ │ ├── zocl_ioctl.c │ │ │ │ ├── zocl_kds.c │ │ │ │ ├── zocl_sysfs.c │ │ │ │ └── zocl_xclbin.c │ │ │ │ ├── edge │ │ │ │ ├── zocl_aie.c │ │ │ │ ├── zocl_cu.c │ │ │ │ ├── zocl_dma.c │ │ │ │ ├── zocl_edge_kds.c │ │ │ │ ├── zocl_edge_xclbin.c │ │ │ │ ├── zocl_error.c │ │ │ │ ├── zocl_hwctx.c │ │ │ │ └── zocl_mailbox.c │ │ │ │ ├── include │ │ │ │ ├── zocl_aie.h │ │ │ │ ├── zocl_bo.h │ │ │ │ ├── zocl_cu.h │ │ │ │ ├── zocl_cu_xgq.h │ │ │ │ ├── zocl_dma.h │ │ │ │ ├── zocl_drv.h │ │ │ │ ├── zocl_error.h │ │ │ │ ├── zocl_ert.h │ │ │ │ ├── zocl_ert_intc.h │ │ │ │ ├── zocl_hwctx.h │ │ │ │ ├── zocl_ioctl.h │ │ │ │ ├── zocl_kds.h │ │ │ │ ├── zocl_lib.h │ │ │ │ ├── zocl_mailbox.h │ │ │ │ ├── zocl_ospi_versal.h │ │ │ │ ├── zocl_sk.h │ │ │ │ ├── zocl_util.h │ │ │ │ ├── zocl_xclbin.h │ │ │ │ ├── zocl_xgq.h │ │ │ │ └── zocl_xgq_plat.h │ │ │ │ └── zert │ │ │ │ ├── cu_scu.c │ │ │ │ ├── scu.c │ │ │ │ ├── zocl_csr_intc.c │ │ │ │ ├── zocl_ctrl_ert.c │ │ │ │ ├── zocl_cu_xgq.c │ │ │ │ ├── zocl_ert.c │ │ │ │ ├── zocl_lib.c │ │ │ │ ├── zocl_ospi_versal.c │ │ │ │ ├── zocl_ov_sysfs.c │ │ │ │ ├── zocl_ps_kds.c │ │ │ │ ├── zocl_ps_xclbin.c │ │ │ │ ├── zocl_rpu_channel.c │ │ │ │ ├── zocl_sk.c │ │ │ │ ├── zocl_xgq.c │ │ │ │ └── zocl_xgq_intc.c │ │ ├── hw_emu │ │ │ ├── CMakeLists.txt │ │ │ ├── pllauncher_defines.h │ │ │ └── shim_hwemu.cpp │ │ ├── include │ │ │ ├── CMakeLists.txt │ │ │ ├── pscontext.h │ │ │ ├── sk_types.h │ │ │ ├── xclhal2_mpsoc.h │ │ │ ├── zynq_ioctl.h │ │ │ └── zynq_perfmon_params.h │ │ ├── ps_kernels │ │ │ ├── CMakeLists.txt │ │ │ ├── profiling │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── aie2_profile_config │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── aie2_profile_config.cpp │ │ │ │ │ └── profile_event_configuration.h │ │ │ │ ├── aie2_trace_config │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── aie2_trace_config.cpp │ │ │ │ │ └── event_configuration.h │ │ │ │ ├── aie_profile_config │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── aie_profile_config.cpp │ │ │ │ │ └── profile_event_configuration.h │ │ │ │ ├── aie_trace_config │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── aie_trace_config.cpp │ │ │ │ │ └── event_configuration.h │ │ │ │ └── aie_trace_gmio │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ └── gmio_config_kernel.cpp │ │ │ ├── sample │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── pskernel.cpp │ │ │ └── xrt │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── instance_query │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── instance_query.cpp │ │ │ │ └── tests │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── validate │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── ps_aie_test │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── ps_aie.cpp │ │ │ │ ├── ps_bandwidth_test │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── ps_bandwidth.cpp │ │ │ │ ├── ps_validate_test │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── ps_validate.cpp │ │ │ │ └── test_dependencies.json │ │ ├── skd │ │ │ ├── CMakeLists.txt │ │ │ ├── main.cpp │ │ │ ├── sk_daemon.cpp │ │ │ ├── sk_daemon.h │ │ │ ├── xrt_skd.cpp │ │ │ └── xrt_skd.h │ │ ├── sw_emu │ │ │ ├── CMakeLists.txt │ │ │ └── generic_pcie_hal2 │ │ │ │ ├── device_swemu.cxx │ │ │ │ ├── device_swemu.h │ │ │ │ ├── halapi.cxx │ │ │ │ ├── pllauncher_defines.h │ │ │ │ ├── shim.cxx │ │ │ │ ├── shim.h │ │ │ │ ├── swscheduler.cxx │ │ │ │ ├── swscheduler.h │ │ │ │ ├── system_swemu.cxx │ │ │ │ └── system_swemu.h │ │ ├── test │ │ │ ├── add1_zgem.cpp │ │ │ ├── add1_zgem_64.cpp │ │ │ └── zgem1.c │ │ └── user │ │ │ ├── CMakeLists.txt │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── aie │ │ │ ├── CMakeLists.txt │ │ │ ├── aie.cpp │ │ │ ├── aie.h │ │ │ ├── aie_buffer_object.cpp │ │ │ ├── aie_buffer_object.h │ │ │ ├── aied.cpp │ │ │ ├── aied.h │ │ │ ├── aiereg.h │ │ │ ├── common_layer │ │ │ │ ├── adf_aie_control_api.h │ │ │ │ ├── adf_api_config.h │ │ │ │ ├── adf_api_message.cpp │ │ │ │ ├── adf_api_message.h │ │ │ │ ├── adf_profiling_api.cpp │ │ │ │ ├── adf_profiling_api.h │ │ │ │ ├── adf_runtime_api.cpp │ │ │ │ ├── adf_runtime_api.h │ │ │ │ ├── fal_util.cpp │ │ │ │ └── fal_util.h │ │ │ ├── graph_object.cpp │ │ │ ├── graph_object.h │ │ │ ├── profile_object.cpp │ │ │ └── profile_object.h │ │ │ ├── aie_sys_parser.cpp │ │ │ ├── aie_sys_parser.h │ │ │ ├── dev.cpp │ │ │ ├── dev.h │ │ │ ├── dev_zocl.cpp │ │ │ ├── dev_zocl.h │ │ │ ├── device_linux.cpp │ │ │ ├── device_linux.h │ │ │ ├── drv.h │ │ │ ├── drv_zocl.cpp │ │ │ ├── drv_zocl.h │ │ │ ├── hwctx_object.cpp │ │ │ ├── hwctx_object.h │ │ │ ├── plugin │ │ │ └── xdp │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── aie_debug.cpp │ │ │ │ ├── aie_debug.h │ │ │ │ ├── aie_profile.cpp │ │ │ │ ├── aie_profile.h │ │ │ │ ├── aie_status.cpp │ │ │ │ ├── aie_status.h │ │ │ │ ├── aie_trace.cpp │ │ │ │ ├── aie_trace.h │ │ │ │ ├── hal_api_interface.cpp │ │ │ │ ├── hal_api_interface.h │ │ │ │ ├── hal_device_offload.cpp │ │ │ │ ├── hal_device_offload.h │ │ │ │ ├── hal_profile.cpp │ │ │ │ ├── hal_profile.h │ │ │ │ ├── hw_emu_device_offload.cpp │ │ │ │ ├── hw_emu_device_offload.h │ │ │ │ ├── noc_profile.cpp │ │ │ │ ├── noc_profile.h │ │ │ │ ├── plugin_loader.cpp │ │ │ │ ├── plugin_loader.h │ │ │ │ ├── sc_profile.cpp │ │ │ │ ├── sc_profile.h │ │ │ │ ├── shim_callbacks.h │ │ │ │ ├── vart_profile.cpp │ │ │ │ └── vart_profile.h │ │ │ ├── shim.cpp │ │ │ ├── shim.h │ │ │ ├── smi_edge.cpp │ │ │ ├── smi_edge.h │ │ │ ├── system_linux.cpp │ │ │ ├── system_linux.h │ │ │ └── test │ │ │ ├── compile.sh │ │ │ ├── usertest │ │ │ ├── xclHALProxy2.cpp │ │ │ ├── xclHALProxy2.h │ │ │ └── zynq_user_test_add1.cpp │ ├── include │ │ ├── CMakeLists.txt │ │ ├── deprecated │ │ │ ├── xcl_app_debug.h │ │ │ ├── xcl_axi_checker_codes.h │ │ │ └── xclperf.h │ │ ├── ert.h │ │ ├── ert_fa.h │ │ ├── experimental │ │ │ ├── CMakeLists.txt │ │ │ ├── template.txt │ │ │ ├── xclbin-util.h │ │ │ ├── xclbin_util.h │ │ │ ├── xrt-next.h │ │ │ ├── xrt_aie.h │ │ │ ├── xrt_bo.h │ │ │ ├── xrt_device.h │ │ │ ├── xrt_elf.h │ │ │ ├── xrt_error.h │ │ │ ├── xrt_exception.h │ │ │ ├── xrt_ext.h │ │ │ ├── xrt_fence.h │ │ │ ├── xrt_graph.h │ │ │ ├── xrt_hw_context.h │ │ │ ├── xrt_ini.h │ │ │ ├── xrt_ip.h │ │ │ ├── xrt_kernel.h │ │ │ ├── xrt_mailbox.h │ │ │ ├── xrt_message.h │ │ │ ├── xrt_module.h │ │ │ ├── xrt_profile.h │ │ │ ├── xrt_queue.h │ │ │ ├── xrt_system.h │ │ │ ├── xrt_uuid.h │ │ │ ├── xrt_version.h │ │ │ └── xrt_xclbin.h │ │ ├── ps_kernel.h │ │ ├── shim_int.h │ │ ├── stream.h │ │ ├── types.h │ │ ├── unittests │ │ │ ├── CMakeLists.txt │ │ │ └── xrt_c_compilation │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── main.c │ │ ├── xbar_sys_parameters.h │ │ ├── xcl_api_macros.h │ │ ├── xcl_app_debug.h │ │ ├── xcl_axi_checker_codes.h │ │ ├── xcl_graph.h │ │ ├── xcl_macros.h │ │ ├── xclbin.h │ │ ├── xclerr.h │ │ ├── xclerr_int.h │ │ ├── xclfeatures.h │ │ ├── xclhal2.h │ │ ├── xclhal2_mem.h │ │ ├── xclperf.h │ │ ├── xdp │ │ │ ├── add.h │ │ │ ├── aim.h │ │ │ ├── am.h │ │ │ ├── app_debug.h │ │ │ ├── asm.h │ │ │ ├── axi_checker_codes.h │ │ │ ├── common.h │ │ │ ├── counters.h │ │ │ ├── fifo.h │ │ │ ├── hal_api.h │ │ │ ├── lapc.h │ │ │ ├── spc.h │ │ │ └── trace.h │ │ ├── xgq_cmd_common.h │ │ ├── xgq_cmd_ert.h │ │ ├── xgq_cmd_vmr.h │ │ ├── xgq_impl.h │ │ ├── xgq_resp_parser.h │ │ ├── xrt.h │ │ ├── xrt │ │ │ ├── CMakeLists.txt │ │ │ ├── deprecated │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── xclerr.h │ │ │ │ └── xrt.h │ │ │ ├── detail │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── abi.h │ │ │ │ ├── any.h │ │ │ │ ├── bitmask.h │ │ │ │ ├── config.h │ │ │ │ ├── ert.h │ │ │ │ ├── param_traits.h │ │ │ │ ├── pimpl.h │ │ │ │ ├── span.h │ │ │ │ ├── windows │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── types.h │ │ │ │ │ └── uuid.h │ │ │ │ ├── xclbin.h │ │ │ │ ├── xrt_error_code.h │ │ │ │ └── xrt_mem.h │ │ │ ├── experimental │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── xclbin_util.h │ │ │ │ ├── xrt-next.h │ │ │ │ ├── xrt_aie.h │ │ │ │ ├── xrt_bo.h │ │ │ │ ├── xrt_device.h │ │ │ │ ├── xrt_elf.h │ │ │ │ ├── xrt_error.h │ │ │ │ ├── xrt_exception.h │ │ │ │ ├── xrt_ext.h │ │ │ │ ├── xrt_fence.h │ │ │ │ ├── xrt_graph.h │ │ │ │ ├── xrt_hw_context.h │ │ │ │ ├── xrt_ini.h │ │ │ │ ├── xrt_ip.h │ │ │ │ ├── xrt_kernel.h │ │ │ │ ├── xrt_mailbox.h │ │ │ │ ├── xrt_message.h │ │ │ │ ├── xrt_module.h │ │ │ │ ├── xrt_profile.h │ │ │ │ ├── xrt_queue.h │ │ │ │ ├── xrt_system.h │ │ │ │ ├── xrt_uuid.h │ │ │ │ ├── xrt_version.h │ │ │ │ └── xrt_xclbin.h │ │ │ ├── xrt_aie.h │ │ │ ├── xrt_bo.h │ │ │ ├── xrt_device.h │ │ │ ├── xrt_graph.h │ │ │ ├── xrt_hw_context.h │ │ │ ├── xrt_kernel.h │ │ │ └── xrt_uuid.h │ │ ├── xrt_error_code.h │ │ ├── xrt_hwqueue.h │ │ ├── xrt_mem.h │ │ └── xstream.h │ ├── pcie │ │ ├── CMakeLists.txt │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── aie_stubs.cpp │ │ │ ├── device_pcie.cpp │ │ │ ├── device_pcie.h │ │ │ ├── system_pcie.cpp │ │ │ └── system_pcie.h │ │ ├── driver │ │ │ ├── .dir-locals.el │ │ │ ├── aws │ │ │ │ └── kernel │ │ │ │ │ ├── .dir-locals.el │ │ │ │ │ ├── Makefile │ │ │ │ │ └── mgmt │ │ │ │ │ ├── 10-awsmgmt.rules │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clkwiz.py │ │ │ │ │ ├── mgmt-bit.c │ │ │ │ │ ├── mgmt-bit.h │ │ │ │ │ ├── mgmt-core.c │ │ │ │ │ ├── mgmt-core.h │ │ │ │ │ ├── mgmt-cw.c │ │ │ │ │ ├── mgmt-cw.h │ │ │ │ │ ├── mgmt-firewall.c │ │ │ │ │ ├── mgmt-sysfs.c │ │ │ │ │ ├── mgmt-thread.c │ │ │ │ │ └── wiz.pl │ │ │ ├── linux │ │ │ │ ├── include │ │ │ │ │ ├── cdev_ctrl.h │ │ │ │ │ ├── flash_xrt_data.h │ │ │ │ │ ├── libxdma_api.h │ │ │ │ │ ├── mailbox_proto.h │ │ │ │ │ ├── mgmt-ioctl.h │ │ │ │ │ ├── mgmt-reg.h │ │ │ │ │ ├── profile_ioctl.h │ │ │ │ │ ├── qdma_ioctl.h │ │ │ │ │ ├── xocl_ioctl.h │ │ │ │ │ └── xocl_xgq.h │ │ │ │ └── xocl │ │ │ │ │ ├── .dir-locals.el │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── devices.h │ │ │ │ │ ├── lib │ │ │ │ │ ├── Makefile.in │ │ │ │ │ ├── cdev_sgdma.h │ │ │ │ │ ├── libfdt │ │ │ │ │ │ ├── fdt.c │ │ │ │ │ │ ├── fdt.h │ │ │ │ │ │ ├── fdt_addresses.c │ │ │ │ │ │ ├── fdt_empty_tree.c │ │ │ │ │ │ ├── fdt_overlay.c │ │ │ │ │ │ ├── fdt_ro.c │ │ │ │ │ │ ├── fdt_rw.c │ │ │ │ │ │ ├── fdt_strerror.c │ │ │ │ │ │ ├── fdt_sw.c │ │ │ │ │ │ ├── fdt_wip.c │ │ │ │ │ │ ├── libfdt.h │ │ │ │ │ │ ├── libfdt_env.h │ │ │ │ │ │ └── libfdt_internal.h │ │ │ │ │ ├── libxdma.c │ │ │ │ │ ├── libxdma.h │ │ │ │ │ └── libxdma_api.h │ │ │ │ │ ├── mgmtpf │ │ │ │ │ ├── 99-xclmgmt.rules │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── mgmt-bifurcation-reset.c │ │ │ │ │ ├── mgmt-core.c │ │ │ │ │ ├── mgmt-core.h │ │ │ │ │ ├── mgmt-cw.c │ │ │ │ │ ├── mgmt-ioctl.c │ │ │ │ │ ├── mgmt-sysfs.c │ │ │ │ │ ├── mgmt-utils.c │ │ │ │ │ └── xclmgmt.dracut.conf │ │ │ │ │ ├── subdev │ │ │ │ │ ├── accel_deadlock_detector.c │ │ │ │ │ ├── address_translator.c │ │ │ │ │ ├── aim.c │ │ │ │ │ ├── am.c │ │ │ │ │ ├── asm.c │ │ │ │ │ ├── axigate.c │ │ │ │ │ ├── calib_storage.c │ │ │ │ │ ├── cfg_gpio.c │ │ │ │ │ ├── clock_counter.c │ │ │ │ │ ├── clock_wiz.c │ │ │ │ │ ├── command_queue.c │ │ │ │ │ ├── cu.c │ │ │ │ │ ├── cu_xgq.c │ │ │ │ │ ├── ddr_srsr.c │ │ │ │ │ ├── dna.c │ │ │ │ │ ├── ert.c │ │ │ │ │ ├── ert_ctrl.c │ │ │ │ │ ├── ert_user.c │ │ │ │ │ ├── feature_rom.c │ │ │ │ │ ├── firewall.c │ │ │ │ │ ├── flash.c │ │ │ │ │ ├── fmgr.c │ │ │ │ │ ├── hwmon_sdm.c │ │ │ │ │ ├── icap.c │ │ │ │ │ ├── icap_cntrl.c │ │ │ │ │ ├── intc.c │ │ │ │ │ ├── iores.c │ │ │ │ │ ├── lapc.c │ │ │ │ │ ├── m2m.c │ │ │ │ │ ├── mailbox.c │ │ │ │ │ ├── mailbox_versal.c │ │ │ │ │ ├── memory_hbm.c │ │ │ │ │ ├── mgmt_msix.c │ │ │ │ │ ├── microblaze.c │ │ │ │ │ ├── mig.c │ │ │ │ │ ├── msix_xdma.c │ │ │ │ │ ├── nifd.c │ │ │ │ │ ├── ospi_versal.c │ │ │ │ │ ├── p2p.c │ │ │ │ │ ├── pcie_firewall.c │ │ │ │ │ ├── pmc.c │ │ │ │ │ ├── ps.c │ │ │ │ │ ├── qdma.c │ │ │ │ │ ├── scu.c │ │ │ │ │ ├── spc.c │ │ │ │ │ ├── sysmon.c │ │ │ │ │ ├── trace_fifo_full.c │ │ │ │ │ ├── trace_fifo_lite.c │ │ │ │ │ ├── trace_funnel.c │ │ │ │ │ ├── trace_s2mm.c │ │ │ │ │ ├── ulite.c │ │ │ │ │ ├── version_ctrl.c │ │ │ │ │ ├── xdma.c │ │ │ │ │ ├── xgq_vmr.c │ │ │ │ │ ├── xiic.c │ │ │ │ │ ├── xmc.c │ │ │ │ │ ├── xmc_u2.c │ │ │ │ │ └── xvc.c │ │ │ │ │ ├── userpf │ │ │ │ │ ├── 99-xocl.rules │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── common.h │ │ │ │ │ ├── xocl.dracut.conf │ │ │ │ │ ├── xocl_bo.c │ │ │ │ │ ├── xocl_bo.h │ │ │ │ │ ├── xocl_drm.c │ │ │ │ │ ├── xocl_drv.c │ │ │ │ │ ├── xocl_errors.c │ │ │ │ │ ├── xocl_errors.h │ │ │ │ │ ├── xocl_hwctx.c │ │ │ │ │ ├── xocl_ioctl.c │ │ │ │ │ ├── xocl_kds.c │ │ │ │ │ └── xocl_sysfs.c │ │ │ │ │ ├── xgq_xocl_plat.h │ │ │ │ │ ├── xocl_ctx.c │ │ │ │ │ ├── xocl_debug.c │ │ │ │ │ ├── xocl_drm.h │ │ │ │ │ ├── xocl_drv.h │ │ │ │ │ ├── xocl_fdt.c │ │ │ │ │ ├── xocl_fdt.h │ │ │ │ │ ├── xocl_subdev.c │ │ │ │ │ ├── xocl_test.c │ │ │ │ │ ├── xocl_thread.c │ │ │ │ │ ├── xocl_types.h │ │ │ │ │ ├── xocl_xclbin.c │ │ │ │ │ ├── xocl_xclbin.h │ │ │ │ │ └── xocl_xgq.c │ │ │ └── windows │ │ │ │ └── alveo │ │ │ │ └── include │ │ │ │ ├── XoclMgmt_INTF.h │ │ │ │ ├── XoclUser_INTF.h │ │ │ │ └── mailbox_proto.h │ │ ├── emulation │ │ │ ├── CMakeLists.txt │ │ │ ├── common_em │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── config.cxx │ │ │ │ ├── config.h │ │ │ │ ├── em_defines.h │ │ │ │ ├── memorymanager.cxx │ │ │ │ ├── memorymanager.h │ │ │ │ ├── query.h │ │ │ │ ├── rpc_messages.proto │ │ │ │ ├── system_utils.cxx │ │ │ │ ├── system_utils.h │ │ │ │ ├── unix_socket.cxx │ │ │ │ └── unix_socket.h │ │ │ ├── hw_emu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── alveo_shim │ │ │ │ │ ├── debug.cxx │ │ │ │ │ ├── device_hwemu.cxx │ │ │ │ │ ├── device_hwemu.h │ │ │ │ │ ├── halapi.cxx │ │ │ │ │ ├── mbscheduler.cxx │ │ │ │ │ ├── mbscheduler.h │ │ │ │ │ ├── mbscheduler_hwemu.cxx │ │ │ │ │ ├── mbscheduler_hwemu.h │ │ │ │ │ ├── mem_model.cxx │ │ │ │ │ ├── mem_model.h │ │ │ │ │ ├── nocddr_fastaccess_hwemu.cxx │ │ │ │ │ ├── nocddr_fastaccess_hwemu.h │ │ │ │ │ ├── plugin │ │ │ │ │ │ └── xdp │ │ │ │ │ │ │ ├── device_offload.cpp │ │ │ │ │ │ │ ├── device_offload.h │ │ │ │ │ │ │ ├── hal_trace.cpp │ │ │ │ │ │ │ ├── hal_trace.h │ │ │ │ │ │ │ ├── pl_deadlock.cpp │ │ │ │ │ │ │ ├── pl_deadlock.h │ │ │ │ │ │ │ ├── plugin_loader.cpp │ │ │ │ │ │ │ ├── plugin_loader.h │ │ │ │ │ │ │ ├── sc_profile.cpp │ │ │ │ │ │ │ └── sc_profile.h │ │ │ │ │ ├── shim.cxx │ │ │ │ │ ├── shim.h │ │ │ │ │ ├── system_hwemu.cxx │ │ │ │ │ ├── system_hwemu.h │ │ │ │ │ ├── xgq_hwemu.cxx │ │ │ │ │ ├── xgq_hwemu.h │ │ │ │ │ └── xgq_hwemu_plat.h │ │ │ │ └── zynqu │ │ │ │ │ ├── pllauncher_defines.h │ │ │ │ │ └── shim_hwemu.cpp │ │ │ └── sw_emu │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── generic_pcie_hal2 │ │ │ │ ├── device_swemu.cxx │ │ │ │ ├── device_swemu.h │ │ │ │ ├── halapi.cxx │ │ │ │ ├── shim.cxx │ │ │ │ ├── shim.h │ │ │ │ ├── swscheduler.cxx │ │ │ │ ├── swscheduler.h │ │ │ │ ├── system_swemu.cxx │ │ │ │ └── system_swemu.h │ │ ├── linux │ │ │ ├── CMakeLists.txt │ │ │ ├── LICENSE │ │ │ ├── debug.cpp │ │ │ ├── device_linux.cpp │ │ │ ├── device_linux.h │ │ │ ├── pcidev.cpp │ │ │ ├── pcidev.h │ │ │ ├── pcidrv.cpp │ │ │ ├── pcidrv.h │ │ │ ├── pcidrv_xclmgmt.h │ │ │ ├── pcidrv_xocl.h │ │ │ ├── plugin │ │ │ │ └── xdp │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── aie_profile.cpp │ │ │ │ │ ├── aie_profile.h │ │ │ │ │ ├── aie_status.cpp │ │ │ │ │ ├── aie_status.h │ │ │ │ │ ├── aie_trace.cpp │ │ │ │ │ ├── aie_trace.h │ │ │ │ │ ├── hal_api_interface.cpp │ │ │ │ │ ├── hal_api_interface.h │ │ │ │ │ ├── hal_device_offload.cpp │ │ │ │ │ ├── hal_device_offload.h │ │ │ │ │ ├── hal_profile.cpp │ │ │ │ │ ├── hal_profile.h │ │ │ │ │ ├── noc_profile.cpp │ │ │ │ │ ├── noc_profile.h │ │ │ │ │ ├── plugin_loader.cpp │ │ │ │ │ ├── plugin_loader.h │ │ │ │ │ ├── power_profile.cpp │ │ │ │ │ ├── power_profile.h │ │ │ │ │ ├── sc_profile.cpp │ │ │ │ │ ├── sc_profile.h │ │ │ │ │ ├── shim_callbacks.h │ │ │ │ │ ├── vart_profile.cpp │ │ │ │ │ └── vart_profile.h │ │ │ ├── shim.cpp │ │ │ ├── shim.h │ │ │ ├── smi_pcie.cpp │ │ │ ├── smi_pcie.h │ │ │ ├── system_linux.cpp │ │ │ └── system_linux.h │ │ ├── noop │ │ │ ├── CMakeLists.txt │ │ │ ├── config.h │ │ │ ├── device_noop.cpp │ │ │ ├── device_noop.h │ │ │ ├── shim.cpp │ │ │ ├── shim.h │ │ │ ├── system_noop.cpp │ │ │ └── system_noop.h │ │ ├── tools │ │ │ ├── CMakeLists.txt │ │ │ ├── README │ │ │ ├── cloud-daemon │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── aws │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── aws_dev.cpp │ │ │ │ │ └── aws_dev.h │ │ │ │ ├── azure │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── azure.cpp │ │ │ │ │ └── azure.h │ │ │ │ ├── common.cpp │ │ │ │ ├── common.h │ │ │ │ ├── container │ │ │ │ │ ├── CMakeLists.txt │ │ │ │ │ ├── container.cpp │ │ │ │ │ └── container.h │ │ │ │ ├── mpd.cpp │ │ │ │ ├── mpd.service.in │ │ │ │ ├── mpd_plugin.h │ │ │ │ ├── msd.cpp │ │ │ │ ├── msd.service.in │ │ │ │ ├── msd_plugin.h │ │ │ │ ├── msd_plugin_example.c │ │ │ │ ├── pciefunc.cpp │ │ │ │ ├── pciefunc.h │ │ │ │ ├── sw_msg.cpp │ │ │ │ └── sw_msg.h │ │ │ ├── common │ │ │ │ └── xbsak_utils.h │ │ │ └── xbflash.qspi │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── firmware_image.cpp │ │ │ │ ├── firmware_image.h │ │ │ │ ├── main.cpp │ │ │ │ ├── pcidev.cpp │ │ │ │ ├── pcidev.h │ │ │ │ ├── xqspips.cpp │ │ │ │ ├── xqspips.h │ │ │ │ ├── xspi.cpp │ │ │ │ └── xspi.h │ │ └── windows │ │ │ ├── CMakeLists.txt │ │ │ └── alveo │ │ │ ├── CMakeLists.txt │ │ │ ├── config.h │ │ │ ├── device_windows.cpp │ │ │ ├── device_windows.h │ │ │ ├── mgmt.cpp │ │ │ ├── mgmt.h │ │ │ ├── perf.cpp │ │ │ ├── shim.cpp │ │ │ ├── shim.h │ │ │ ├── system_windows.cpp │ │ │ └── system_windows.h │ └── tools │ │ ├── CMakeLists.txt │ │ ├── common │ │ ├── BusyBar.cpp │ │ ├── BusyBar.h │ │ ├── EscapeCodes.h │ │ ├── JSONConfigurable.cpp │ │ ├── JSONConfigurable.h │ │ ├── OptionOptions.cpp │ │ ├── OptionOptions.h │ │ ├── Process.cpp │ │ ├── Process.h │ │ ├── ProgressBar.cpp │ │ ├── ProgressBar.h │ │ ├── PsKernelUtilities.cpp │ │ ├── PsKernelUtilities.h │ │ ├── Report.cpp │ │ ├── Report.h │ │ ├── SmiDefault.cpp │ │ ├── SmiDefault.h │ │ ├── SmiWatchMode.cpp │ │ ├── SmiWatchMode.h │ │ ├── SubCmd.cpp │ │ ├── SubCmd.h │ │ ├── SubCmdConfigureInternal.cpp │ │ ├── SubCmdConfigureInternal.h │ │ ├── SubCmdExamineInternal.cpp │ │ ├── SubCmdExamineInternal.h │ │ ├── SubCmdJSON.cpp │ │ ├── SubCmdJSON.h │ │ ├── SubCmdJsonObjects.cpp │ │ ├── SubCmdJsonObjects.h │ │ ├── Table2D.cpp │ │ ├── Table2D.h │ │ ├── TestRunner.cpp │ │ ├── TestRunner.h │ │ ├── XBHelpMenus.cpp │ │ ├── XBHelpMenus.h │ │ ├── XBHelpMenusCore.cpp │ │ ├── XBHelpMenusCore.h │ │ ├── XBMain.cpp │ │ ├── XBMain.h │ │ ├── XBUtilities.cpp │ │ ├── XBUtilities.h │ │ ├── XBUtilitiesCore.cpp │ │ ├── XBUtilitiesCore.h │ │ ├── reports │ │ │ ├── ReportAie.cpp │ │ │ ├── ReportAie.h │ │ │ ├── ReportAieMem.cpp │ │ │ ├── ReportAieMem.h │ │ │ ├── ReportAiePartitions.cpp │ │ │ ├── ReportAiePartitions.h │ │ │ ├── ReportAieShim.cpp │ │ │ ├── ReportAieShim.h │ │ │ ├── ReportAsyncError.cpp │ │ │ ├── ReportAsyncError.h │ │ │ ├── ReportBOStats.cpp │ │ │ ├── ReportBOStats.h │ │ │ ├── ReportClocks.cpp │ │ │ ├── ReportClocks.h │ │ │ ├── ReportCmcStatus.cpp │ │ │ ├── ReportCmcStatus.h │ │ │ ├── ReportContextHealth.cpp │ │ │ ├── ReportContextHealth.h │ │ │ ├── ReportDebugIpStatus.cpp │ │ │ ├── ReportDebugIpStatus.h │ │ │ ├── ReportDynamicRegion.cpp │ │ │ ├── ReportDynamicRegion.h │ │ │ ├── ReportElectrical.cpp │ │ │ ├── ReportElectrical.h │ │ │ ├── ReportFirewall.cpp │ │ │ ├── ReportFirewall.h │ │ │ ├── ReportHost.cpp │ │ │ ├── ReportHost.h │ │ │ ├── ReportMailbox.cpp │ │ │ ├── ReportMailbox.h │ │ │ ├── ReportMechanical.cpp │ │ │ ├── ReportMechanical.h │ │ │ ├── ReportMemory.cpp │ │ │ ├── ReportMemory.h │ │ │ ├── ReportPcieInfo.cpp │ │ │ ├── ReportPcieInfo.h │ │ │ ├── ReportPreemption.cpp │ │ │ ├── ReportPreemption.h │ │ │ ├── ReportPsKernels.cpp │ │ │ ├── ReportPsKernels.h │ │ │ ├── ReportQspiStatus.cpp │ │ │ ├── ReportQspiStatus.h │ │ │ ├── ReportTelemetry.cpp │ │ │ ├── ReportTelemetry.h │ │ │ ├── ReportThermal.cpp │ │ │ ├── ReportThermal.h │ │ │ ├── ReportVmrStatus.cpp │ │ │ ├── ReportVmrStatus.h │ │ │ ├── aie │ │ │ │ ├── Aie2Utilities.h │ │ │ │ ├── ReportAie2Core.cpp │ │ │ │ ├── ReportAie2Core.h │ │ │ │ ├── ReportAie2Mem.cpp │ │ │ │ ├── ReportAie2Mem.h │ │ │ │ ├── ReportAie2Shim.cpp │ │ │ │ └── ReportAie2Shim.h │ │ │ └── platform │ │ │ │ ├── ReportAlveoPlatform.cpp │ │ │ │ ├── ReportAlveoPlatform.h │ │ │ │ ├── ReportPlatforms.cpp │ │ │ │ ├── ReportPlatforms.h │ │ │ │ ├── ReportRyzenPlatform.cpp │ │ │ │ └── ReportRyzenPlatform.h │ │ ├── tests │ │ │ ├── TestAIEReconfigOverhead.cpp │ │ │ ├── TestAIEReconfigOverhead.h │ │ │ ├── TestAiePl.cpp │ │ │ ├── TestAiePl.h │ │ │ ├── TestAiePs.cpp │ │ │ ├── TestAiePs.h │ │ │ ├── TestAuxConnection.cpp │ │ │ ├── TestAuxConnection.h │ │ │ ├── TestBandwidthKernel.cpp │ │ │ ├── TestBandwidthKernel.h │ │ │ ├── TestCmdChainLatency.cpp │ │ │ ├── TestCmdChainLatency.h │ │ │ ├── TestCmdChainThroughput.cpp │ │ │ ├── TestCmdChainThroughput.h │ │ │ ├── TestDF_bandwidth.cpp │ │ │ ├── TestDF_bandwidth.h │ │ │ ├── TestDMA.cpp │ │ │ ├── TestDMA.h │ │ │ ├── TestGemm.cpp │ │ │ ├── TestGemm.h │ │ │ ├── TestHostMemBandwidthKernel.cpp │ │ │ ├── TestHostMemBandwidthKernel.h │ │ │ ├── TestNPULatency.cpp │ │ │ ├── TestNPULatency.h │ │ │ ├── TestNPUThroughput.cpp │ │ │ ├── TestNPUThroughput.h │ │ │ ├── TestPcieLink.cpp │ │ │ ├── TestPcieLink.h │ │ │ ├── TestPreeemptionOverhead.cpp │ │ │ ├── TestPreemptionOverhead.h │ │ │ ├── TestPsIops.cpp │ │ │ ├── TestPsIops.h │ │ │ ├── TestPsPlVerify.cpp │ │ │ ├── TestPsPlVerify.h │ │ │ ├── TestPsVerify.cpp │ │ │ ├── TestPsVerify.h │ │ │ ├── TestSCVersion.cpp │ │ │ ├── TestSCVersion.h │ │ │ ├── TestTCTAllColumn.cpp │ │ │ ├── TestTCTAllColumn.h │ │ │ ├── TestTCTOneColumn.cpp │ │ │ ├── TestTCTOneColumn.h │ │ │ ├── TestTemporalSharingOvd.cpp │ │ │ ├── TestTemporalSharingOvd.h │ │ │ ├── TestValidateUtilities.cpp │ │ │ ├── TestValidateUtilities.h │ │ │ ├── TestVerify.cpp │ │ │ ├── TestVerify.h │ │ │ ├── Testm2m.cpp │ │ │ ├── Testm2m.h │ │ │ ├── Testp2p.cpp │ │ │ ├── Testp2p.h │ │ │ ├── aie_pl_util │ │ │ │ ├── enums.hpp │ │ │ │ ├── include.h │ │ │ │ ├── pl_controller.cpp │ │ │ │ ├── pl_controller.hpp │ │ │ │ ├── pl_controller_aie2.cpp │ │ │ │ └── pl_controller_aie2.hpp │ │ │ ├── dmatest.h │ │ │ ├── ps_iops_util │ │ │ │ └── xilutil.hpp │ │ │ └── xrt_iops_util │ │ │ │ └── xilutil.hpp │ │ ├── xball │ │ └── xrt_subcommands.json │ │ ├── nagios │ │ ├── CMakeLists.txt │ │ └── nagios_plugin.sh │ │ ├── xbflash2 │ │ ├── CMakeLists.txt │ │ ├── OO_Dump_Qspips.cpp │ │ ├── OO_Dump_Qspips.h │ │ ├── OO_Program_Qspips.cpp │ │ ├── OO_Program_Qspips.h │ │ ├── OO_Program_Spi.cpp │ │ ├── OO_Program_Spi.h │ │ ├── SubCmdDump.cpp │ │ ├── SubCmdDump.h │ │ ├── SubCmdProgram.cpp │ │ ├── SubCmdProgram.h │ │ ├── XBFMain.cpp │ │ ├── XBFMain.h │ │ └── xbflash.cpp │ │ ├── xbmgmt2 │ │ ├── CMakeLists.txt │ │ ├── OO_ChangeBoot.cpp │ │ ├── OO_ChangeBoot.h │ │ ├── OO_FactoryReset.cpp │ │ ├── OO_FactoryReset.h │ │ ├── OO_Hotplug.cpp │ │ ├── OO_Hotplug.h │ │ ├── OO_Input.cpp │ │ ├── OO_Input.h │ │ ├── OO_Retention.cpp │ │ ├── OO_Retention.h │ │ ├── OO_UpdateBase.cpp │ │ ├── OO_UpdateBase.h │ │ ├── OO_UpdateShell.cpp │ │ ├── OO_UpdateShell.h │ │ ├── OO_UpdateXclbin.cpp │ │ ├── OO_UpdateXclbin.h │ │ ├── ReportPlatform.cpp │ │ ├── ReportPlatform.h │ │ ├── SubCmdAdvanced.cpp │ │ ├── SubCmdAdvanced.h │ │ ├── SubCmdConfigure.cpp │ │ ├── SubCmdConfigure.h │ │ ├── SubCmdDump.cpp │ │ ├── SubCmdDump.h │ │ ├── SubCmdExamine.cpp │ │ ├── SubCmdExamine.h │ │ ├── SubCmdProgram.cpp │ │ ├── SubCmdProgram.h │ │ ├── SubCmdReset.cpp │ │ ├── SubCmdReset.h │ │ ├── flash │ │ │ ├── firmware_image.cpp │ │ │ ├── firmware_image.h │ │ │ ├── flasher.cpp │ │ │ ├── flasher.h │ │ │ ├── xgq_vmr.cpp │ │ │ ├── xgq_vmr.h │ │ │ ├── xmc.cpp │ │ │ ├── xmc.h │ │ │ ├── xospiversal.cpp │ │ │ ├── xospiversal.h │ │ │ ├── xqspips.cpp │ │ │ ├── xqspips.h │ │ │ ├── xspi.cpp │ │ │ └── xspi.h │ │ ├── xbmgmt │ │ ├── xbmgmt-bash-completion │ │ ├── xbmgmt-csh-completion │ │ ├── xbmgmt-csh-completion-wrapper │ │ ├── xbmgmt.bat │ │ └── xbmgmt.cpp │ │ ├── xbtop │ │ ├── CMakeLists.txt │ │ ├── _xbtop │ │ │ ├── ReportDynamicRegions.py │ │ │ ├── ReportMemory.py │ │ │ ├── ReportPower.py │ │ │ ├── XBUtil.py │ │ │ └── __init__.py │ │ ├── xbtop │ │ └── xbtop.py │ │ ├── xbtracer │ │ ├── CMakeLists.txt │ │ ├── detoursUtil.cmake │ │ ├── script │ │ │ ├── ch_mangled │ │ │ │ └── CMakeLists.txt │ │ │ ├── cpp_mangled_name_parser.py │ │ │ ├── parse_cpp_func_args.py │ │ │ └── scan_external_funcs.py │ │ ├── src │ │ │ ├── capture │ │ │ │ ├── xbtracer.cpp │ │ │ │ ├── xbtracer.h │ │ │ │ ├── xbtracer_linux.cpp │ │ │ │ ├── xbtracer_utils_win.h │ │ │ │ └── xbtracer_win.cpp │ │ │ ├── common │ │ │ │ ├── funcs_mangled_lookup_linux.cpp │ │ │ │ ├── funcs_mangled_lookup_win.cpp │ │ │ │ ├── logger.cpp │ │ │ │ ├── trace_logger.h │ │ │ │ ├── trace_utils.cpp │ │ │ │ ├── trace_utils.h │ │ │ │ ├── trace_utils_linux.cpp │ │ │ │ ├── trace_utils_win.cpp │ │ │ │ └── trace_utils_win.h │ │ │ ├── func.proto │ │ │ ├── misc │ │ │ │ └── xbtracer_dump.cpp │ │ │ ├── replay │ │ │ │ ├── xbreplay.cpp │ │ │ │ ├── xbreplay_common.h │ │ │ │ ├── xbreplay_msg_queue.cpp │ │ │ │ ├── xbreplay_replayer.cpp │ │ │ │ ├── xbreplay_worker.cpp │ │ │ │ ├── xbreplay_xrt_bo.cpp │ │ │ │ ├── xbreplay_xrt_device.cpp │ │ │ │ ├── xbreplay_xrt_hw_context.cpp │ │ │ │ ├── xbreplay_xrt_kernel.cpp │ │ │ │ ├── xbreplay_xrt_run.cpp │ │ │ │ └── xbreplay_xrt_xclbin.cpp │ │ │ └── wrapper │ │ │ │ ├── hook_xrt.cpp │ │ │ │ ├── hook_xrt.h │ │ │ │ ├── hook_xrt_aie.cpp │ │ │ │ ├── hook_xrt_bo.cpp │ │ │ │ ├── hook_xrt_device.cpp │ │ │ │ ├── hook_xrt_elf.cpp │ │ │ │ ├── hook_xrt_error.cpp │ │ │ │ ├── hook_xrt_ext_bo.cpp │ │ │ │ ├── hook_xrt_ext_kernel.cpp │ │ │ │ ├── hook_xrt_fence.cpp │ │ │ │ ├── hook_xrt_hw_context.cpp │ │ │ │ ├── hook_xrt_ini.cpp │ │ │ │ ├── hook_xrt_ip.cpp │ │ │ │ ├── hook_xrt_kernel.cpp │ │ │ │ ├── hook_xrt_mailbox.cpp │ │ │ │ ├── hook_xrt_message.cpp │ │ │ │ ├── hook_xrt_module.cpp │ │ │ │ ├── hook_xrt_profile.cpp │ │ │ │ ├── hook_xrt_queue.cpp │ │ │ │ ├── hook_xrt_run.cpp │ │ │ │ ├── hook_xrt_runlist.cpp │ │ │ │ ├── hook_xrt_system.cpp │ │ │ │ ├── hook_xrt_version.cpp │ │ │ │ ├── hook_xrt_xclbin.cpp │ │ │ │ ├── tracer.cpp │ │ │ │ ├── tracer.h │ │ │ │ ├── tracer_linux.cpp │ │ │ │ └── tracer_win.cpp │ │ ├── xrt-replay.bat │ │ └── xrt-tracer.bat │ │ └── xbutil2 │ │ ├── CMakeLists.txt │ │ ├── EventTracing │ │ ├── CMakeLists.txt │ │ ├── EventTraceBase.cpp │ │ ├── EventTraceBase.h │ │ ├── EventTraceNpu3.cpp │ │ ├── EventTraceNpu3.h │ │ ├── EventTraceStrix.cpp │ │ ├── EventTraceStrix.h │ │ ├── OO_EventTrace.cpp │ │ ├── OO_EventTrace.h │ │ ├── OO_EventTraceExamine.cpp │ │ └── OO_EventTraceExamine.h │ │ ├── FirmwareLogging │ │ ├── CMakeLists.txt │ │ ├── FirmwareLog.cpp │ │ ├── FirmwareLog.h │ │ ├── OO_FirmwareLog.cpp │ │ ├── OO_FirmwareLog.h │ │ ├── OO_FirmwareLogExamine.cpp │ │ └── OO_FirmwareLogExamine.h │ │ ├── LICENSE │ │ ├── OO_AieClockFreq.cpp │ │ ├── OO_AieClockFreq.h │ │ ├── OO_AieRegRead.cpp │ │ ├── OO_AieRegRead.h │ │ ├── OO_HostMem.cpp │ │ ├── OO_HostMem.h │ │ ├── OO_MemRead.cpp │ │ ├── OO_MemRead.h │ │ ├── OO_MemWrite.cpp │ │ ├── OO_MemWrite.h │ │ ├── OO_P2P.cpp │ │ ├── OO_P2P.h │ │ ├── OO_Performance.cpp │ │ ├── OO_Performance.h │ │ ├── OO_Preemption.cpp │ │ ├── OO_Preemption.h │ │ ├── SubCmdAdvanced.cpp │ │ ├── SubCmdAdvanced.h │ │ ├── SubCmdConfigure.cpp │ │ ├── SubCmdConfigure.h │ │ ├── SubCmdExamine.cpp │ │ ├── SubCmdExamine.h │ │ ├── SubCmdProgram.cpp │ │ ├── SubCmdProgram.h │ │ ├── SubCmdReset.cpp │ │ ├── SubCmdReset.h │ │ ├── SubCmdValidate.cpp │ │ ├── SubCmdValidate.h │ │ ├── xbutil-bash-completion │ │ ├── xbutil-csh-completion │ │ ├── xbutil-csh-completion-wrapper │ │ ├── xbutil.cpp │ │ ├── xrt-smi │ │ └── xrt-smi.bat │ ├── doc │ ├── CMakeLists.txt │ └── toc │ │ ├── Alveo-Compilation-Flow.svg │ │ ├── M2M-transfer.svg │ │ ├── PCIe-P2P.fodg │ │ ├── PCIe-P2P.svg │ │ ├── XRT-Architecture-Edge.svg │ │ ├── XRT-Architecture-Hybrid.svg │ │ ├── XRT-Architecture-PCIe.svg │ │ ├── XRT-Architecture-Versal-Edge.svg │ │ ├── XRT-Architecture.fodg │ │ ├── XRT-Architecture.svg │ │ ├── XRT-Layers.fodg │ │ ├── XRT-Layers.svg │ │ ├── XSA-shell-partitions-1RP.svg │ │ ├── XSA-shell-partitions-2RP.svg │ │ ├── XSA-shell-partitions.fodg │ │ ├── XSA-shell.fodg │ │ ├── XSA-shell.svg │ │ ├── _static │ │ └── theme_overrides.css │ │ ├── ap_ctrl_chain_2.PNG │ │ ├── ap_ctrl_hs_2.PNG │ │ ├── build.rst │ │ ├── cloud_vendor_support.rst │ │ ├── conf.py │ │ ├── debug-faq.rst │ │ ├── ert.main.rst │ │ ├── execution-model.rst │ │ ├── formats.rst │ │ ├── fpga_device_ready.rst │ │ ├── hm.rst │ │ ├── index.rst │ │ ├── install.rst │ │ ├── m2m.rst │ │ ├── mailbox-msd-mpd-architecture.svg │ │ ├── mailbox.main.rst │ │ ├── mailbox.proto.rst │ │ ├── mgmt-ioctl.main.rst │ │ ├── multi.dot │ │ ├── multiprocess.rst │ │ ├── nagios_plugin.rst │ │ ├── newxsa-bringup.rst │ │ ├── opencl_extension.rst │ │ ├── p2p.rst │ │ ├── pass-through.PNG │ │ ├── platforms.rst │ │ ├── platforms_partitions.rst │ │ ├── pyxrt.rst │ │ ├── q35-0_LI.jpg │ │ ├── q35-1_LI.jpg │ │ ├── security.rst │ │ ├── sw-mailbox-mpd-plugin-download.svg │ │ ├── sw-mailbox-msd-mpd-download.svg │ │ ├── sysfs.rst │ │ ├── system_requirements.rst │ │ ├── test.rst │ │ ├── vsec.rst │ │ ├── xball.rst │ │ ├── xbflash2.rst │ │ ├── xbmgmt.rst │ │ ├── xbtools_map.rst │ │ ├── xbtop.rst │ │ ├── xclbin_navigation.png │ │ ├── xclbintools.rst │ │ ├── xocl_ioctl.main.rst │ │ ├── xrt-deployment-cloud.svg │ │ ├── xrt-smi.rst │ │ ├── xrt_ini.rst │ │ ├── xrt_kernel_executions.rst │ │ ├── xrt_native.main.rst │ │ ├── xrt_native_apis.rst │ │ ├── yocto.rst │ │ └── zocl_ioctl.main.rst │ ├── ert │ ├── CMakeLists.txt │ ├── ert.mk │ └── scheduler │ │ ├── CMakeLists.txt │ │ ├── lscript.ld │ │ ├── lscript_u50.ld │ │ ├── lscript_v20.ld │ │ ├── lscript_v30.ld │ │ ├── sched.c │ │ ├── sched.mk │ │ ├── sched_cmd.h │ │ ├── sched_cu.h │ │ ├── sched_hw_emu.c │ │ ├── sched_print.h │ │ ├── scheduler.cpp │ │ ├── scheduler_v30.cpp │ │ ├── xgq_ctrl.c │ │ ├── xgq_ctrl.h │ │ ├── xgq_cu.c │ │ ├── xgq_cu.h │ │ └── xgq_mb_plat.h │ ├── hip │ ├── CMakeLists.txt │ ├── api │ │ ├── CMakeLists.txt │ │ ├── hip_device.cpp │ │ ├── hip_error.cpp │ │ ├── hip_event.cpp │ │ ├── hip_graph.cpp │ │ ├── hip_memory.cpp │ │ ├── hip_module.cpp │ │ └── hip_stream.cpp │ ├── config.h │ ├── core │ │ ├── CMakeLists.txt │ │ ├── common.h │ │ ├── context.cpp │ │ ├── context.h │ │ ├── device.cpp │ │ ├── device.h │ │ ├── error.cpp │ │ ├── error.h │ │ ├── event.cpp │ │ ├── event.h │ │ ├── graph.cpp │ │ ├── graph.h │ │ ├── memory.cpp │ │ ├── memory.h │ │ ├── module.cpp │ │ ├── module.h │ │ ├── stream.cpp │ │ └── stream.h │ ├── hip_config.cmake │ ├── hip_xrt.h │ └── xrt_hip.def │ ├── tools │ ├── scripts │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── apu_recipes │ │ │ ├── apu-boot │ │ │ ├── apu-boot.bb │ │ │ ├── apu-boot.service │ │ │ ├── init-apu │ │ │ ├── init-apu.bb │ │ │ ├── init-apu.service │ │ │ ├── skd.bb │ │ │ ├── skd.service │ │ │ ├── skd.sh │ │ │ ├── sysvinit-inittab_%.bbappend │ │ │ ├── u-boot_custom.cfg │ │ │ ├── vdu-init │ │ │ ├── vdu-init.bb │ │ │ └── vdu-init.service │ │ ├── boost.sh │ │ ├── build_xrt_with_docker.sh │ │ ├── cvttoxclbin1.py │ │ ├── header.lic │ │ ├── install.sh │ │ ├── loader │ │ ├── loader.bat │ │ ├── os_supported.json │ │ ├── pkg_hw_platform.sh │ │ ├── pkgapp.sh │ │ ├── pkgapu.sh │ │ ├── pkgdsa.sh │ │ ├── plp_program.sh │ │ ├── processCardLock.sh │ │ ├── pyopencl_install_check.sh │ │ ├── rtplot │ │ ├── service_bundle.sh │ │ ├── setup.bat │ │ ├── setup.csh │ │ ├── setup.fish │ │ ├── setup.sh │ │ ├── sysroots_overlay.sh │ │ ├── tags.sh │ │ ├── user.lic │ │ ├── xrtdeps-win.py │ │ ├── xrtdeps-win.sh │ │ ├── xrtdeps-win19.py │ │ ├── xrtdeps-win22.py │ │ └── xrtdeps.sh │ └── xclbinutil │ │ ├── CBOR.cxx │ │ ├── CBOR.h │ │ ├── CMakeLists.txt │ │ ├── DTC.cxx │ │ ├── DTC.h │ │ ├── DTCStringsBlock.cxx │ │ ├── DTCStringsBlock.h │ │ ├── ElfUtilities.cxx │ │ ├── ElfUtilities.h │ │ ├── FDTNode.cxx │ │ ├── FDTNode.h │ │ ├── FDTProperty.cxx │ │ ├── FDTProperty.h │ │ ├── FormattedOutput.cxx │ │ ├── FormattedOutput.h │ │ ├── KernelUtilities.cxx │ │ ├── KernelUtilities.h │ │ ├── ParameterSectionData.cxx │ │ ├── ParameterSectionData.h │ │ ├── RapidJsonUtilities.cxx │ │ ├── RapidJsonUtilities.h │ │ ├── ResourcesSmartNic.cxx │ │ ├── ResourcesSmartNic.h │ │ ├── Section.cxx │ │ ├── Section.h │ │ ├── SectionAIEMetadata.cxx │ │ ├── SectionAIEMetadata.h │ │ ├── SectionAIEPartition.cxx │ │ ├── SectionAIEPartition.h │ │ ├── SectionAIEResources.cxx │ │ ├── SectionAIEResources.h │ │ ├── SectionAIEResourcesBin.cxx │ │ ├── SectionAIEResourcesBin.h │ │ ├── SectionAIETraceMetadata.cxx │ │ ├── SectionAIETraceMetadata.h │ │ ├── SectionBMC.cxx │ │ ├── SectionBMC.h │ │ ├── SectionBitstream.cxx │ │ ├── SectionBitstream.h │ │ ├── SectionBitstreamPartialPDI.cxx │ │ ├── SectionBitstreamPartialPDI.h │ │ ├── SectionBuildMetadata.cxx │ │ ├── SectionBuildMetadata.h │ │ ├── SectionClearBitstream.cxx │ │ ├── SectionClearBitstream.h │ │ ├── SectionClockFrequencyTopology.cxx │ │ ├── SectionClockFrequencyTopology.h │ │ ├── SectionConnectivity.cxx │ │ ├── SectionConnectivity.h │ │ ├── SectionDNACertificate.cxx │ │ ├── SectionDNACertificate.h │ │ ├── SectionDebugData.cxx │ │ ├── SectionDebugData.h │ │ ├── SectionDebugIPLayout.cxx │ │ ├── SectionDebugIPLayout.h │ │ ├── SectionDesignCheckPoint.cxx │ │ ├── SectionDesignCheckPoint.h │ │ ├── SectionEmbeddedMetadata.cxx │ │ ├── SectionEmbeddedMetadata.h │ │ ├── SectionEmulationData.cxx │ │ ├── SectionEmulationData.h │ │ ├── SectionFlash.cxx │ │ ├── SectionFlash.h │ │ ├── SectionGroupConnectivity.cxx │ │ ├── SectionGroupConnectivity.h │ │ ├── SectionGroupTopology.cxx │ │ ├── SectionGroupTopology.h │ │ ├── SectionHeader.cxx │ │ ├── SectionHeader.h │ │ ├── SectionIPLayout.cxx │ │ ├── SectionIPLayout.h │ │ ├── SectionIPMetadata.cxx │ │ ├── SectionIPMetadata.h │ │ ├── SectionKeyValueMetadata.cxx │ │ ├── SectionKeyValueMetadata.h │ │ ├── SectionMCS.cxx │ │ ├── SectionMCS.h │ │ ├── SectionManagementFW.cxx │ │ ├── SectionManagementFW.h │ │ ├── SectionMemTopology.cxx │ │ ├── SectionMemTopology.h │ │ ├── SectionOverlay.cxx │ │ ├── SectionOverlay.h │ │ ├── SectionPDI.cxx │ │ ├── SectionPDI.h │ │ ├── SectionPartitionMetadata.cxx │ │ ├── SectionPartitionMetadata.h │ │ ├── SectionSchedulerFW.cxx │ │ ├── SectionSchedulerFW.h │ │ ├── SectionSmartNic.cxx │ │ ├── SectionSmartNic.h │ │ ├── SectionSoftKernel.cxx │ │ ├── SectionSoftKernel.h │ │ ├── SectionSystemMetadata.cxx │ │ ├── SectionSystemMetadata.h │ │ ├── SectionUserMetadata.cxx │ │ ├── SectionUserMetadata.h │ │ ├── SectionVenderMetadata.cxx │ │ ├── SectionVenderMetadata.h │ │ ├── XclBinClass.cxx │ │ ├── XclBinClass.h │ │ ├── XclBinSignature.cxx │ │ ├── XclBinSignature.h │ │ ├── XclBinUtilMain.cxx │ │ ├── XclBinUtilMain.h │ │ ├── XclBinUtilities.cxx │ │ ├── XclBinUtilities.h │ │ ├── aie-pdi-transform │ │ ├── .clang-tidy │ │ ├── CMakeLists.txt │ │ ├── README.rst │ │ ├── cdo-main-static.c │ │ ├── lib │ │ │ ├── cdo_cmd.c │ │ │ ├── load_pdi.c │ │ │ └── pdi_transform.c │ │ ├── libinclude │ │ │ ├── cdo_cmd.h │ │ │ ├── cdo_cmd_dma.h │ │ │ ├── cdo_common.h │ │ │ ├── cdo_debug_dma.h │ │ │ ├── cdo_io.h │ │ │ ├── cdo_io_debug.h │ │ │ ├── cdo_io_generic.h │ │ │ ├── com_helper.h │ │ │ ├── load_pdi.h │ │ │ └── platform-hw-config.h │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── cdo-parsing.c │ │ │ ├── pdi-parsing-debug.h │ │ │ ├── pdi-parsing.c │ │ │ ├── pdi-transform.c │ │ │ └── pdi-transform.h │ │ ├── unittests │ │ ├── AIEPartition │ │ │ ├── 1110.txt │ │ │ ├── 1111.txt │ │ │ ├── 2220.hex │ │ │ ├── 2220_expected.hex │ │ │ ├── 2221.hex │ │ │ ├── 2221_expected.hex │ │ │ ├── AIEPartition.py │ │ │ ├── aie_partition.json │ │ │ ├── aie_partition_expected.json │ │ │ └── aie_partition_trans.json │ │ ├── AieResourcesBin │ │ │ ├── SectionAieResourcesBin.py │ │ │ ├── dummyAieResourcesBin.txt │ │ │ ├── graph1.rtd │ │ │ └── graph2.rtd │ │ ├── AieTraceMetadata │ │ │ ├── SectionAieTraceMetadata.py │ │ │ ├── aie_trace_config.json │ │ │ └── expected_aie_trace_config.json │ │ ├── BMC │ │ │ ├── BMCSection.py │ │ │ ├── bmc_metadata.json │ │ │ └── sample_data1.txt │ │ ├── BinaryImages │ │ │ ├── BinaryImages.py │ │ │ └── testimage.txt │ │ ├── FileCheck │ │ │ ├── FileCheck.py │ │ │ └── debug_ip_layout.rtd │ │ ├── FixedKernel │ │ │ ├── FixedKernel.py │ │ │ ├── connectivity.json │ │ │ ├── connectivity_expected.json │ │ │ ├── embedded_metadata.xml │ │ │ ├── embedded_metadata_expected.xml │ │ │ ├── embedded_metadata_expected_2.xml │ │ │ ├── fixed_kernel_add.json │ │ │ ├── fixed_kernel_add_2.json │ │ │ ├── fixed_kernel_add_num.json │ │ │ ├── group_connectivity_expected.json │ │ │ ├── group_topology_expected.json │ │ │ ├── ip_layout.json │ │ │ ├── ip_layout_expected.json │ │ │ ├── ip_layout_expected_2.json │ │ │ └── mem_topology.json │ │ ├── IPMetadata │ │ │ ├── IPMetadata.py │ │ │ ├── ip_metadata.json │ │ │ └── ip_metadata_expected.json │ │ ├── MCS │ │ │ ├── MCSSection.py │ │ │ ├── sample_data1.txt │ │ │ └── sample_data2.txt │ │ ├── PSKernel │ │ │ ├── PSKernel.py │ │ │ ├── connectivity.json │ │ │ ├── connectivity_expected.json │ │ │ ├── connectivity_mb_expected.json │ │ │ ├── connectivity_psk_expected.json │ │ │ ├── embedded_metadata.xml │ │ │ ├── embedded_metadata_expected.xml │ │ │ ├── embedded_metadata_psk_expected.xml │ │ │ ├── ip_layout.json │ │ │ ├── ip_layout_expected.json │ │ │ ├── ip_layout_psk_expected.json │ │ │ ├── mem_topology.json │ │ │ ├── mem_topology_expected.json │ │ │ ├── mem_topology_mb_expected.json │ │ │ ├── mem_topology_psk_expected.json │ │ │ ├── pskernel.cpp │ │ │ ├── pskernel.hex │ │ │ └── pskernel_expected.json │ │ ├── PartitionMetadata │ │ │ ├── SectionPartitionMetadata.py │ │ │ └── partition_metadata_all.rtd │ │ ├── SingleSubsection │ │ │ ├── SingleSubsection.py │ │ │ ├── sample_data1.txt │ │ │ └── sample_data2.txt │ │ ├── SmartNic │ │ │ ├── SectionSmartNicFormat.py │ │ │ ├── SectionSmartNicSyntax.py │ │ │ ├── cbor_image.raw │ │ │ ├── cbor_image_expected.json │ │ │ ├── dummy_bytefile.txt │ │ │ ├── eBPF.json │ │ │ ├── extension.json │ │ │ ├── simple_bytefiles.json │ │ │ ├── simple_bytefiles_expected.json │ │ │ ├── smartnic_all_format.json │ │ │ ├── smartnic_all_format_expected.json │ │ │ ├── smartnic_full_validate_syntax.json │ │ │ ├── smartnic_relative_bytefiles.json │ │ │ ├── smartnic_relative_bytefiles_expected.json │ │ │ ├── softhub.json │ │ │ ├── vitis_merged_expected.json │ │ │ └── vpp_linker.json │ │ ├── SoftKernel │ │ │ ├── SectionSoftKernel.py │ │ │ ├── dummySoftKernel.txt │ │ │ ├── softkernel.rtd │ │ │ ├── softkernel_129instances.rtd │ │ │ └── softkernel_longname.rtd │ │ ├── TestAddSection.cxx │ │ ├── TestMetaData.cxx │ │ ├── TestRemoveSection.cxx │ │ ├── TestSerialization.cxx │ │ ├── UnitParameterSectionData.cxx │ │ ├── globals.cxx │ │ ├── globals.h │ │ ├── main.cxx │ │ ├── signXclbinCER.py │ │ ├── signXclbinDER.py │ │ └── test_data │ │ │ ├── ip_layout_base.json │ │ │ ├── ip_layout_merge.json │ │ │ ├── ip_layout_merged_expected.json │ │ │ ├── metadata.json │ │ │ ├── sample_1_2018.2.xclbin │ │ │ ├── unique_data1.bin │ │ │ └── unique_data2.bin │ │ ├── xclbinutil │ │ ├── xclbinutil.bat │ │ └── xclbinutil.cxx │ ├── xdp │ ├── CMakeLists.txt │ ├── appdebug │ │ ├── CMakeLists.txt │ │ ├── appdebug.cpp │ │ ├── appdebug.h │ │ ├── appdebug.py │ │ ├── appdebug_plugin.cpp │ │ ├── appdebug_plugin.h │ │ ├── appdebug_track.h │ │ ├── appdebugint.py │ │ ├── appdebugmanager.cpp │ │ └── appdebugmanager.h │ ├── config.h │ ├── debug │ │ ├── CMakeLists.txt │ │ ├── debug_plugin.cpp │ │ ├── debug_plugin.h │ │ ├── kernel_debug_manager.cpp │ │ └── kernel_debug_manager.h │ ├── doxygen.config │ └── profile │ │ ├── CMakeLists.txt │ │ ├── database │ │ ├── database.cpp │ │ ├── database.h │ │ ├── dynamic_event_database.cpp │ │ ├── dynamic_event_database.h │ │ ├── dynamic_info │ │ │ ├── aie_db.cpp │ │ │ ├── aie_db.h │ │ │ ├── dependency_manager.cpp │ │ │ ├── dependency_manager.h │ │ │ ├── device_db.h │ │ │ ├── host_db.cpp │ │ │ ├── host_db.h │ │ │ ├── mark.h │ │ │ ├── pl_db.cpp │ │ │ ├── pl_db.h │ │ │ ├── samples.h │ │ │ ├── string_table.cpp │ │ │ ├── string_table.h │ │ │ └── types.h │ │ ├── events │ │ │ ├── creator │ │ │ │ ├── aie_trace_data_logger.cpp │ │ │ │ └── aie_trace_data_logger.h │ │ │ ├── device_events.cpp │ │ │ ├── device_events.h │ │ │ ├── hal_api_calls.cpp │ │ │ ├── hal_api_calls.h │ │ │ ├── native_events.cpp │ │ │ ├── native_events.h │ │ │ ├── opencl_api_calls.cpp │ │ │ ├── opencl_api_calls.h │ │ │ ├── opencl_host_events.cpp │ │ │ ├── opencl_host_events.h │ │ │ ├── user_events.cpp │ │ │ ├── user_events.h │ │ │ ├── vtf_event.cpp │ │ │ └── vtf_event.h │ │ ├── run_summary_manager.cpp │ │ ├── run_summary_manager.h │ │ ├── static_info │ │ │ ├── aie_constructs.h │ │ │ ├── aie_util.cpp │ │ │ ├── aie_util.h │ │ │ ├── app_style.h │ │ │ ├── device_info.cpp │ │ │ ├── device_info.h │ │ │ ├── filetypes │ │ │ │ ├── aie_control_config_filetype.cpp │ │ │ │ ├── aie_control_config_filetype.h │ │ │ │ ├── aie_trace_config_filetype.cpp │ │ │ │ ├── aie_trace_config_filetype.h │ │ │ │ ├── aie_trace_config_v3_filetype.cpp │ │ │ │ ├── aie_trace_config_v3_filetype.h │ │ │ │ └── base_filetype_impl.h │ │ │ ├── pl_constructs.cpp │ │ │ ├── pl_constructs.h │ │ │ ├── xclbin_info.cpp │ │ │ ├── xclbin_info.h │ │ │ └── xclbin_types.h │ │ ├── static_info_database.cpp │ │ ├── static_info_database.h │ │ ├── statistics_database.cpp │ │ └── statistics_database.h │ │ ├── device │ │ ├── add.cpp │ │ ├── add.h │ │ ├── aieTraceS2MM.cpp │ │ ├── aieTraceS2MM.h │ │ ├── aie_trace │ │ │ ├── aie_trace_logger.h │ │ │ ├── aie_trace_offload.cpp │ │ │ ├── aie_trace_offload.h │ │ │ ├── client │ │ │ │ ├── aie_trace_offload_client.cpp │ │ │ │ └── aie_trace_offload_client.h │ │ │ └── ve2 │ │ │ │ ├── aie_trace_logger_ve2.h │ │ │ │ ├── aie_trace_offload_ve2.cpp │ │ │ │ └── aie_trace_offload_ve2.h │ │ ├── aim.cpp │ │ ├── aim.h │ │ ├── am.cpp │ │ ├── am.h │ │ ├── asm.cpp │ │ ├── asm.h │ │ ├── common │ │ │ ├── aie_driver_common_util.cpp │ │ │ ├── aie_driver_common_util.h │ │ │ ├── client_transaction.cpp │ │ │ ├── client_transaction.h │ │ │ └── transactions │ │ │ │ ├── op_buf.hpp │ │ │ │ ├── op_init.hpp │ │ │ │ └── op_types.h │ │ ├── hal_device │ │ │ ├── xdp_hal_device.cpp │ │ │ └── xdp_hal_device.h │ │ ├── ioctl_monitors │ │ │ ├── ioctl_add.cpp │ │ │ ├── ioctl_add.h │ │ │ ├── ioctl_aieTraceS2MM.cpp │ │ │ ├── ioctl_aieTraceS2MM.h │ │ │ ├── ioctl_aim.cpp │ │ │ ├── ioctl_aim.h │ │ │ ├── ioctl_am.cpp │ │ │ ├── ioctl_am.h │ │ │ ├── ioctl_asm.cpp │ │ │ ├── ioctl_asm.h │ │ │ ├── ioctl_traceFifoFull.cpp │ │ │ ├── ioctl_traceFifoFull.h │ │ │ ├── ioctl_traceFifoLite.cpp │ │ │ ├── ioctl_traceFifoLite.h │ │ │ ├── ioctl_traceFunnel.cpp │ │ │ ├── ioctl_traceFunnel.h │ │ │ ├── ioctl_traceS2MM.cpp │ │ │ └── ioctl_traceS2MM.h │ │ ├── mmapped_monitors │ │ │ ├── mmapped_add.cpp │ │ │ ├── mmapped_add.h │ │ │ ├── mmapped_aieTraceS2MM.cpp │ │ │ ├── mmapped_aieTraceS2MM.h │ │ │ ├── mmapped_aim.cpp │ │ │ ├── mmapped_aim.h │ │ │ ├── mmapped_am.cpp │ │ │ ├── mmapped_am.h │ │ │ ├── mmapped_asm.cpp │ │ │ ├── mmapped_asm.h │ │ │ ├── mmapped_traceFifoFull.cpp │ │ │ ├── mmapped_traceFifoFull.h │ │ │ ├── mmapped_traceFifoLite.cpp │ │ │ ├── mmapped_traceFifoLite.h │ │ │ ├── mmapped_traceFunnel.cpp │ │ │ ├── mmapped_traceFunnel.h │ │ │ ├── mmapped_traceS2MM.cpp │ │ │ └── mmapped_traceS2MM.h │ │ ├── noc.cpp │ │ ├── noc.h │ │ ├── pl_device_intf.cpp │ │ ├── pl_device_intf.h │ │ ├── pl_device_trace_logger.cpp │ │ ├── pl_device_trace_logger.h │ │ ├── pl_device_trace_offload.cpp │ │ ├── pl_device_trace_offload.h │ │ ├── profile_ip_access.cpp │ │ ├── profile_ip_access.h │ │ ├── traceFifoFull.cpp │ │ ├── traceFifoFull.h │ │ ├── traceFifoLite.cpp │ │ ├── traceFifoLite.h │ │ ├── traceFunnel.cpp │ │ ├── traceFunnel.h │ │ ├── traceS2MM.cpp │ │ ├── traceS2MM.h │ │ ├── tracedefs.h │ │ ├── utility.cpp │ │ ├── utility.h │ │ └── xdp_base_device.h │ │ ├── plugin │ │ ├── CMakeLists.txt │ │ ├── aie_base │ │ │ ├── aie_base_util.h │ │ │ └── generations │ │ │ │ ├── aie1_attributes.h │ │ │ │ ├── aie1_registers.h │ │ │ │ ├── aie2_attributes.h │ │ │ │ ├── aie2_registers.h │ │ │ │ ├── aie2ps_attributes.h │ │ │ │ ├── aie2ps_registers.h │ │ │ │ └── aie_generations.h │ │ ├── aie_debug │ │ │ ├── CMakeLists.txt │ │ │ ├── aie_debug_cb.cpp │ │ │ ├── aie_debug_cb.h │ │ │ ├── aie_debug_impl.h │ │ │ ├── aie_debug_metadata.cpp │ │ │ ├── aie_debug_metadata.h │ │ │ ├── aie_debug_plugin.cpp │ │ │ ├── aie_debug_plugin.h │ │ │ ├── client │ │ │ │ ├── aie_debug.cpp │ │ │ │ └── aie_debug.h │ │ │ ├── edge │ │ │ │ ├── aie_debug.cpp │ │ │ │ └── aie_debug.h │ │ │ └── ve2 │ │ │ │ ├── aie_debug.cpp │ │ │ │ └── aie_debug.h │ │ ├── aie_halt │ │ │ ├── CMakeLists.txt │ │ │ ├── aie_halt_cb.cpp │ │ │ ├── aie_halt_cb.h │ │ │ ├── aie_halt_impl.h │ │ │ ├── aie_halt_plugin.cpp │ │ │ ├── aie_halt_plugin.h │ │ │ ├── clientDev │ │ │ │ ├── aie_halt.cpp │ │ │ │ └── aie_halt.h │ │ │ └── ve2 │ │ │ │ ├── aie_halt.cpp │ │ │ │ └── aie_halt.h │ │ ├── aie_pc │ │ │ ├── CMakeLists.txt │ │ │ ├── aie_pc_cb.cpp │ │ │ ├── aie_pc_cb.h │ │ │ ├── aie_pc_impl.h │ │ │ ├── aie_pc_plugin.cpp │ │ │ ├── aie_pc_plugin.h │ │ │ └── clientDev │ │ │ │ ├── aie_pc.cpp │ │ │ │ └── aie_pc.h │ │ ├── aie_profile │ │ │ ├── CMakeLists.txt │ │ │ ├── aie_profile_cb.cpp │ │ │ ├── aie_profile_cb.h │ │ │ ├── aie_profile_defs.h │ │ │ ├── aie_profile_impl.h │ │ │ ├── aie_profile_metadata.cpp │ │ │ ├── aie_profile_metadata.h │ │ │ ├── aie_profile_plugin.cpp │ │ │ ├── aie_profile_plugin.h │ │ │ ├── client │ │ │ │ ├── aie_profile.cpp │ │ │ │ └── aie_profile.h │ │ │ ├── edge │ │ │ │ ├── aie_profile.cpp │ │ │ │ └── aie_profile.h │ │ │ ├── util │ │ │ │ ├── aie_profile_config.cpp │ │ │ │ ├── aie_profile_config.h │ │ │ │ ├── aie_profile_util.cpp │ │ │ │ └── aie_profile_util.h │ │ │ ├── ve2 │ │ │ │ ├── aie_profile.cpp │ │ │ │ └── aie_profile.h │ │ │ └── x86 │ │ │ │ ├── aie_profile.cpp │ │ │ │ ├── aie_profile.h │ │ │ │ └── aie_profile_kernel_config.h │ │ ├── aie_status │ │ │ ├── CMakeLists.txt │ │ │ ├── aie_status_cb.cpp │ │ │ ├── aie_status_plugin.cpp │ │ │ └── aie_status_plugin.h │ │ ├── aie_trace │ │ │ ├── CMakeLists.txt │ │ │ ├── aie_trace_cb.cpp │ │ │ ├── aie_trace_cb.h │ │ │ ├── aie_trace_impl.h │ │ │ ├── aie_trace_metadata.cpp │ │ │ ├── aie_trace_metadata.h │ │ │ ├── aie_trace_offload_manager.cpp │ │ │ ├── aie_trace_offload_manager.h │ │ │ ├── aie_trace_plugin.cpp │ │ │ ├── aie_trace_plugin.h │ │ │ ├── client │ │ │ │ ├── aie_trace.cpp │ │ │ │ ├── aie_trace.h │ │ │ │ └── resources_def.h │ │ │ ├── edge │ │ │ │ ├── aie_trace.cpp │ │ │ │ └── aie_trace.h │ │ │ ├── util │ │ │ │ ├── aie_trace_config.cpp │ │ │ │ ├── aie_trace_config.h │ │ │ │ ├── aie_trace_util.cpp │ │ │ │ └── aie_trace_util.h │ │ │ ├── ve2 │ │ │ │ ├── aie_trace.cpp │ │ │ │ └── aie_trace.h │ │ │ └── x86 │ │ │ │ ├── aie_trace.cpp │ │ │ │ ├── aie_trace.h │ │ │ │ └── aie_trace_kernel_config.h │ │ ├── device_offload │ │ │ ├── device_offload_plugin.cpp │ │ │ ├── device_offload_plugin.h │ │ │ ├── hal │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── hal_device_offload_cb.cpp │ │ │ │ ├── hal_device_offload_cb.h │ │ │ │ ├── hal_device_offload_plugin.cpp │ │ │ │ └── hal_device_offload_plugin.h │ │ │ ├── hw_emu │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── hw_emu_device_offload_cb.cpp │ │ │ │ ├── hw_emu_device_offload_cb.h │ │ │ │ ├── hw_emu_device_offload_plugin.cpp │ │ │ │ └── hw_emu_device_offload_plugin.h │ │ │ └── opencl │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── opencl_device_info_cb.cpp │ │ │ │ ├── opencl_device_info_cb.h │ │ │ │ ├── opencl_device_info_plugin.cpp │ │ │ │ └── opencl_device_info_plugin.h │ │ ├── hal │ │ │ ├── CMakeLists.txt │ │ │ ├── hal_plugin.cpp │ │ │ ├── hal_plugin.h │ │ │ ├── xdp_hal_plugin.cpp │ │ │ └── xdp_hal_plugin_interface.h │ │ ├── hal_api_interface │ │ │ ├── CMakeLists.txt │ │ │ ├── xdp_api_interface.cpp │ │ │ ├── xdp_api_interface.h │ │ │ ├── xdp_api_interface_plugin.cpp │ │ │ └── xdp_api_interface_plugin.h │ │ ├── lop │ │ │ ├── CMakeLists.txt │ │ │ ├── lop_cb.cpp │ │ │ ├── lop_cb.h │ │ │ ├── lop_plugin.cpp │ │ │ └── lop_plugin.h │ │ ├── ml_timeline │ │ │ ├── CMakeLists.txt │ │ │ ├── clientDev │ │ │ │ ├── ml_timeline.cpp │ │ │ │ └── ml_timeline.h │ │ │ ├── ml_timeline_cb.cpp │ │ │ ├── ml_timeline_cb.h │ │ │ ├── ml_timeline_impl.h │ │ │ ├── ml_timeline_plugin.cpp │ │ │ ├── ml_timeline_plugin.h │ │ │ └── ve2 │ │ │ │ ├── ml_timeline.cpp │ │ │ │ └── ml_timeline.h │ │ ├── native │ │ │ ├── CMakeLists.txt │ │ │ ├── native_cb.cpp │ │ │ ├── native_cb.h │ │ │ ├── native_plugin.cpp │ │ │ └── native_plugin.h │ │ ├── noc │ │ │ ├── CMakeLists.txt │ │ │ ├── noc_cb.cpp │ │ │ ├── noc_plugin.cpp │ │ │ └── noc_plugin.h │ │ ├── opencl │ │ │ ├── counters │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── opencl_counters_cb.cpp │ │ │ │ ├── opencl_counters_cb.h │ │ │ │ ├── opencl_counters_plugin.cpp │ │ │ │ └── opencl_counters_plugin.h │ │ │ └── trace │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── opencl_trace_cb.cpp │ │ │ │ ├── opencl_trace_cb.h │ │ │ │ ├── opencl_trace_plugin.cpp │ │ │ │ └── opencl_trace_plugin.h │ │ ├── pl_deadlock │ │ │ ├── CMakeLists.txt │ │ │ ├── hw_emu │ │ │ │ ├── hw_emu_pl_deadlock_cb.cpp │ │ │ │ ├── hw_emu_pl_deadlock_cb.h │ │ │ │ ├── hw_emu_pl_deadlock_plugin.cpp │ │ │ │ └── hw_emu_pl_deadlock_plugin.h │ │ │ ├── pl_deadlock_cb.cpp │ │ │ ├── pl_deadlock_cb.h │ │ │ ├── pl_deadlock_plugin.cpp │ │ │ └── pl_deadlock_plugin.h │ │ ├── power │ │ │ ├── CMakeLists.txt │ │ │ ├── power_cb.cpp │ │ │ ├── power_plugin.cpp │ │ │ └── power_plugin.h │ │ ├── system_compiler │ │ │ ├── CMakeLists.txt │ │ │ ├── system_compiler_cb.cpp │ │ │ ├── system_compiler_plugin.cpp │ │ │ └── system_compiler_plugin.h │ │ ├── user │ │ │ ├── CMakeLists.txt │ │ │ ├── user_cb.cpp │ │ │ ├── user_cb.h │ │ │ ├── user_plugin.cpp │ │ │ └── user_plugin.h │ │ ├── vart │ │ │ ├── CMakeLists.txt │ │ │ ├── vart_cb.cpp │ │ │ ├── vart_plugin.cpp │ │ │ └── vart_plugin.h │ │ └── vp_base │ │ │ ├── info.h │ │ │ ├── utility.cpp │ │ │ ├── utility.h │ │ │ ├── vp_base_plugin.cpp │ │ │ └── vp_base_plugin.h │ │ ├── tools │ │ └── pl_trace_processor │ │ │ ├── Makefile │ │ │ └── main.cpp │ │ └── writer │ │ ├── aie_debug │ │ ├── aie_debug_writer.cpp │ │ ├── aie_debug_writer.h │ │ ├── aie_debug_writer_aie1_metadata.cpp │ │ ├── aie_debug_writer_aie2_metadata.cpp │ │ ├── aie_debug_writer_aie2ps_metadata.cpp │ │ ├── aie_debug_writer_metadata.h │ │ ├── register_interpreter.cpp │ │ └── register_interpreter.h │ │ ├── aie_profile │ │ ├── aie_writer.cpp │ │ └── aie_writer.h │ │ ├── aie_status │ │ ├── aie_status_writer.cpp │ │ └── aie_status_writer.h │ │ ├── aie_trace │ │ ├── AIEEventTimeStamp.cpp │ │ ├── AIEEventTimeStamp.h │ │ ├── aie_trace_config_writer.cpp │ │ ├── aie_trace_config_writer.h │ │ ├── aie_trace_timestamps_writer.cpp │ │ ├── aie_trace_timestamps_writer.h │ │ ├── aie_trace_writer.cpp │ │ └── aie_trace_writer.h │ │ ├── device_trace │ │ ├── device_trace_writer.cpp │ │ └── device_trace_writer.h │ │ ├── hal │ │ ├── hal_apis.h │ │ ├── hal_host_trace_writer.cpp │ │ └── hal_host_trace_writer.h │ │ ├── lop │ │ ├── low_overhead_trace_writer.cpp │ │ └── low_overhead_trace_writer.h │ │ ├── native │ │ ├── native_apis.h │ │ ├── native_writer.cpp │ │ └── native_writer.h │ │ ├── noc │ │ ├── noc_writer.cpp │ │ └── noc_writer.h │ │ ├── opencl │ │ ├── opencl_apis.h │ │ ├── opencl_trace_writer.cpp │ │ └── opencl_trace_writer.h │ │ ├── pl_deadlock │ │ ├── pl_deadlock.cpp │ │ └── pl_deadlock.h │ │ ├── power │ │ ├── power_writer.cpp │ │ └── power_writer.h │ │ ├── user │ │ ├── user_events_trace_writer.cpp │ │ └── user_events_trace_writer.h │ │ └── vp_base │ │ ├── BinaryDataHeader.cpp │ │ ├── BinaryDataHeader.h │ │ ├── BinaryDataWriter.cpp │ │ ├── BinaryDataWriter.h │ │ ├── IBinaryDataEvent.cpp │ │ ├── IBinaryDataEvent.h │ │ ├── IBinaryDataWriter.cpp │ │ ├── IBinaryDataWriter.h │ │ ├── guidance_rules.cpp │ │ ├── guidance_rules.h │ │ ├── ini_parameters.cpp │ │ ├── ini_parameters.h │ │ ├── summary_writer.cpp │ │ ├── summary_writer.h │ │ ├── vp_run_summary.cpp │ │ ├── vp_run_summary.h │ │ ├── vp_summary_writer.cpp │ │ ├── vp_summary_writer.h │ │ ├── vp_trace_writer.cpp │ │ ├── vp_trace_writer.h │ │ ├── vp_writer.cpp │ │ └── vp_writer.h │ ├── xocl │ ├── CMakeLists.txt │ ├── api │ │ ├── api.h │ │ ├── clBuildProgram.cpp │ │ ├── clCompileProgram.cpp │ │ ├── clCreateBuffer.cpp │ │ ├── clCreateCommandQueue.cpp │ │ ├── clCreateContext.cpp │ │ ├── clCreateContextFromType.cpp │ │ ├── clCreateImage.cpp │ │ ├── clCreateImage2D.cpp │ │ ├── clCreateImage3D.cpp │ │ ├── clCreateKernel.cpp │ │ ├── clCreateKernelsInProgram.cpp │ │ ├── clCreatePipe.cpp │ │ ├── clCreateProgramWithBinary.cpp │ │ ├── clCreateProgramWithBuiltInKernels.cpp │ │ ├── clCreateProgramWithSource.cpp │ │ ├── clCreateSampler.cpp │ │ ├── clCreateSubBuffer.cpp │ │ ├── clCreateSubDevices.cpp │ │ ├── clCreateUserEvent.cpp │ │ ├── clEnqueueBarrier.cpp │ │ ├── clEnqueueBarrierWithWaitList.cpp │ │ ├── clEnqueueCopyBuffer.cpp │ │ ├── clEnqueueCopyBufferRect.cpp │ │ ├── clEnqueueCopyBufferToImage.cpp │ │ ├── clEnqueueCopyImage.cpp │ │ ├── clEnqueueCopyImageToBuffer.cpp │ │ ├── clEnqueueFillBuffer.cpp │ │ ├── clEnqueueFillImage.cpp │ │ ├── clEnqueueMapBuffer.cpp │ │ ├── clEnqueueMapImage.cpp │ │ ├── clEnqueueMarker.cpp │ │ ├── clEnqueueMarkerWithWaitList.cpp │ │ ├── clEnqueueMigrateMemObjects.cpp │ │ ├── clEnqueueNDRangeKernel.cpp │ │ ├── clEnqueueNativeKernel.cpp │ │ ├── clEnqueueReadBuffer.cpp │ │ ├── clEnqueueReadBufferRect.cpp │ │ ├── clEnqueueReadImage.cpp │ │ ├── clEnqueueSVMMap.cpp │ │ ├── clEnqueueSVMUnmap.cpp │ │ ├── clEnqueueTask.cpp │ │ ├── clEnqueueUnmapMemObject.cpp │ │ ├── clEnqueueWaitForEvents.cpp │ │ ├── clEnqueueWriteBuffer.cpp │ │ ├── clEnqueueWriteBufferRect.cpp │ │ ├── clEnqueueWriteImage.cpp │ │ ├── clFinish.cpp │ │ ├── clFlush.cpp │ │ ├── clGetCommandQueueInfo.cpp │ │ ├── clGetContextInfo.cpp │ │ ├── clGetDeviceIDs.cpp │ │ ├── clGetDeviceInfo.cpp │ │ ├── clGetEventInfo.cpp │ │ ├── clGetEventProfilingInfo.cpp │ │ ├── clGetExtensionFunctionAddress.cpp │ │ ├── clGetExtensionFunctionAddressForPlatform.cpp │ │ ├── clGetImageInfo.cpp │ │ ├── clGetKernelArgInfo.cpp │ │ ├── clGetKernelInfo.cpp │ │ ├── clGetKernelWorkGroupInfo.cpp │ │ ├── clGetMemObjectInfo.cpp │ │ ├── clGetPipeInfo.cpp │ │ ├── clGetPlatformIDs.cpp │ │ ├── clGetPlatformInfo.cpp │ │ ├── clGetProgramBuildInfo.cpp │ │ ├── clGetProgramInfo.cpp │ │ ├── clGetSamplerInfo.cpp │ │ ├── clGetSupportedImageFormats.cpp │ │ ├── clLinkProgram.cpp │ │ ├── clReleaseCommandQueue.cpp │ │ ├── clReleaseContext.cpp │ │ ├── clReleaseDevice.cpp │ │ ├── clReleaseEvent.cpp │ │ ├── clReleaseKernel.cpp │ │ ├── clReleaseMemObject.cpp │ │ ├── clReleaseProgram.cpp │ │ ├── clReleaseSampler.cpp │ │ ├── clRetainCommandQueue.cpp │ │ ├── clRetainContext.cpp │ │ ├── clRetainDevice.cpp │ │ ├── clRetainEvent.cpp │ │ ├── clRetainKernel.cpp │ │ ├── clRetainMemObject.cpp │ │ ├── clRetainProgram.cpp │ │ ├── clRetainSampler.cpp │ │ ├── clSVMAlloc.cpp │ │ ├── clSVMFree.cpp │ │ ├── clSetCommandQueueProperty.cpp │ │ ├── clSetEventCallback.cpp │ │ ├── clSetKernelArg.cpp │ │ ├── clSetKernelArgSVMPointer.cpp │ │ ├── clSetMemObjectDestructorCallback.cpp │ │ ├── clSetPrintfCallback.cpp │ │ ├── clSetUserEventStatus.cpp │ │ ├── clUnloadCompiler.cpp │ │ ├── clUnloadPlatformCompiler.cpp │ │ ├── clWaitForEvents.cpp │ │ ├── detail │ │ │ ├── command_queue.cpp │ │ │ ├── command_queue.h │ │ │ ├── context.cpp │ │ │ ├── context.h │ │ │ ├── device.cpp │ │ │ ├── device.h │ │ │ ├── event.cpp │ │ │ ├── event.h │ │ │ ├── kernel.cpp │ │ │ ├── kernel.h │ │ │ ├── memory.cpp │ │ │ ├── memory.h │ │ │ ├── platform.cpp │ │ │ ├── platform.h │ │ │ ├── program.cpp │ │ │ ├── program.h │ │ │ ├── sampler.cpp │ │ │ ├── sampler.h │ │ │ └── validate.h │ │ ├── enqueue.cpp │ │ ├── enqueue.h │ │ ├── icd │ │ │ ├── ocl_icd_bindings.cpp │ │ │ ├── ocl_icd_bindings.h │ │ │ └── windows │ │ │ │ ├── icd_dispatch.h │ │ │ │ └── xilinxopencl.def │ │ ├── image.h │ │ ├── khronos │ │ │ ├── check_copy_overlap.cpp │ │ │ └── khronos.h │ │ ├── plugin │ │ │ └── xdp │ │ │ │ ├── appdebug.cpp │ │ │ │ ├── appdebug.h │ │ │ │ ├── debug.cpp │ │ │ │ ├── debug.h │ │ │ │ ├── lop.cpp │ │ │ │ ├── lop.h │ │ │ │ ├── plugin_loader.cpp │ │ │ │ ├── plugin_loader.h │ │ │ │ ├── profile_counters.cpp │ │ │ │ ├── profile_counters.h │ │ │ │ ├── profile_trace.cpp │ │ │ │ ├── profile_trace.h │ │ │ │ └── profile_v2.h │ │ ├── printf │ │ │ ├── rt_printf.cpp │ │ │ ├── rt_printf.h │ │ │ ├── rt_printf_impl.cpp │ │ │ └── rt_printf_impl.h │ │ └── xlnx │ │ │ ├── cl2xrt.cpp │ │ │ ├── clGetMemObjDeviceAddress.cpp │ │ │ ├── xclGetComputeUnitInfo.cpp │ │ │ ├── xclGetMemObjectFd.cpp │ │ │ ├── xclGetMemObjectFromFd.cpp │ │ │ └── xclGetXrtDevice.cpp │ ├── config.h │ ├── core │ │ ├── command_queue.cpp │ │ ├── command_queue.h │ │ ├── compute_unit.cpp │ │ ├── compute_unit.h │ │ ├── context.cpp │ │ ├── context.h │ │ ├── debug.cpp │ │ ├── debug.h │ │ ├── device.cpp │ │ ├── device.h │ │ ├── error.h │ │ ├── event.cpp │ │ ├── event.h │ │ ├── execution_context.cpp │ │ ├── execution_context.h │ │ ├── kernel.cpp │ │ ├── kernel.h │ │ ├── memory.cpp │ │ ├── memory.h │ │ ├── object.h │ │ ├── param.h │ │ ├── platform.cpp │ │ ├── platform.h │ │ ├── program.cpp │ │ ├── program.h │ │ ├── property.h │ │ ├── range.h │ │ ├── refcount.h │ │ ├── sampler.cpp │ │ ├── sampler.h │ │ └── time.h │ ├── test │ │ ├── api │ │ │ ├── setup.h │ │ │ ├── tRefCount.cpp │ │ │ ├── talexnet.cpp │ │ │ ├── tclCreateBuffer.cpp │ │ │ ├── tclCreateSubBuffer.cpp │ │ │ ├── tclCreateUserEvent.cpp │ │ │ ├── tclEnqueueMapBuffer.cpp │ │ │ ├── tclEnqueueWriteBuffer.cpp │ │ │ └── tclReleaseMemObject.cpp │ │ ├── core │ │ │ ├── tevent.cpp │ │ │ ├── tobject.cpp │ │ │ └── tparam.cpp │ │ ├── main.cpp │ │ └── xcl_test_helpers.h │ └── xclbin │ │ ├── xclbin.cpp │ │ └── xclbin.h │ └── xrt │ ├── CMakeLists.txt │ ├── config.h │ ├── device │ ├── device.cpp │ ├── device.h │ ├── hal.cpp │ ├── hal.h │ ├── hal2.cpp │ ├── hal2.h │ └── hal_static.cpp │ ├── test │ ├── device │ │ ├── tbo1.cpp │ │ ├── tbo2.cpp │ │ ├── tbo3.cpp │ │ ├── tdevice-bw.cpp │ │ ├── tdevice.cpp │ │ ├── texecbuf1.cpp │ │ ├── thal1-bw-async.cpp │ │ ├── thal1-bw.cpp │ │ └── tmbuf1.cpp │ ├── main.cpp │ ├── test_helpers.cpp │ ├── test_helpers.h │ └── util │ │ ├── taligned_allocator.cpp │ │ ├── tconfig.cpp │ │ ├── tconfig.cpp.ini │ │ ├── tevent.cpp │ │ ├── tregmap.cpp │ │ ├── ttask.cpp │ │ ├── tthread.cpp │ │ └── tthread.cpp.ini │ ├── util │ ├── aligned_allocator.h │ ├── config_reader.h │ ├── debug.h │ ├── error.h │ ├── event.h │ ├── message.h │ ├── range.h │ ├── regmap.h │ ├── task.h │ ├── td.h │ ├── time.h │ └── uuid.h │ └── xrt++ │ ├── CMakeLists.txt │ ├── xrt++.hpp │ ├── xrtexec.cpp │ └── xrtexec.hpp └── tests ├── .clangd ├── .dir-locals.el ├── CMake └── utils.cmake ├── CMakeLists.txt ├── build └── build.sh ├── hip ├── .clang-tidy ├── CMakeLists.txt ├── common │ └── common.h ├── device │ ├── CMakeLists.txt │ └── main.cpp ├── vadd-stream │ ├── CMakeLists.txt │ ├── Makefile.gpu │ ├── kernel.cpp │ ├── main.cpp │ └── nop.cpp └── vadd │ ├── CMakeLists.txt │ ├── Makefile.gpu │ ├── kernel.cpp │ ├── main.cpp │ └── nop.cpp ├── mcdm ├── CMakeLists.txt ├── build.sh └── probe │ ├── CMakeLists.txt │ └── main.cpp ├── message-mgmt ├── Makefile ├── mssg.cpp ├── run.sh └── sdaccel.ini ├── pyopencl ├── 22_verify.py ├── 23_bandwidth.py └── versal_23_bandwidth.py ├── python ├── 00_hello │ ├── Makefile │ └── main.py ├── 02_simple │ └── main.py ├── 04_swizzle │ └── main.py ├── 200_binding │ └── 200_main.py ├── 22_verify │ ├── 22_verify.py │ └── sdainfo.yml ├── 23_bandwidth │ ├── 23_bandwidth.py │ ├── host_mem_23_bandwidth.py │ └── versal_23_bandwidth.py ├── README.md └── utils_binding.py ├── unit_test ├── 000_verify │ ├── CMakeLists.txt │ ├── Makefile │ ├── README │ ├── hello.cl │ ├── hello.cpp │ └── testinfo.yml ├── 001_basic_sincos │ ├── CMakeLists.txt │ ├── Makefile │ ├── sincos.cl │ ├── test-cl.cpp │ └── testinfo.yml ├── 002_bitonic_sort │ ├── CMakeLists.txt │ ├── Makefile │ ├── kernel.cl │ ├── test-cl.cpp │ ├── testinfo.yml │ ├── utils.cpp │ └── utils.h ├── 003_bringup0 │ ├── CMakeLists.txt │ ├── Makefile │ ├── kernel.cl │ ├── main.cpp │ ├── oclErrorCodes.cpp │ ├── oclHelper.cpp │ ├── oclHelper.h │ └── testinfo.yml ├── 004_bringup1 │ ├── CMakeLists.txt │ ├── Makefile │ ├── kernel.cl │ ├── main.cpp │ ├── oclErrorCodes.cpp │ ├── oclHelper.cpp │ ├── oclHelper.h │ └── testinfo.yml ├── 005_bringup2 │ ├── CMakeLists.txt │ ├── Makefile │ ├── kernel.cl │ ├── main.cpp │ ├── oclErrorCodes.cpp │ ├── oclHelper.cpp │ ├── oclHelper.h │ └── testinfo.yml ├── 006_copy │ ├── CMakeLists.txt │ ├── Makefile │ ├── kernel.cl │ ├── test-cl.cpp │ └── testinfo.yml ├── 007_copy_loop │ ├── CMakeLists.txt │ ├── Makefile │ ├── kernel.cl │ ├── test-cl.cpp │ └── testinfo.yml ├── 008_globalbandwidth │ ├── CMakeLists.txt │ ├── Makefile │ ├── ap_interfaces.h │ ├── globalbandwidth.c │ ├── test-cl.cpp │ ├── testinfo.yml │ └── time_profile.c ├── 009_mmult1 │ ├── CMakeLists.txt │ ├── Makefile │ ├── mmult1.cl │ ├── test-cl.cpp │ └── testinfo.yml ├── 010_mmult2 │ ├── CMakeLists.txt │ ├── Makefile │ ├── mmult2.cl │ ├── test-cl.cpp │ └── testinfo.yml ├── 011_mmult3 │ ├── CMakeLists.txt │ ├── Makefile │ ├── mmult3.cl │ ├── test-cl.cpp │ └── testinfo.yml ├── 012_mmult4 │ ├── CMakeLists.txt │ ├── Makefile │ ├── ap_interfaces.h │ ├── mmult4.c │ ├── test-cl.cpp │ ├── testinfo.yml │ └── time_profile.c ├── 013_montecarlo │ ├── CMakeLists.txt │ ├── Makefile │ ├── kernel.cl │ ├── main.cpp │ ├── oclErrorCodes.cpp │ ├── oclHelper.cpp │ ├── oclHelper.h │ └── testinfo.yml ├── 014_multikernel │ ├── CMakeLists.txt │ ├── Makefile │ ├── kernels.cl │ ├── test-cl.cpp │ └── testinfo.yml ├── 015_outoforderqueue │ ├── CMakeLists.txt │ ├── Makefile │ ├── mmult1.cl │ ├── test-cl.cpp │ └── testinfo.yml ├── 016_parkernels │ ├── CMakeLists.txt │ ├── Makefile │ ├── mmult1.cl │ ├── test-cl.cpp │ └── testinfo.yml ├── 017_vectorswizzle │ ├── CMakeLists.txt │ ├── Makefile │ ├── test-cl.cpp │ ├── testinfo.yml │ └── vectorswizzle.cl ├── 018_bringup3 │ ├── CMakeLists.txt │ ├── Makefile │ ├── kernel.cl │ ├── main.cpp │ ├── oclErrorCodes.cpp │ ├── oclHelper.cpp │ ├── oclHelper.h │ └── testinfo.yml ├── 019_bringup4 │ ├── CMakeLists.txt │ ├── Makefile │ ├── kernel.cl │ ├── main.cpp │ ├── oclErrorCodes.cpp │ ├── oclHelper.cpp │ ├── oclHelper.h │ └── testinfo.yml ├── 036_hello │ ├── CMakeLists.txt │ ├── Makefile │ ├── README │ ├── hello.cl │ ├── hello.cpp │ └── testinfo.yml ├── 2kernelglobal_002_rw_4ddr_512 │ ├── CMakeLists.txt │ ├── Makefile │ ├── kernel.cl │ ├── kernelparameter.cl │ ├── main.cpp │ └── testinfo.yml ├── CMakeLists.txt ├── Makefile ├── build.sh ├── cdma │ ├── CMakeLists.txt │ ├── Makefile │ ├── addone.cl │ ├── main.cpp │ └── testinfo.yml ├── common.mk ├── cuselect │ ├── CMakeLists.txt │ ├── Makefile │ ├── main.cpp │ ├── readme.txt │ ├── testinfo.yml │ ├── vadd.cl │ └── xrtxx.cpp ├── dataflow │ ├── N_stage_adders.cpp │ └── main.cpp ├── experimental │ └── exec_write │ │ ├── Makefile │ │ ├── main.cpp │ │ └── xhello_hw.h ├── hostsrc │ └── utils.hpp ├── icdext │ ├── Stream.h │ └── main.cpp ├── subdevice │ ├── CMakeLists.txt │ ├── Makefile │ ├── addone.cl │ ├── main.cpp │ ├── readme.txt │ └── testinfo.yml └── vadd_bank3 │ ├── .host.cpp.swn │ ├── .host.cpp.swo │ ├── CMakeLists.txt │ ├── Makefile │ ├── host.cpp │ ├── main.cpp │ └── vadd.cl └── xrt ├── 00_hello ├── CMakeLists.txt ├── Makefile ├── kernel.cl ├── main.cpp └── testinfo.yml ├── 02_simple ├── CMakeLists.txt ├── Makefile ├── kernel.cl ├── main.cpp ├── testinfo.yml └── xclbin.mk ├── 03_loopback ├── CMakeLists.txt ├── Makefile ├── kernel.cl ├── main.cpp ├── testinfo.yml └── xclbin.mk ├── 04_swizzle ├── CMakeLists.txt ├── Makefile ├── kernel.cl ├── main.cpp ├── testinfo.yml └── xclbin.mk ├── 07_sequence ├── CMakeLists.txt ├── Makefile ├── kernel.cl ├── main.cpp ├── testinfo.yml └── xclbin.mk ├── 100_ert_ncu ├── CMakeLists.txt ├── Makefile ├── kernel.cl ├── ocl.cpp ├── readme.txt ├── testinfo.yml ├── vitis_link.cfg ├── xaddone_hw_64.h ├── xclbin.mk ├── xrt.cpp ├── xrtx.cpp ├── xrtxx-ip.cpp ├── xrtxx-mt.cpp ├── xrtxx-um.cpp └── xrtxx.cpp ├── 102_multiproc_verify ├── CMakeLists.txt ├── Makefile ├── kernel.cl └── main.cpp ├── 11_fp_mmult256 ├── CMakeLists.txt ├── Makefile ├── kernel.cl ├── main.cpp ├── testinfo.yml └── xclbin.mk ├── 13_add_one ├── CMakeLists.txt ├── Makefile ├── kernel.cl ├── main.cpp ├── testinfo.yml └── xclbin.mk ├── 22_verify ├── CMakeLists.txt ├── Makefile ├── kernel.cl ├── main.cpp ├── testinfo.yml ├── xcl.cpp └── xclbin.mk ├── 56_xclbin ├── CMakeLists.txt ├── Makefile ├── kernel.cl ├── main.cpp ├── testinfo.yml └── xclbin.mk ├── CMakeLists.txt ├── Makefile ├── abort ├── CMakeLists.txt ├── ksrc │ ├── loop_vadd.cpp │ └── runPre.tcl ├── main.cpp └── xclbin.mk ├── build ├── build.sh ├── build19.bat └── build22.bat ├── common.mk ├── elf ├── CMakeLists.txt └── main.cpp ├── enqueue ├── CMakeLists.txt ├── enqueue2.cpp ├── kernel.cl ├── vitis_link.cfg └── xclbin.mk ├── fa_kernel ├── CMakeLists.txt ├── Makefile ├── README.md ├── krnl_increment_polling.cpp ├── krnl_nop_aes_kds.cpp ├── ocl.cpp ├── user_polling.cpp ├── xrt.cpp └── xrt2.cpp ├── import_bo ├── expimp.cpp └── import.cpp ├── m2m_arg ├── CMakeLists.txt ├── ksrc │ ├── krnl_vadd.cpp │ ├── krnl_vadd_factor.cpp │ ├── krnl_vmult_factor.cpp │ └── vitis_link.cfg ├── main.cpp └── xclbin.mk ├── mailbox ├── CMakeLists.txt ├── ksrc │ ├── krnl_stream_vadd.cpp │ ├── krnl_stream_vadd_vmult.ini │ ├── krnl_stream_vdatamover.cpp │ ├── krnl_stream_vmult.cpp │ └── runPre.tcl ├── no_mailbox.cpp ├── use_mailbox.cpp ├── xclbin.mk └── xrt.ini ├── multi_xclbin └── simple.cpp ├── perf_IOPS ├── CMakeLists.txt ├── Makefile ├── README.md ├── xcl_api_iops.cpp ├── xrt.ini └── xrt_api_iops.cpp ├── query ├── CMakeLists.txt └── main.cpp ├── readme.txt └── reset ├── CMakeLists.txt ├── main.cpp ├── xcl.cpp └── xrt.cpp /.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.clangd -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/dco.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.github/dco.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/scripts/clang-tidy-review.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.github/scripts/clang-tidy-review.py -------------------------------------------------------------------------------- /.github/scripts/pipeline/attach_cards.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.github/scripts/pipeline/attach_cards.sh -------------------------------------------------------------------------------- /.github/scripts/pipeline/build_xrt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.github/scripts/pipeline/build_xrt.sh -------------------------------------------------------------------------------- /.github/scripts/pipeline/create_vm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.github/scripts/pipeline/create_vm.sh -------------------------------------------------------------------------------- /.github/scripts/pipeline/install_platform.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.github/scripts/pipeline/install_platform.sh -------------------------------------------------------------------------------- /.github/scripts/pipeline/install_xrt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.github/scripts/pipeline/install_xrt.sh -------------------------------------------------------------------------------- /.github/scripts/pipeline/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.github/scripts/pipeline/template.xml -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- 1 | ## WIP - This directory contains all the Github Action Workflows -------------------------------------------------------------------------------- /.github/workflows/binary_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.github/workflows/binary_check.yml -------------------------------------------------------------------------------- /.github/workflows/call_mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.github/workflows/call_mirror.yml -------------------------------------------------------------------------------- /.github/workflows/clangtidy-post.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.github/workflows/clangtidy-post.yml -------------------------------------------------------------------------------- /.github/workflows/clangtidy-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.github/workflows/clangtidy-review.yml -------------------------------------------------------------------------------- /.github/workflows/clangtidy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.github/workflows/clangtidy.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/coverity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.github/workflows/coverity.yml -------------------------------------------------------------------------------- /.github/workflows/coverity2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.github/workflows/coverity2.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.github/workflows/pipeline.yml -------------------------------------------------------------------------------- /.github/workflows/xrt_ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.github/workflows/xrt_ci.yml -------------------------------------------------------------------------------- /.github/workflows/xrt_master_2026.1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.github/workflows/xrt_master_2026.1.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/NOTICE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/README.rst -------------------------------------------------------------------------------- /pyrightconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/pyrightconfig.json -------------------------------------------------------------------------------- /src/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/.clang-tidy -------------------------------------------------------------------------------- /src/CMake/Findlibdw.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/Findlibdw.cmake -------------------------------------------------------------------------------- /src/CMake/Findlibelf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/Findlibelf.cmake -------------------------------------------------------------------------------- /src/CMake/Findlibffi.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/Findlibffi.cmake -------------------------------------------------------------------------------- /src/CMake/boostUtil.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/boostUtil.cmake -------------------------------------------------------------------------------- /src/CMake/ccache.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/ccache.cmake -------------------------------------------------------------------------------- /src/CMake/changelog.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/changelog.cmake -------------------------------------------------------------------------------- /src/CMake/components.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/components.cmake -------------------------------------------------------------------------------- /src/CMake/config/dkms-awsmgmt/dkms.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/dkms-awsmgmt/dkms.conf.in -------------------------------------------------------------------------------- /src/CMake/config/dkms-azure.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/dkms-azure.conf.in -------------------------------------------------------------------------------- /src/CMake/config/dkms-container.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/dkms-container.conf.in -------------------------------------------------------------------------------- /src/CMake/config/dkms-xocl/dkms.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/dkms-xocl/dkms.conf.in -------------------------------------------------------------------------------- /src/CMake/config/dkms-zocl/dkms.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/dkms-zocl/dkms.conf.in -------------------------------------------------------------------------------- /src/CMake/config/postinst-aws.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/postinst-aws.in -------------------------------------------------------------------------------- /src/CMake/config/postinst-azure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/postinst-azure.in -------------------------------------------------------------------------------- /src/CMake/config/postinst-container.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/postinst-container.in -------------------------------------------------------------------------------- /src/CMake/config/postinst-edge.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/postinst-edge.in -------------------------------------------------------------------------------- /src/CMake/config/postinst.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/postinst.in -------------------------------------------------------------------------------- /src/CMake/config/prerm-aws.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/prerm-aws.in -------------------------------------------------------------------------------- /src/CMake/config/prerm-azure.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/prerm-azure.in -------------------------------------------------------------------------------- /src/CMake/config/prerm-container.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/prerm-container.in -------------------------------------------------------------------------------- /src/CMake/config/prerm-edge.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/prerm-edge.in -------------------------------------------------------------------------------- /src/CMake/config/prerm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/prerm.in -------------------------------------------------------------------------------- /src/CMake/config/testBashWrapper.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/testBashWrapper.sh.in -------------------------------------------------------------------------------- /src/CMake/config/version-slim.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/version-slim.h.in -------------------------------------------------------------------------------- /src/CMake/config/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/version.h.in -------------------------------------------------------------------------------- /src/CMake/config/version.json.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/version.json.in -------------------------------------------------------------------------------- /src/CMake/config/version.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/version.rc.in -------------------------------------------------------------------------------- /src/CMake/config/xilinx.icd.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/xilinx.icd.in -------------------------------------------------------------------------------- /src/CMake/config/xrt-aws.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/xrt-aws.pc.in -------------------------------------------------------------------------------- /src/CMake/config/xrt-edge.fp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/xrt-edge.fp.in -------------------------------------------------------------------------------- /src/CMake/config/xrt-edge.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/xrt-edge.pc.in -------------------------------------------------------------------------------- /src/CMake/config/xrt.fp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/xrt.fp.in -------------------------------------------------------------------------------- /src/CMake/config/xrt.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/config/xrt.pc.in -------------------------------------------------------------------------------- /src/CMake/coverity.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/coverity.cmake -------------------------------------------------------------------------------- /src/CMake/cpack-windows-sdk.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/cpack-windows-sdk.cmake -------------------------------------------------------------------------------- /src/CMake/cpackLin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/cpackLin.cmake -------------------------------------------------------------------------------- /src/CMake/cpackWin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/cpackWin.cmake -------------------------------------------------------------------------------- /src/CMake/dkms-aws.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/dkms-aws.cmake -------------------------------------------------------------------------------- /src/CMake/dkms-azure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/dkms-azure.cmake -------------------------------------------------------------------------------- /src/CMake/dkms-container.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/dkms-container.cmake -------------------------------------------------------------------------------- /src/CMake/dkms-edge.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/dkms-edge.cmake -------------------------------------------------------------------------------- /src/CMake/dkms.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/dkms.cmake -------------------------------------------------------------------------------- /src/CMake/embedded_system.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/embedded_system.cmake -------------------------------------------------------------------------------- /src/CMake/findpackage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/findpackage.cmake -------------------------------------------------------------------------------- /src/CMake/icd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/icd.cmake -------------------------------------------------------------------------------- /src/CMake/lint.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/lint.cmake -------------------------------------------------------------------------------- /src/CMake/nativeLnx.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/nativeLnx.cmake -------------------------------------------------------------------------------- /src/CMake/nativeTests.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/nativeTests.cmake -------------------------------------------------------------------------------- /src/CMake/nativeWin.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/nativeWin.cmake -------------------------------------------------------------------------------- /src/CMake/patch/CPackDeb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/patch/CPackDeb.cmake -------------------------------------------------------------------------------- /src/CMake/pkgconfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/pkgconfig.cmake -------------------------------------------------------------------------------- /src/CMake/resources/XilinxBanner.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/resources/XilinxBanner.bmp -------------------------------------------------------------------------------- /src/CMake/resources/XilinxDialog.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/resources/XilinxDialog.bmp -------------------------------------------------------------------------------- /src/CMake/settings.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/settings.cmake -------------------------------------------------------------------------------- /src/CMake/tags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/tags.cmake -------------------------------------------------------------------------------- /src/CMake/unitTestSupport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/unitTestSupport.cmake -------------------------------------------------------------------------------- /src/CMake/utilities.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/utilities.cmake -------------------------------------------------------------------------------- /src/CMake/version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/version.cmake -------------------------------------------------------------------------------- /src/CMake/xrtVariables.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMake/xrtVariables.cmake -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/include/1_2/CL/cl2xrt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/include/1_2/CL/cl2xrt.hpp -------------------------------------------------------------------------------- /src/include/1_2/CL/cl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/include/1_2/CL/cl_ext.h -------------------------------------------------------------------------------- /src/include/1_2/CL/cl_ext_xilinx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/include/1_2/CL/cl_ext_xilinx.h -------------------------------------------------------------------------------- /src/include/1_2/CL/cl_gl_ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/include/1_2/CL/cl_gl_ext.h -------------------------------------------------------------------------------- /src/platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/platform/README.md -------------------------------------------------------------------------------- /src/python/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/python/CMakeLists.txt -------------------------------------------------------------------------------- /src/python/pybind11/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/python/pybind11/CMakeLists.txt -------------------------------------------------------------------------------- /src/python/pybind11/src/pyxrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/python/pybind11/src/pyxrt.cpp -------------------------------------------------------------------------------- /src/runtime_src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/CMakeLists.txt -------------------------------------------------------------------------------- /src/runtime_src/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/CMakeLists.txt -------------------------------------------------------------------------------- /src/runtime_src/core/common/AlignedAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/AlignedAllocator.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/CMakeLists.txt -------------------------------------------------------------------------------- /src/runtime_src/core/common/api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/api/CMakeLists.txt -------------------------------------------------------------------------------- /src/runtime_src/core/common/api/bo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/api/bo.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/api/bo_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/api/bo_int.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/api/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/api/command.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/api/context_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/api/context_mgr.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/api/device_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/api/device_int.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/api/elf_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/api/elf_int.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/api/error_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/api/error_int.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/api/fence_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/api/fence_int.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/api/handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/api/handle.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/api/hw_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/api/hw_queue.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/api/ip_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/api/ip_int.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/api/xrt_bo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/api/xrt_bo.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/api/xrt_elf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/api/xrt_elf.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/api/xrt_ini.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/api/xrt_ini.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/api/xrt_ip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/api/xrt_ip.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/archive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/archive.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/archive.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/bo_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/bo_cache.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/buffer_dumper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/buffer_dumper.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/config.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/config_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/config_reader.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/cuidx_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/cuidx_type.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/debug.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/debug.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/debug_ip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/debug_ip.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/debug_ip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/debug_ip.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/detail/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/detail/trace.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/device.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/device.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/dlfcn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/dlfcn.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/drv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/drv/Makefile -------------------------------------------------------------------------------- /src/runtime_src/core/common/drv/cu_hls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/drv/cu_hls.c -------------------------------------------------------------------------------- /src/runtime_src/core/common/drv/kds_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/drv/kds_core.c -------------------------------------------------------------------------------- /src/runtime_src/core/common/drv/kds_hwctx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/drv/kds_hwctx.c -------------------------------------------------------------------------------- /src/runtime_src/core/common/drv/xrt_cu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/drv/xrt_cu.c -------------------------------------------------------------------------------- /src/runtime_src/core/common/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/error.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/error.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/info_aie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/info_aie.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/info_aie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/info_aie.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/info_aie2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/info_aie2.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/info_aie2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/info_aie2.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/info_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/info_memory.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/info_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/info_memory.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/info_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/info_platform.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/info_vmr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/info_vmr.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/info_vmr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/info_vmr.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/ishim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/ishim.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/memaccess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/memaccess.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/memaccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/memaccess.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/memalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/memalign.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/message.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/message.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/module_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/module_loader.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/query.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/query_reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/query_reset.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/runner/cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/runner/cpu.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/runner/cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/runner/cpu.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/runner/main.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/runner/runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/runner/runner.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/scheduler.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/scheduler.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/scope_guard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/scope_guard.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/sensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/sensor.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/sensor.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/smi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/smi.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/smi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/smi.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/span.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/span.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/sysinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/sysinfo.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/sysinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/sysinfo.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/system.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/system.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/task.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/thread.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/thread.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/time.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/time.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/trace.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/trace.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/unistd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/unistd.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/usage_metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/usage_metrics.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/utils.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/utils.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/uuid.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/xclbin_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/xclbin_parser.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/xclbin_swemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/xclbin_swemu.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/xdp/profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/xdp/profile.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/common/xdp/profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/xdp/profile.h -------------------------------------------------------------------------------- /src/runtime_src/core/common/xrt_profiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/common/xrt_profiling.h -------------------------------------------------------------------------------- /src/runtime_src/core/edge/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/CMakeLists.txt -------------------------------------------------------------------------------- /src/runtime_src/core/edge/drm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/drm/Makefile -------------------------------------------------------------------------------- /src/runtime_src/core/edge/drm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/drm/README -------------------------------------------------------------------------------- /src/runtime_src/core/edge/drm/zocl/10-zocl.rules: -------------------------------------------------------------------------------- 1 | KERNEL=="renderD*",MODE="0666" 2 | -------------------------------------------------------------------------------- /src/runtime_src/core/edge/drm/zocl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/drm/zocl/LICENSE -------------------------------------------------------------------------------- /src/runtime_src/core/edge/drm/zocl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/drm/zocl/Makefile -------------------------------------------------------------------------------- /src/runtime_src/core/edge/skd/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/skd/main.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/edge/skd/sk_daemon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/skd/sk_daemon.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/edge/skd/sk_daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/skd/sk_daemon.h -------------------------------------------------------------------------------- /src/runtime_src/core/edge/skd/xrt_skd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/skd/xrt_skd.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/edge/skd/xrt_skd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/skd/xrt_skd.h -------------------------------------------------------------------------------- /src/runtime_src/core/edge/test/zgem1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/test/zgem1.c -------------------------------------------------------------------------------- /src/runtime_src/core/edge/user/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/user/Makefile -------------------------------------------------------------------------------- /src/runtime_src/core/edge/user/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/user/README -------------------------------------------------------------------------------- /src/runtime_src/core/edge/user/aie/aie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/user/aie/aie.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/edge/user/aie/aie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/user/aie/aie.h -------------------------------------------------------------------------------- /src/runtime_src/core/edge/user/aie/aied.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/user/aie/aied.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/edge/user/aie/aied.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/user/aie/aied.h -------------------------------------------------------------------------------- /src/runtime_src/core/edge/user/aie/aiereg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/user/aie/aiereg.h -------------------------------------------------------------------------------- /src/runtime_src/core/edge/user/dev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/user/dev.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/edge/user/dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/user/dev.h -------------------------------------------------------------------------------- /src/runtime_src/core/edge/user/dev_zocl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/user/dev_zocl.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/edge/user/dev_zocl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/user/dev_zocl.h -------------------------------------------------------------------------------- /src/runtime_src/core/edge/user/drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/user/drv.h -------------------------------------------------------------------------------- /src/runtime_src/core/edge/user/drv_zocl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/user/drv_zocl.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/edge/user/drv_zocl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/user/drv_zocl.h -------------------------------------------------------------------------------- /src/runtime_src/core/edge/user/shim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/user/shim.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/edge/user/shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/user/shim.h -------------------------------------------------------------------------------- /src/runtime_src/core/edge/user/smi_edge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/user/smi_edge.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/edge/user/smi_edge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/edge/user/smi_edge.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/CMakeLists.txt -------------------------------------------------------------------------------- /src/runtime_src/core/include/ert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/ert.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/ert_fa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/ert_fa.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/ps_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/ps_kernel.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/shim_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/shim_int.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/stream.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/types.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xcl_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xcl_graph.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xcl_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xcl_macros.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xclbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xclbin.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xclerr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xclerr.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xclerr_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xclerr_int.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xclfeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xclfeatures.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xclhal2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xclhal2.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xclhal2_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xclhal2_mem.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xclperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xclperf.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xdp/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xdp/add.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xdp/aim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xdp/aim.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xdp/am.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xdp/am.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xdp/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xdp/asm.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xdp/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xdp/common.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xdp/counters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xdp/counters.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xdp/fifo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xdp/fifo.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xdp/hal_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xdp/hal_api.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xdp/lapc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xdp/lapc.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xdp/spc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xdp/spc.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xdp/trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xdp/trace.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xgq_cmd_ert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xgq_cmd_ert.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xgq_cmd_vmr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xgq_cmd_vmr.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xgq_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xgq_impl.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xrt.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xrt/xrt_aie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xrt/xrt_aie.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xrt/xrt_bo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xrt/xrt_bo.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xrt/xrt_uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xrt/xrt_uuid.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xrt_hwqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xrt_hwqueue.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xrt_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xrt_mem.h -------------------------------------------------------------------------------- /src/runtime_src/core/include/xstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/include/xstream.h -------------------------------------------------------------------------------- /src/runtime_src/core/pcie/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/pcie/CMakeLists.txt -------------------------------------------------------------------------------- /src/runtime_src/core/pcie/driver/aws/kernel/mgmt/10-awsmgmt.rules: -------------------------------------------------------------------------------- 1 | KERNEL=="awsmgmt*",MODE="0666",SYMLINK="%k" 2 | -------------------------------------------------------------------------------- /src/runtime_src/core/pcie/linux/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/pcie/linux/LICENSE -------------------------------------------------------------------------------- /src/runtime_src/core/pcie/linux/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/pcie/linux/debug.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/pcie/linux/pcidev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/pcie/linux/pcidev.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/pcie/linux/pcidev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/pcie/linux/pcidev.h -------------------------------------------------------------------------------- /src/runtime_src/core/pcie/linux/pcidrv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/pcie/linux/pcidrv.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/pcie/linux/pcidrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/pcie/linux/pcidrv.h -------------------------------------------------------------------------------- /src/runtime_src/core/pcie/linux/shim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/pcie/linux/shim.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/pcie/linux/shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/pcie/linux/shim.h -------------------------------------------------------------------------------- /src/runtime_src/core/pcie/linux/smi_pcie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/pcie/linux/smi_pcie.h -------------------------------------------------------------------------------- /src/runtime_src/core/pcie/noop/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/pcie/noop/config.h -------------------------------------------------------------------------------- /src/runtime_src/core/pcie/noop/shim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/pcie/noop/shim.cpp -------------------------------------------------------------------------------- /src/runtime_src/core/pcie/noop/shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/pcie/noop/shim.h -------------------------------------------------------------------------------- /src/runtime_src/core/pcie/tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/pcie/tools/README -------------------------------------------------------------------------------- /src/runtime_src/core/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/tools/CMakeLists.txt -------------------------------------------------------------------------------- /src/runtime_src/core/tools/common/BusyBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/tools/common/BusyBar.h -------------------------------------------------------------------------------- /src/runtime_src/core/tools/common/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/tools/common/Process.h -------------------------------------------------------------------------------- /src/runtime_src/core/tools/common/Report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/tools/common/Report.h -------------------------------------------------------------------------------- /src/runtime_src/core/tools/common/SubCmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/tools/common/SubCmd.h -------------------------------------------------------------------------------- /src/runtime_src/core/tools/common/Table2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/tools/common/Table2D.h -------------------------------------------------------------------------------- /src/runtime_src/core/tools/common/XBMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/tools/common/XBMain.h -------------------------------------------------------------------------------- /src/runtime_src/core/tools/common/xball: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/tools/common/xball -------------------------------------------------------------------------------- /src/runtime_src/core/tools/xbmgmt2/xbmgmt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/tools/xbmgmt2/xbmgmt -------------------------------------------------------------------------------- /src/runtime_src/core/tools/xbtop/_xbtop/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/runtime_src/core/tools/xbtop/xbtop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/tools/xbtop/xbtop -------------------------------------------------------------------------------- /src/runtime_src/core/tools/xbtop/xbtop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/tools/xbtop/xbtop.py -------------------------------------------------------------------------------- /src/runtime_src/core/tools/xbutil2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/tools/xbutil2/LICENSE -------------------------------------------------------------------------------- /src/runtime_src/core/tools/xbutil2/OO_P2P.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/tools/xbutil2/OO_P2P.h -------------------------------------------------------------------------------- /src/runtime_src/core/tools/xbutil2/xrt-smi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/core/tools/xbutil2/xrt-smi -------------------------------------------------------------------------------- /src/runtime_src/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/CMakeLists.txt -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/M2M-transfer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/M2M-transfer.svg -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/PCIe-P2P.fodg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/PCIe-P2P.fodg -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/PCIe-P2P.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/PCIe-P2P.svg -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/XRT-Layers.fodg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/XRT-Layers.fodg -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/XRT-Layers.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/XRT-Layers.svg -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/XSA-shell.fodg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/XSA-shell.fodg -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/XSA-shell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/XSA-shell.svg -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/ap_ctrl_chain_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/ap_ctrl_chain_2.PNG -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/ap_ctrl_hs_2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/ap_ctrl_hs_2.PNG -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/build.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/build.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/conf.py -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/debug-faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/debug-faq.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/ert.main.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/ert.main.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/execution-model.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/execution-model.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/formats.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/formats.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/hm.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/hm.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/index.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/install.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/m2m.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/m2m.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/mailbox.main.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/mailbox.main.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/mailbox.proto.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/mailbox.proto.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/mgmt-ioctl.main.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/mgmt-ioctl.main.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/multi.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/multi.dot -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/multiprocess.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/multiprocess.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/nagios_plugin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/nagios_plugin.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/newxsa-bringup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/newxsa-bringup.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/p2p.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/p2p.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/pass-through.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/pass-through.PNG -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/platforms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/platforms.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/pyxrt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/pyxrt.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/q35-0_LI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/q35-0_LI.jpg -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/q35-1_LI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/q35-1_LI.jpg -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/security.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/security.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/sysfs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/sysfs.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/test.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/test.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/vsec.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/vsec.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/xball.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/xball.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/xbflash2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/xbflash2.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/xbmgmt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/xbmgmt.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/xbtools_map.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/xbtools_map.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/xbtop.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/xbtop.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/xclbintools.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/xclbintools.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/xocl_ioctl.main.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/xocl_ioctl.main.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/xrt-smi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/xrt-smi.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/xrt_ini.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/xrt_ini.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/xrt_native.main.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/xrt_native.main.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/xrt_native_apis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/xrt_native_apis.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/yocto.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/yocto.rst -------------------------------------------------------------------------------- /src/runtime_src/doc/toc/zocl_ioctl.main.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/doc/toc/zocl_ioctl.main.rst -------------------------------------------------------------------------------- /src/runtime_src/ert/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/ert/CMakeLists.txt -------------------------------------------------------------------------------- /src/runtime_src/ert/ert.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/ert/ert.mk -------------------------------------------------------------------------------- /src/runtime_src/ert/scheduler/lscript.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/ert/scheduler/lscript.ld -------------------------------------------------------------------------------- /src/runtime_src/ert/scheduler/sched.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/ert/scheduler/sched.c -------------------------------------------------------------------------------- /src/runtime_src/ert/scheduler/sched.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/ert/scheduler/sched.mk -------------------------------------------------------------------------------- /src/runtime_src/ert/scheduler/sched_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/ert/scheduler/sched_cmd.h -------------------------------------------------------------------------------- /src/runtime_src/ert/scheduler/sched_cu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/ert/scheduler/sched_cu.h -------------------------------------------------------------------------------- /src/runtime_src/ert/scheduler/sched_print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/ert/scheduler/sched_print.h -------------------------------------------------------------------------------- /src/runtime_src/ert/scheduler/scheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/ert/scheduler/scheduler.cpp -------------------------------------------------------------------------------- /src/runtime_src/ert/scheduler/xgq_ctrl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/ert/scheduler/xgq_ctrl.c -------------------------------------------------------------------------------- /src/runtime_src/ert/scheduler/xgq_ctrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/ert/scheduler/xgq_ctrl.h -------------------------------------------------------------------------------- /src/runtime_src/ert/scheduler/xgq_cu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/ert/scheduler/xgq_cu.c -------------------------------------------------------------------------------- /src/runtime_src/ert/scheduler/xgq_cu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/ert/scheduler/xgq_cu.h -------------------------------------------------------------------------------- /src/runtime_src/ert/scheduler/xgq_mb_plat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/ert/scheduler/xgq_mb_plat.h -------------------------------------------------------------------------------- /src/runtime_src/hip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/CMakeLists.txt -------------------------------------------------------------------------------- /src/runtime_src/hip/api/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/api/CMakeLists.txt -------------------------------------------------------------------------------- /src/runtime_src/hip/api/hip_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/api/hip_device.cpp -------------------------------------------------------------------------------- /src/runtime_src/hip/api/hip_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/api/hip_error.cpp -------------------------------------------------------------------------------- /src/runtime_src/hip/api/hip_event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/api/hip_event.cpp -------------------------------------------------------------------------------- /src/runtime_src/hip/api/hip_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/api/hip_graph.cpp -------------------------------------------------------------------------------- /src/runtime_src/hip/api/hip_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/api/hip_memory.cpp -------------------------------------------------------------------------------- /src/runtime_src/hip/api/hip_module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/api/hip_module.cpp -------------------------------------------------------------------------------- /src/runtime_src/hip/api/hip_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/api/hip_stream.cpp -------------------------------------------------------------------------------- /src/runtime_src/hip/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/config.h -------------------------------------------------------------------------------- /src/runtime_src/hip/core/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/core/CMakeLists.txt -------------------------------------------------------------------------------- /src/runtime_src/hip/core/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/core/common.h -------------------------------------------------------------------------------- /src/runtime_src/hip/core/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/core/context.cpp -------------------------------------------------------------------------------- /src/runtime_src/hip/core/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/core/context.h -------------------------------------------------------------------------------- /src/runtime_src/hip/core/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/core/device.cpp -------------------------------------------------------------------------------- /src/runtime_src/hip/core/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/core/device.h -------------------------------------------------------------------------------- /src/runtime_src/hip/core/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/core/error.cpp -------------------------------------------------------------------------------- /src/runtime_src/hip/core/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/core/error.h -------------------------------------------------------------------------------- /src/runtime_src/hip/core/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/core/event.cpp -------------------------------------------------------------------------------- /src/runtime_src/hip/core/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/core/event.h -------------------------------------------------------------------------------- /src/runtime_src/hip/core/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/core/graph.cpp -------------------------------------------------------------------------------- /src/runtime_src/hip/core/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/core/graph.h -------------------------------------------------------------------------------- /src/runtime_src/hip/core/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/core/memory.cpp -------------------------------------------------------------------------------- /src/runtime_src/hip/core/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/core/memory.h -------------------------------------------------------------------------------- /src/runtime_src/hip/core/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/core/module.cpp -------------------------------------------------------------------------------- /src/runtime_src/hip/core/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/core/module.h -------------------------------------------------------------------------------- /src/runtime_src/hip/core/stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/core/stream.cpp -------------------------------------------------------------------------------- /src/runtime_src/hip/core/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/core/stream.h -------------------------------------------------------------------------------- /src/runtime_src/hip/hip_config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/hip_config.cmake -------------------------------------------------------------------------------- /src/runtime_src/hip/hip_xrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/hip_xrt.h -------------------------------------------------------------------------------- /src/runtime_src/hip/xrt_hip.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/hip/xrt_hip.def -------------------------------------------------------------------------------- /src/runtime_src/tools/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/scripts/README.md -------------------------------------------------------------------------------- /src/runtime_src/tools/scripts/apu_recipes/u-boot_custom.cfg: -------------------------------------------------------------------------------- 1 | CONFIG_XILINX_OF_BOARD_DTB_ADDR=0x40000 2 | -------------------------------------------------------------------------------- /src/runtime_src/tools/scripts/boost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/scripts/boost.sh -------------------------------------------------------------------------------- /src/runtime_src/tools/scripts/header.lic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/scripts/header.lic -------------------------------------------------------------------------------- /src/runtime_src/tools/scripts/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/scripts/install.sh -------------------------------------------------------------------------------- /src/runtime_src/tools/scripts/loader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/scripts/loader -------------------------------------------------------------------------------- /src/runtime_src/tools/scripts/loader.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/scripts/loader.bat -------------------------------------------------------------------------------- /src/runtime_src/tools/scripts/pkgapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/scripts/pkgapp.sh -------------------------------------------------------------------------------- /src/runtime_src/tools/scripts/pkgapu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/scripts/pkgapu.sh -------------------------------------------------------------------------------- /src/runtime_src/tools/scripts/pkgdsa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/scripts/pkgdsa.sh -------------------------------------------------------------------------------- /src/runtime_src/tools/scripts/rtplot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/scripts/rtplot -------------------------------------------------------------------------------- /src/runtime_src/tools/scripts/setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/scripts/setup.bat -------------------------------------------------------------------------------- /src/runtime_src/tools/scripts/setup.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/scripts/setup.csh -------------------------------------------------------------------------------- /src/runtime_src/tools/scripts/setup.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/scripts/setup.fish -------------------------------------------------------------------------------- /src/runtime_src/tools/scripts/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/scripts/setup.sh -------------------------------------------------------------------------------- /src/runtime_src/tools/scripts/tags.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/scripts/tags.sh -------------------------------------------------------------------------------- /src/runtime_src/tools/scripts/user.lic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/scripts/user.lic -------------------------------------------------------------------------------- /src/runtime_src/tools/scripts/xrtdeps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/scripts/xrtdeps.sh -------------------------------------------------------------------------------- /src/runtime_src/tools/xclbinutil/CBOR.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/xclbinutil/CBOR.cxx -------------------------------------------------------------------------------- /src/runtime_src/tools/xclbinutil/CBOR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/xclbinutil/CBOR.h -------------------------------------------------------------------------------- /src/runtime_src/tools/xclbinutil/DTC.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/xclbinutil/DTC.cxx -------------------------------------------------------------------------------- /src/runtime_src/tools/xclbinutil/DTC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/xclbinutil/DTC.h -------------------------------------------------------------------------------- /src/runtime_src/tools/xclbinutil/FDTNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/xclbinutil/FDTNode.h -------------------------------------------------------------------------------- /src/runtime_src/tools/xclbinutil/Section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/xclbinutil/Section.h -------------------------------------------------------------------------------- /src/runtime_src/tools/xclbinutil/unittests/AIEPartition/1110.txt: -------------------------------------------------------------------------------- 1 | This file represents a PDI image with a 1110 (hex) signature. 2 | -------------------------------------------------------------------------------- /src/runtime_src/tools/xclbinutil/unittests/AieResourcesBin/dummyAieResourcesBin.txt: -------------------------------------------------------------------------------- 1 | Dummy AIE RESOURCES BIN 2 | -------------------------------------------------------------------------------- /src/runtime_src/tools/xclbinutil/unittests/SmartNic/dummy_bytefile.txt: -------------------------------------------------------------------------------- 1 | Dummy Byte File 2 | -------------------------------------------------------------------------------- /src/runtime_src/tools/xclbinutil/unittests/SoftKernel/dummySoftKernel.txt: -------------------------------------------------------------------------------- 1 | Dummy soft kernel 2 | -------------------------------------------------------------------------------- /src/runtime_src/tools/xclbinutil/xclbinutil: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/tools/xclbinutil/xclbinutil -------------------------------------------------------------------------------- /src/runtime_src/xdp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xdp/CMakeLists.txt -------------------------------------------------------------------------------- /src/runtime_src/xdp/appdebug/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xdp/appdebug/CMakeLists.txt -------------------------------------------------------------------------------- /src/runtime_src/xdp/appdebug/appdebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xdp/appdebug/appdebug.cpp -------------------------------------------------------------------------------- /src/runtime_src/xdp/appdebug/appdebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xdp/appdebug/appdebug.h -------------------------------------------------------------------------------- /src/runtime_src/xdp/appdebug/appdebug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xdp/appdebug/appdebug.py -------------------------------------------------------------------------------- /src/runtime_src/xdp/appdebug/appdebugint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xdp/appdebug/appdebugint.py -------------------------------------------------------------------------------- /src/runtime_src/xdp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xdp/config.h -------------------------------------------------------------------------------- /src/runtime_src/xdp/debug/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xdp/debug/CMakeLists.txt -------------------------------------------------------------------------------- /src/runtime_src/xdp/debug/debug_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xdp/debug/debug_plugin.cpp -------------------------------------------------------------------------------- /src/runtime_src/xdp/debug/debug_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xdp/debug/debug_plugin.h -------------------------------------------------------------------------------- /src/runtime_src/xdp/doxygen.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xdp/doxygen.config -------------------------------------------------------------------------------- /src/runtime_src/xdp/profile/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xdp/profile/CMakeLists.txt -------------------------------------------------------------------------------- /src/runtime_src/xdp/profile/device/add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xdp/profile/device/add.cpp -------------------------------------------------------------------------------- /src/runtime_src/xdp/profile/device/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xdp/profile/device/add.h -------------------------------------------------------------------------------- /src/runtime_src/xdp/profile/device/aim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xdp/profile/device/aim.cpp -------------------------------------------------------------------------------- /src/runtime_src/xdp/profile/device/aim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xdp/profile/device/aim.h -------------------------------------------------------------------------------- /src/runtime_src/xdp/profile/device/am.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xdp/profile/device/am.cpp -------------------------------------------------------------------------------- /src/runtime_src/xdp/profile/device/am.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xdp/profile/device/am.h -------------------------------------------------------------------------------- /src/runtime_src/xdp/profile/device/asm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xdp/profile/device/asm.cpp -------------------------------------------------------------------------------- /src/runtime_src/xdp/profile/device/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xdp/profile/device/asm.h -------------------------------------------------------------------------------- /src/runtime_src/xdp/profile/device/noc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xdp/profile/device/noc.cpp -------------------------------------------------------------------------------- /src/runtime_src/xdp/profile/device/noc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xdp/profile/device/noc.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/CMakeLists.txt -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/api.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/clBuildProgram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/clBuildProgram.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/clCreateBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/clCreateBuffer.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/clCreateImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/clCreateImage.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/clCreateKernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/clCreateKernel.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/clCreatePipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/clCreatePipe.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/clEnqueueTask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/clEnqueueTask.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/clFinish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/clFinish.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/clFlush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/clFlush.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/clGetDeviceIDs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/clGetDeviceIDs.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/clGetEventInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/clGetEventInfo.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/clGetImageInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/clGetImageInfo.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/clGetPipeInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/clGetPipeInfo.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/clLinkProgram.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/clLinkProgram.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/clReleaseEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/clReleaseEvent.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/clRetainDevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/clRetainDevice.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/clRetainEvent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/clRetainEvent.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/clRetainKernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/clRetainKernel.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/clSVMAlloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/clSVMAlloc.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/clSVMFree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/clSVMFree.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/clSetKernelArg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/clSetKernelArg.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/detail/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/detail/context.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/detail/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/detail/context.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/detail/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/detail/device.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/detail/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/detail/device.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/detail/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/detail/event.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/detail/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/detail/event.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/detail/kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/detail/kernel.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/detail/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/detail/kernel.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/detail/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/detail/memory.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/detail/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/detail/memory.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/detail/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/detail/platform.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/detail/program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/detail/program.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/detail/program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/detail/program.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/detail/sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/detail/sampler.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/detail/sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/detail/sampler.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/detail/validate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/detail/validate.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/enqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/enqueue.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/enqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/enqueue.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/image.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/khronos/khronos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/khronos/khronos.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/plugin/xdp/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/plugin/xdp/debug.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/plugin/xdp/lop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/plugin/xdp/lop.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/plugin/xdp/lop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/plugin/xdp/lop.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/printf/rt_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/printf/rt_printf.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/api/xlnx/cl2xrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/api/xlnx/cl2xrt.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/config.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/command_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/command_queue.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/command_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/command_queue.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/compute_unit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/compute_unit.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/compute_unit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/compute_unit.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/context.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/context.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/debug.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/debug.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/device.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/device.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/error.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/event.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/event.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/kernel.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/kernel.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/memory.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/memory.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/object.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/param.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/platform.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/platform.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/program.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/program.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/program.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/property.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/property.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/range.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/refcount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/refcount.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/sampler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/sampler.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/sampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/sampler.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/core/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/core/time.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/test/api/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/test/api/setup.h -------------------------------------------------------------------------------- /src/runtime_src/xocl/test/api/tRefCount.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/test/api/tRefCount.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/test/api/talexnet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/test/api/talexnet.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/test/core/tevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/test/core/tevent.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/test/core/tobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/test/core/tobject.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/test/core/tparam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/test/core/tparam.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/test/main.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/xclbin/xclbin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/xclbin/xclbin.cpp -------------------------------------------------------------------------------- /src/runtime_src/xocl/xclbin/xclbin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xocl/xclbin/xclbin.h -------------------------------------------------------------------------------- /src/runtime_src/xrt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/CMakeLists.txt -------------------------------------------------------------------------------- /src/runtime_src/xrt/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/config.h -------------------------------------------------------------------------------- /src/runtime_src/xrt/device/device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/device/device.cpp -------------------------------------------------------------------------------- /src/runtime_src/xrt/device/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/device/device.h -------------------------------------------------------------------------------- /src/runtime_src/xrt/device/hal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/device/hal.cpp -------------------------------------------------------------------------------- /src/runtime_src/xrt/device/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/device/hal.h -------------------------------------------------------------------------------- /src/runtime_src/xrt/device/hal2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/device/hal2.cpp -------------------------------------------------------------------------------- /src/runtime_src/xrt/device/hal2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/device/hal2.h -------------------------------------------------------------------------------- /src/runtime_src/xrt/device/hal_static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/device/hal_static.cpp -------------------------------------------------------------------------------- /src/runtime_src/xrt/test/device/tbo1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/test/device/tbo1.cpp -------------------------------------------------------------------------------- /src/runtime_src/xrt/test/device/tbo2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/test/device/tbo2.cpp -------------------------------------------------------------------------------- /src/runtime_src/xrt/test/device/tbo3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/test/device/tbo3.cpp -------------------------------------------------------------------------------- /src/runtime_src/xrt/test/device/tdevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/test/device/tdevice.cpp -------------------------------------------------------------------------------- /src/runtime_src/xrt/test/device/tmbuf1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/test/device/tmbuf1.cpp -------------------------------------------------------------------------------- /src/runtime_src/xrt/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/test/main.cpp -------------------------------------------------------------------------------- /src/runtime_src/xrt/test/test_helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/test/test_helpers.cpp -------------------------------------------------------------------------------- /src/runtime_src/xrt/test/test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/test/test_helpers.h -------------------------------------------------------------------------------- /src/runtime_src/xrt/test/util/tconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/test/util/tconfig.cpp -------------------------------------------------------------------------------- /src/runtime_src/xrt/test/util/tevent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/test/util/tevent.cpp -------------------------------------------------------------------------------- /src/runtime_src/xrt/test/util/tregmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/test/util/tregmap.cpp -------------------------------------------------------------------------------- /src/runtime_src/xrt/test/util/ttask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/test/util/ttask.cpp -------------------------------------------------------------------------------- /src/runtime_src/xrt/test/util/tthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/test/util/tthread.cpp -------------------------------------------------------------------------------- /src/runtime_src/xrt/util/config_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/util/config_reader.h -------------------------------------------------------------------------------- /src/runtime_src/xrt/util/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/util/debug.h -------------------------------------------------------------------------------- /src/runtime_src/xrt/util/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/util/error.h -------------------------------------------------------------------------------- /src/runtime_src/xrt/util/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/util/event.h -------------------------------------------------------------------------------- /src/runtime_src/xrt/util/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/util/message.h -------------------------------------------------------------------------------- /src/runtime_src/xrt/util/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/util/range.h -------------------------------------------------------------------------------- /src/runtime_src/xrt/util/regmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/util/regmap.h -------------------------------------------------------------------------------- /src/runtime_src/xrt/util/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/util/task.h -------------------------------------------------------------------------------- /src/runtime_src/xrt/util/td.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/util/td.h -------------------------------------------------------------------------------- /src/runtime_src/xrt/util/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/util/time.h -------------------------------------------------------------------------------- /src/runtime_src/xrt/util/uuid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/util/uuid.h -------------------------------------------------------------------------------- /src/runtime_src/xrt/xrt++/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/xrt++/CMakeLists.txt -------------------------------------------------------------------------------- /src/runtime_src/xrt/xrt++/xrt++.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/xrt++/xrt++.hpp -------------------------------------------------------------------------------- /src/runtime_src/xrt/xrt++/xrtexec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/xrt++/xrtexec.cpp -------------------------------------------------------------------------------- /src/runtime_src/xrt/xrt++/xrtexec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/src/runtime_src/xrt/xrt++/xrtexec.hpp -------------------------------------------------------------------------------- /tests/.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/.clangd -------------------------------------------------------------------------------- /tests/.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/.dir-locals.el -------------------------------------------------------------------------------- /tests/CMake/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/CMake/utils.cmake -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/build/build.sh -------------------------------------------------------------------------------- /tests/hip/.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/hip/.clang-tidy -------------------------------------------------------------------------------- /tests/hip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/hip/CMakeLists.txt -------------------------------------------------------------------------------- /tests/hip/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/hip/common/common.h -------------------------------------------------------------------------------- /tests/hip/device/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/hip/device/CMakeLists.txt -------------------------------------------------------------------------------- /tests/hip/device/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/hip/device/main.cpp -------------------------------------------------------------------------------- /tests/hip/vadd-stream/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/hip/vadd-stream/CMakeLists.txt -------------------------------------------------------------------------------- /tests/hip/vadd-stream/Makefile.gpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/hip/vadd-stream/Makefile.gpu -------------------------------------------------------------------------------- /tests/hip/vadd-stream/kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/hip/vadd-stream/kernel.cpp -------------------------------------------------------------------------------- /tests/hip/vadd-stream/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/hip/vadd-stream/main.cpp -------------------------------------------------------------------------------- /tests/hip/vadd-stream/nop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/hip/vadd-stream/nop.cpp -------------------------------------------------------------------------------- /tests/hip/vadd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/hip/vadd/CMakeLists.txt -------------------------------------------------------------------------------- /tests/hip/vadd/Makefile.gpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/hip/vadd/Makefile.gpu -------------------------------------------------------------------------------- /tests/hip/vadd/kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/hip/vadd/kernel.cpp -------------------------------------------------------------------------------- /tests/hip/vadd/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/hip/vadd/main.cpp -------------------------------------------------------------------------------- /tests/hip/vadd/nop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/hip/vadd/nop.cpp -------------------------------------------------------------------------------- /tests/mcdm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/mcdm/CMakeLists.txt -------------------------------------------------------------------------------- /tests/mcdm/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/mcdm/build.sh -------------------------------------------------------------------------------- /tests/mcdm/probe/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/mcdm/probe/CMakeLists.txt -------------------------------------------------------------------------------- /tests/mcdm/probe/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/mcdm/probe/main.cpp -------------------------------------------------------------------------------- /tests/message-mgmt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/message-mgmt/Makefile -------------------------------------------------------------------------------- /tests/message-mgmt/mssg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/message-mgmt/mssg.cpp -------------------------------------------------------------------------------- /tests/message-mgmt/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/message-mgmt/run.sh -------------------------------------------------------------------------------- /tests/message-mgmt/sdaccel.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/message-mgmt/sdaccel.ini -------------------------------------------------------------------------------- /tests/pyopencl/22_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/pyopencl/22_verify.py -------------------------------------------------------------------------------- /tests/pyopencl/23_bandwidth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/pyopencl/23_bandwidth.py -------------------------------------------------------------------------------- /tests/pyopencl/versal_23_bandwidth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/pyopencl/versal_23_bandwidth.py -------------------------------------------------------------------------------- /tests/python/00_hello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/python/00_hello/Makefile -------------------------------------------------------------------------------- /tests/python/00_hello/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/python/00_hello/main.py -------------------------------------------------------------------------------- /tests/python/02_simple/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/python/02_simple/main.py -------------------------------------------------------------------------------- /tests/python/04_swizzle/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/python/04_swizzle/main.py -------------------------------------------------------------------------------- /tests/python/200_binding/200_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/python/200_binding/200_main.py -------------------------------------------------------------------------------- /tests/python/22_verify/22_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/python/22_verify/22_verify.py -------------------------------------------------------------------------------- /tests/python/22_verify/sdainfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/python/22_verify/sdainfo.yml -------------------------------------------------------------------------------- /tests/python/23_bandwidth/23_bandwidth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/python/23_bandwidth/23_bandwidth.py -------------------------------------------------------------------------------- /tests/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/python/README.md -------------------------------------------------------------------------------- /tests/python/utils_binding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/python/utils_binding.py -------------------------------------------------------------------------------- /tests/unit_test/000_verify/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/000_verify/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit_test/000_verify/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/000_verify/Makefile -------------------------------------------------------------------------------- /tests/unit_test/000_verify/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/000_verify/README -------------------------------------------------------------------------------- /tests/unit_test/000_verify/hello.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/000_verify/hello.cl -------------------------------------------------------------------------------- /tests/unit_test/000_verify/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/000_verify/hello.cpp -------------------------------------------------------------------------------- /tests/unit_test/000_verify/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/000_verify/testinfo.yml -------------------------------------------------------------------------------- /tests/unit_test/001_basic_sincos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/001_basic_sincos/Makefile -------------------------------------------------------------------------------- /tests/unit_test/001_basic_sincos/sincos.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/001_basic_sincos/sincos.cl -------------------------------------------------------------------------------- /tests/unit_test/002_bitonic_sort/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/002_bitonic_sort/Makefile -------------------------------------------------------------------------------- /tests/unit_test/002_bitonic_sort/kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/002_bitonic_sort/kernel.cl -------------------------------------------------------------------------------- /tests/unit_test/002_bitonic_sort/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/002_bitonic_sort/utils.cpp -------------------------------------------------------------------------------- /tests/unit_test/002_bitonic_sort/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/002_bitonic_sort/utils.h -------------------------------------------------------------------------------- /tests/unit_test/003_bringup0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/003_bringup0/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit_test/003_bringup0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/003_bringup0/Makefile -------------------------------------------------------------------------------- /tests/unit_test/003_bringup0/kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/003_bringup0/kernel.cl -------------------------------------------------------------------------------- /tests/unit_test/003_bringup0/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/003_bringup0/main.cpp -------------------------------------------------------------------------------- /tests/unit_test/003_bringup0/oclHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/003_bringup0/oclHelper.cpp -------------------------------------------------------------------------------- /tests/unit_test/003_bringup0/oclHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/003_bringup0/oclHelper.h -------------------------------------------------------------------------------- /tests/unit_test/003_bringup0/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/003_bringup0/testinfo.yml -------------------------------------------------------------------------------- /tests/unit_test/004_bringup1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/004_bringup1/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit_test/004_bringup1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/004_bringup1/Makefile -------------------------------------------------------------------------------- /tests/unit_test/004_bringup1/kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/004_bringup1/kernel.cl -------------------------------------------------------------------------------- /tests/unit_test/004_bringup1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/004_bringup1/main.cpp -------------------------------------------------------------------------------- /tests/unit_test/004_bringup1/oclHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/004_bringup1/oclHelper.cpp -------------------------------------------------------------------------------- /tests/unit_test/004_bringup1/oclHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/004_bringup1/oclHelper.h -------------------------------------------------------------------------------- /tests/unit_test/004_bringup1/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/004_bringup1/testinfo.yml -------------------------------------------------------------------------------- /tests/unit_test/005_bringup2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/005_bringup2/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit_test/005_bringup2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/005_bringup2/Makefile -------------------------------------------------------------------------------- /tests/unit_test/005_bringup2/kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/005_bringup2/kernel.cl -------------------------------------------------------------------------------- /tests/unit_test/005_bringup2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/005_bringup2/main.cpp -------------------------------------------------------------------------------- /tests/unit_test/005_bringup2/oclHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/005_bringup2/oclHelper.cpp -------------------------------------------------------------------------------- /tests/unit_test/005_bringup2/oclHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/005_bringup2/oclHelper.h -------------------------------------------------------------------------------- /tests/unit_test/005_bringup2/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/005_bringup2/testinfo.yml -------------------------------------------------------------------------------- /tests/unit_test/006_copy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/006_copy/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit_test/006_copy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/006_copy/Makefile -------------------------------------------------------------------------------- /tests/unit_test/006_copy/kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/006_copy/kernel.cl -------------------------------------------------------------------------------- /tests/unit_test/006_copy/test-cl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/006_copy/test-cl.cpp -------------------------------------------------------------------------------- /tests/unit_test/006_copy/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/006_copy/testinfo.yml -------------------------------------------------------------------------------- /tests/unit_test/007_copy_loop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/007_copy_loop/Makefile -------------------------------------------------------------------------------- /tests/unit_test/007_copy_loop/kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/007_copy_loop/kernel.cl -------------------------------------------------------------------------------- /tests/unit_test/007_copy_loop/test-cl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/007_copy_loop/test-cl.cpp -------------------------------------------------------------------------------- /tests/unit_test/007_copy_loop/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/007_copy_loop/testinfo.yml -------------------------------------------------------------------------------- /tests/unit_test/009_mmult1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/009_mmult1/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit_test/009_mmult1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/009_mmult1/Makefile -------------------------------------------------------------------------------- /tests/unit_test/009_mmult1/mmult1.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/009_mmult1/mmult1.cl -------------------------------------------------------------------------------- /tests/unit_test/009_mmult1/test-cl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/009_mmult1/test-cl.cpp -------------------------------------------------------------------------------- /tests/unit_test/009_mmult1/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/009_mmult1/testinfo.yml -------------------------------------------------------------------------------- /tests/unit_test/010_mmult2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/010_mmult2/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit_test/010_mmult2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/010_mmult2/Makefile -------------------------------------------------------------------------------- /tests/unit_test/010_mmult2/mmult2.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/010_mmult2/mmult2.cl -------------------------------------------------------------------------------- /tests/unit_test/010_mmult2/test-cl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/010_mmult2/test-cl.cpp -------------------------------------------------------------------------------- /tests/unit_test/010_mmult2/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/010_mmult2/testinfo.yml -------------------------------------------------------------------------------- /tests/unit_test/011_mmult3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/011_mmult3/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit_test/011_mmult3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/011_mmult3/Makefile -------------------------------------------------------------------------------- /tests/unit_test/011_mmult3/mmult3.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/011_mmult3/mmult3.cl -------------------------------------------------------------------------------- /tests/unit_test/011_mmult3/test-cl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/011_mmult3/test-cl.cpp -------------------------------------------------------------------------------- /tests/unit_test/011_mmult3/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/011_mmult3/testinfo.yml -------------------------------------------------------------------------------- /tests/unit_test/012_mmult4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/012_mmult4/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit_test/012_mmult4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/012_mmult4/Makefile -------------------------------------------------------------------------------- /tests/unit_test/012_mmult4/ap_interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/012_mmult4/ap_interfaces.h -------------------------------------------------------------------------------- /tests/unit_test/012_mmult4/mmult4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/012_mmult4/mmult4.c -------------------------------------------------------------------------------- /tests/unit_test/012_mmult4/test-cl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/012_mmult4/test-cl.cpp -------------------------------------------------------------------------------- /tests/unit_test/012_mmult4/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/012_mmult4/testinfo.yml -------------------------------------------------------------------------------- /tests/unit_test/012_mmult4/time_profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/012_mmult4/time_profile.c -------------------------------------------------------------------------------- /tests/unit_test/013_montecarlo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/013_montecarlo/Makefile -------------------------------------------------------------------------------- /tests/unit_test/013_montecarlo/kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/013_montecarlo/kernel.cl -------------------------------------------------------------------------------- /tests/unit_test/013_montecarlo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/013_montecarlo/main.cpp -------------------------------------------------------------------------------- /tests/unit_test/013_montecarlo/oclHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/013_montecarlo/oclHelper.h -------------------------------------------------------------------------------- /tests/unit_test/013_montecarlo/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/013_montecarlo/testinfo.yml -------------------------------------------------------------------------------- /tests/unit_test/014_multikernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/014_multikernel/Makefile -------------------------------------------------------------------------------- /tests/unit_test/014_multikernel/kernels.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/014_multikernel/kernels.cl -------------------------------------------------------------------------------- /tests/unit_test/014_multikernel/test-cl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/014_multikernel/test-cl.cpp -------------------------------------------------------------------------------- /tests/unit_test/016_parkernels/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/016_parkernels/Makefile -------------------------------------------------------------------------------- /tests/unit_test/016_parkernels/mmult1.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/016_parkernels/mmult1.cl -------------------------------------------------------------------------------- /tests/unit_test/016_parkernels/test-cl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/016_parkernels/test-cl.cpp -------------------------------------------------------------------------------- /tests/unit_test/016_parkernels/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/016_parkernels/testinfo.yml -------------------------------------------------------------------------------- /tests/unit_test/017_vectorswizzle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/017_vectorswizzle/Makefile -------------------------------------------------------------------------------- /tests/unit_test/018_bringup3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/018_bringup3/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit_test/018_bringup3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/018_bringup3/Makefile -------------------------------------------------------------------------------- /tests/unit_test/018_bringup3/kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/018_bringup3/kernel.cl -------------------------------------------------------------------------------- /tests/unit_test/018_bringup3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/018_bringup3/main.cpp -------------------------------------------------------------------------------- /tests/unit_test/018_bringup3/oclHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/018_bringup3/oclHelper.cpp -------------------------------------------------------------------------------- /tests/unit_test/018_bringup3/oclHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/018_bringup3/oclHelper.h -------------------------------------------------------------------------------- /tests/unit_test/018_bringup3/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/018_bringup3/testinfo.yml -------------------------------------------------------------------------------- /tests/unit_test/019_bringup4/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/019_bringup4/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit_test/019_bringup4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/019_bringup4/Makefile -------------------------------------------------------------------------------- /tests/unit_test/019_bringup4/kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/019_bringup4/kernel.cl -------------------------------------------------------------------------------- /tests/unit_test/019_bringup4/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/019_bringup4/main.cpp -------------------------------------------------------------------------------- /tests/unit_test/019_bringup4/oclHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/019_bringup4/oclHelper.cpp -------------------------------------------------------------------------------- /tests/unit_test/019_bringup4/oclHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/019_bringup4/oclHelper.h -------------------------------------------------------------------------------- /tests/unit_test/019_bringup4/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/019_bringup4/testinfo.yml -------------------------------------------------------------------------------- /tests/unit_test/036_hello/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/036_hello/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit_test/036_hello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/036_hello/Makefile -------------------------------------------------------------------------------- /tests/unit_test/036_hello/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/036_hello/README -------------------------------------------------------------------------------- /tests/unit_test/036_hello/hello.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/036_hello/hello.cl -------------------------------------------------------------------------------- /tests/unit_test/036_hello/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/036_hello/hello.cpp -------------------------------------------------------------------------------- /tests/unit_test/036_hello/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/036_hello/testinfo.yml -------------------------------------------------------------------------------- /tests/unit_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/Makefile -------------------------------------------------------------------------------- /tests/unit_test/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/build.sh -------------------------------------------------------------------------------- /tests/unit_test/cdma/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/cdma/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit_test/cdma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/cdma/Makefile -------------------------------------------------------------------------------- /tests/unit_test/cdma/addone.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/cdma/addone.cl -------------------------------------------------------------------------------- /tests/unit_test/cdma/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/cdma/main.cpp -------------------------------------------------------------------------------- /tests/unit_test/cdma/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/cdma/testinfo.yml -------------------------------------------------------------------------------- /tests/unit_test/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/common.mk -------------------------------------------------------------------------------- /tests/unit_test/cuselect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/cuselect/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit_test/cuselect/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/cuselect/Makefile -------------------------------------------------------------------------------- /tests/unit_test/cuselect/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/cuselect/main.cpp -------------------------------------------------------------------------------- /tests/unit_test/cuselect/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/cuselect/readme.txt -------------------------------------------------------------------------------- /tests/unit_test/cuselect/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/cuselect/testinfo.yml -------------------------------------------------------------------------------- /tests/unit_test/cuselect/vadd.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/cuselect/vadd.cl -------------------------------------------------------------------------------- /tests/unit_test/cuselect/xrtxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/cuselect/xrtxx.cpp -------------------------------------------------------------------------------- /tests/unit_test/dataflow/N_stage_adders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/dataflow/N_stage_adders.cpp -------------------------------------------------------------------------------- /tests/unit_test/dataflow/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/dataflow/main.cpp -------------------------------------------------------------------------------- /tests/unit_test/hostsrc/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/hostsrc/utils.hpp -------------------------------------------------------------------------------- /tests/unit_test/icdext/Stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/icdext/Stream.h -------------------------------------------------------------------------------- /tests/unit_test/icdext/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/icdext/main.cpp -------------------------------------------------------------------------------- /tests/unit_test/subdevice/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/subdevice/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit_test/subdevice/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/subdevice/Makefile -------------------------------------------------------------------------------- /tests/unit_test/subdevice/addone.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/subdevice/addone.cl -------------------------------------------------------------------------------- /tests/unit_test/subdevice/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/subdevice/main.cpp -------------------------------------------------------------------------------- /tests/unit_test/subdevice/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/subdevice/readme.txt -------------------------------------------------------------------------------- /tests/unit_test/subdevice/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/subdevice/testinfo.yml -------------------------------------------------------------------------------- /tests/unit_test/vadd_bank3/.host.cpp.swn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/vadd_bank3/.host.cpp.swn -------------------------------------------------------------------------------- /tests/unit_test/vadd_bank3/.host.cpp.swo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/vadd_bank3/.host.cpp.swo -------------------------------------------------------------------------------- /tests/unit_test/vadd_bank3/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/vadd_bank3/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unit_test/vadd_bank3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/vadd_bank3/Makefile -------------------------------------------------------------------------------- /tests/unit_test/vadd_bank3/host.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/vadd_bank3/host.cpp -------------------------------------------------------------------------------- /tests/unit_test/vadd_bank3/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/vadd_bank3/main.cpp -------------------------------------------------------------------------------- /tests/unit_test/vadd_bank3/vadd.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/unit_test/vadd_bank3/vadd.cl -------------------------------------------------------------------------------- /tests/xrt/00_hello/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/00_hello/CMakeLists.txt -------------------------------------------------------------------------------- /tests/xrt/00_hello/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/00_hello/Makefile -------------------------------------------------------------------------------- /tests/xrt/00_hello/kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/00_hello/kernel.cl -------------------------------------------------------------------------------- /tests/xrt/00_hello/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/00_hello/main.cpp -------------------------------------------------------------------------------- /tests/xrt/00_hello/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/00_hello/testinfo.yml -------------------------------------------------------------------------------- /tests/xrt/02_simple/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/02_simple/CMakeLists.txt -------------------------------------------------------------------------------- /tests/xrt/02_simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/02_simple/Makefile -------------------------------------------------------------------------------- /tests/xrt/02_simple/kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/02_simple/kernel.cl -------------------------------------------------------------------------------- /tests/xrt/02_simple/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/02_simple/main.cpp -------------------------------------------------------------------------------- /tests/xrt/02_simple/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/02_simple/testinfo.yml -------------------------------------------------------------------------------- /tests/xrt/02_simple/xclbin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/02_simple/xclbin.mk -------------------------------------------------------------------------------- /tests/xrt/03_loopback/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/03_loopback/CMakeLists.txt -------------------------------------------------------------------------------- /tests/xrt/03_loopback/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/03_loopback/Makefile -------------------------------------------------------------------------------- /tests/xrt/03_loopback/kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/03_loopback/kernel.cl -------------------------------------------------------------------------------- /tests/xrt/03_loopback/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/03_loopback/main.cpp -------------------------------------------------------------------------------- /tests/xrt/03_loopback/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/03_loopback/testinfo.yml -------------------------------------------------------------------------------- /tests/xrt/03_loopback/xclbin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/03_loopback/xclbin.mk -------------------------------------------------------------------------------- /tests/xrt/04_swizzle/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/04_swizzle/CMakeLists.txt -------------------------------------------------------------------------------- /tests/xrt/04_swizzle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/04_swizzle/Makefile -------------------------------------------------------------------------------- /tests/xrt/04_swizzle/kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/04_swizzle/kernel.cl -------------------------------------------------------------------------------- /tests/xrt/04_swizzle/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/04_swizzle/main.cpp -------------------------------------------------------------------------------- /tests/xrt/04_swizzle/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/04_swizzle/testinfo.yml -------------------------------------------------------------------------------- /tests/xrt/04_swizzle/xclbin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/04_swizzle/xclbin.mk -------------------------------------------------------------------------------- /tests/xrt/07_sequence/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/07_sequence/CMakeLists.txt -------------------------------------------------------------------------------- /tests/xrt/07_sequence/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/07_sequence/Makefile -------------------------------------------------------------------------------- /tests/xrt/07_sequence/kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/07_sequence/kernel.cl -------------------------------------------------------------------------------- /tests/xrt/07_sequence/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/07_sequence/main.cpp -------------------------------------------------------------------------------- /tests/xrt/07_sequence/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/07_sequence/testinfo.yml -------------------------------------------------------------------------------- /tests/xrt/07_sequence/xclbin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/07_sequence/xclbin.mk -------------------------------------------------------------------------------- /tests/xrt/100_ert_ncu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/100_ert_ncu/CMakeLists.txt -------------------------------------------------------------------------------- /tests/xrt/100_ert_ncu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/100_ert_ncu/Makefile -------------------------------------------------------------------------------- /tests/xrt/100_ert_ncu/kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/100_ert_ncu/kernel.cl -------------------------------------------------------------------------------- /tests/xrt/100_ert_ncu/ocl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/100_ert_ncu/ocl.cpp -------------------------------------------------------------------------------- /tests/xrt/100_ert_ncu/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/100_ert_ncu/readme.txt -------------------------------------------------------------------------------- /tests/xrt/100_ert_ncu/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/100_ert_ncu/testinfo.yml -------------------------------------------------------------------------------- /tests/xrt/100_ert_ncu/vitis_link.cfg: -------------------------------------------------------------------------------- 1 | [connectivity] 2 | nk=addone:8 3 | -------------------------------------------------------------------------------- /tests/xrt/100_ert_ncu/xaddone_hw_64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/100_ert_ncu/xaddone_hw_64.h -------------------------------------------------------------------------------- /tests/xrt/100_ert_ncu/xclbin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/100_ert_ncu/xclbin.mk -------------------------------------------------------------------------------- /tests/xrt/100_ert_ncu/xrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/100_ert_ncu/xrt.cpp -------------------------------------------------------------------------------- /tests/xrt/100_ert_ncu/xrtx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/100_ert_ncu/xrtx.cpp -------------------------------------------------------------------------------- /tests/xrt/100_ert_ncu/xrtxx-ip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/100_ert_ncu/xrtxx-ip.cpp -------------------------------------------------------------------------------- /tests/xrt/100_ert_ncu/xrtxx-mt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/100_ert_ncu/xrtxx-mt.cpp -------------------------------------------------------------------------------- /tests/xrt/100_ert_ncu/xrtxx-um.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/100_ert_ncu/xrtxx-um.cpp -------------------------------------------------------------------------------- /tests/xrt/100_ert_ncu/xrtxx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/100_ert_ncu/xrtxx.cpp -------------------------------------------------------------------------------- /tests/xrt/102_multiproc_verify/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/102_multiproc_verify/Makefile -------------------------------------------------------------------------------- /tests/xrt/102_multiproc_verify/kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/102_multiproc_verify/kernel.cl -------------------------------------------------------------------------------- /tests/xrt/102_multiproc_verify/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/102_multiproc_verify/main.cpp -------------------------------------------------------------------------------- /tests/xrt/11_fp_mmult256/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/11_fp_mmult256/CMakeLists.txt -------------------------------------------------------------------------------- /tests/xrt/11_fp_mmult256/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/11_fp_mmult256/Makefile -------------------------------------------------------------------------------- /tests/xrt/11_fp_mmult256/kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/11_fp_mmult256/kernel.cl -------------------------------------------------------------------------------- /tests/xrt/11_fp_mmult256/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/11_fp_mmult256/main.cpp -------------------------------------------------------------------------------- /tests/xrt/11_fp_mmult256/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/11_fp_mmult256/testinfo.yml -------------------------------------------------------------------------------- /tests/xrt/11_fp_mmult256/xclbin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/11_fp_mmult256/xclbin.mk -------------------------------------------------------------------------------- /tests/xrt/13_add_one/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/13_add_one/CMakeLists.txt -------------------------------------------------------------------------------- /tests/xrt/13_add_one/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/13_add_one/Makefile -------------------------------------------------------------------------------- /tests/xrt/13_add_one/kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/13_add_one/kernel.cl -------------------------------------------------------------------------------- /tests/xrt/13_add_one/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/13_add_one/main.cpp -------------------------------------------------------------------------------- /tests/xrt/13_add_one/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/13_add_one/testinfo.yml -------------------------------------------------------------------------------- /tests/xrt/13_add_one/xclbin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/13_add_one/xclbin.mk -------------------------------------------------------------------------------- /tests/xrt/22_verify/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/22_verify/CMakeLists.txt -------------------------------------------------------------------------------- /tests/xrt/22_verify/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/22_verify/Makefile -------------------------------------------------------------------------------- /tests/xrt/22_verify/kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/22_verify/kernel.cl -------------------------------------------------------------------------------- /tests/xrt/22_verify/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/22_verify/main.cpp -------------------------------------------------------------------------------- /tests/xrt/22_verify/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/22_verify/testinfo.yml -------------------------------------------------------------------------------- /tests/xrt/22_verify/xcl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/22_verify/xcl.cpp -------------------------------------------------------------------------------- /tests/xrt/22_verify/xclbin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/22_verify/xclbin.mk -------------------------------------------------------------------------------- /tests/xrt/56_xclbin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/56_xclbin/CMakeLists.txt -------------------------------------------------------------------------------- /tests/xrt/56_xclbin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/56_xclbin/Makefile -------------------------------------------------------------------------------- /tests/xrt/56_xclbin/kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/56_xclbin/kernel.cl -------------------------------------------------------------------------------- /tests/xrt/56_xclbin/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/56_xclbin/main.cpp -------------------------------------------------------------------------------- /tests/xrt/56_xclbin/testinfo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/56_xclbin/testinfo.yml -------------------------------------------------------------------------------- /tests/xrt/56_xclbin/xclbin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/56_xclbin/xclbin.mk -------------------------------------------------------------------------------- /tests/xrt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/CMakeLists.txt -------------------------------------------------------------------------------- /tests/xrt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/Makefile -------------------------------------------------------------------------------- /tests/xrt/abort/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/abort/CMakeLists.txt -------------------------------------------------------------------------------- /tests/xrt/abort/ksrc/loop_vadd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/abort/ksrc/loop_vadd.cpp -------------------------------------------------------------------------------- /tests/xrt/abort/ksrc/runPre.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/abort/ksrc/runPre.tcl -------------------------------------------------------------------------------- /tests/xrt/abort/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/abort/main.cpp -------------------------------------------------------------------------------- /tests/xrt/abort/xclbin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/abort/xclbin.mk -------------------------------------------------------------------------------- /tests/xrt/build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/build/build.sh -------------------------------------------------------------------------------- /tests/xrt/build/build19.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/build/build19.bat -------------------------------------------------------------------------------- /tests/xrt/build/build22.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/build/build22.bat -------------------------------------------------------------------------------- /tests/xrt/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/common.mk -------------------------------------------------------------------------------- /tests/xrt/elf/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/elf/CMakeLists.txt -------------------------------------------------------------------------------- /tests/xrt/elf/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/elf/main.cpp -------------------------------------------------------------------------------- /tests/xrt/enqueue/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/enqueue/CMakeLists.txt -------------------------------------------------------------------------------- /tests/xrt/enqueue/enqueue2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/enqueue/enqueue2.cpp -------------------------------------------------------------------------------- /tests/xrt/enqueue/kernel.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/enqueue/kernel.cl -------------------------------------------------------------------------------- /tests/xrt/enqueue/vitis_link.cfg: -------------------------------------------------------------------------------- 1 | [connectivity] 2 | nk=addone:8 3 | -------------------------------------------------------------------------------- /tests/xrt/enqueue/xclbin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/enqueue/xclbin.mk -------------------------------------------------------------------------------- /tests/xrt/fa_kernel/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/fa_kernel/CMakeLists.txt -------------------------------------------------------------------------------- /tests/xrt/fa_kernel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/fa_kernel/Makefile -------------------------------------------------------------------------------- /tests/xrt/fa_kernel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/fa_kernel/README.md -------------------------------------------------------------------------------- /tests/xrt/fa_kernel/krnl_nop_aes_kds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/fa_kernel/krnl_nop_aes_kds.cpp -------------------------------------------------------------------------------- /tests/xrt/fa_kernel/ocl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/fa_kernel/ocl.cpp -------------------------------------------------------------------------------- /tests/xrt/fa_kernel/user_polling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/fa_kernel/user_polling.cpp -------------------------------------------------------------------------------- /tests/xrt/fa_kernel/xrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/fa_kernel/xrt.cpp -------------------------------------------------------------------------------- /tests/xrt/fa_kernel/xrt2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/fa_kernel/xrt2.cpp -------------------------------------------------------------------------------- /tests/xrt/import_bo/expimp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/import_bo/expimp.cpp -------------------------------------------------------------------------------- /tests/xrt/import_bo/import.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/import_bo/import.cpp -------------------------------------------------------------------------------- /tests/xrt/m2m_arg/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/m2m_arg/CMakeLists.txt -------------------------------------------------------------------------------- /tests/xrt/m2m_arg/ksrc/krnl_vadd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/m2m_arg/ksrc/krnl_vadd.cpp -------------------------------------------------------------------------------- /tests/xrt/m2m_arg/ksrc/krnl_vadd_factor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/m2m_arg/ksrc/krnl_vadd_factor.cpp -------------------------------------------------------------------------------- /tests/xrt/m2m_arg/ksrc/vitis_link.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/m2m_arg/ksrc/vitis_link.cfg -------------------------------------------------------------------------------- /tests/xrt/m2m_arg/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/m2m_arg/main.cpp -------------------------------------------------------------------------------- /tests/xrt/m2m_arg/xclbin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/m2m_arg/xclbin.mk -------------------------------------------------------------------------------- /tests/xrt/mailbox/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/mailbox/CMakeLists.txt -------------------------------------------------------------------------------- /tests/xrt/mailbox/ksrc/krnl_stream_vadd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/mailbox/ksrc/krnl_stream_vadd.cpp -------------------------------------------------------------------------------- /tests/xrt/mailbox/ksrc/runPre.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/mailbox/ksrc/runPre.tcl -------------------------------------------------------------------------------- /tests/xrt/mailbox/no_mailbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/mailbox/no_mailbox.cpp -------------------------------------------------------------------------------- /tests/xrt/mailbox/use_mailbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/mailbox/use_mailbox.cpp -------------------------------------------------------------------------------- /tests/xrt/mailbox/xclbin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/mailbox/xclbin.mk -------------------------------------------------------------------------------- /tests/xrt/mailbox/xrt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/mailbox/xrt.ini -------------------------------------------------------------------------------- /tests/xrt/multi_xclbin/simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/multi_xclbin/simple.cpp -------------------------------------------------------------------------------- /tests/xrt/perf_IOPS/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/perf_IOPS/CMakeLists.txt -------------------------------------------------------------------------------- /tests/xrt/perf_IOPS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/perf_IOPS/Makefile -------------------------------------------------------------------------------- /tests/xrt/perf_IOPS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/perf_IOPS/README.md -------------------------------------------------------------------------------- /tests/xrt/perf_IOPS/xcl_api_iops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/perf_IOPS/xcl_api_iops.cpp -------------------------------------------------------------------------------- /tests/xrt/perf_IOPS/xrt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/perf_IOPS/xrt.ini -------------------------------------------------------------------------------- /tests/xrt/perf_IOPS/xrt_api_iops.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/perf_IOPS/xrt_api_iops.cpp -------------------------------------------------------------------------------- /tests/xrt/query/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/query/CMakeLists.txt -------------------------------------------------------------------------------- /tests/xrt/query/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/query/main.cpp -------------------------------------------------------------------------------- /tests/xrt/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/readme.txt -------------------------------------------------------------------------------- /tests/xrt/reset/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/reset/CMakeLists.txt -------------------------------------------------------------------------------- /tests/xrt/reset/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/reset/main.cpp -------------------------------------------------------------------------------- /tests/xrt/reset/xcl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/reset/xcl.cpp -------------------------------------------------------------------------------- /tests/xrt/reset/xrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xilinx/XRT/HEAD/tests/xrt/reset/xrt.cpp --------------------------------------------------------------------------------