├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── Linux ├── README.md ├── README_CN.md ├── bash_env_setup.sh ├── build_all.sh ├── devicetree │ ├── 6cg-440 │ │ └── zynqmp-armchina.dts │ └── juno-r2 │ │ └── juno-base.dtsi ├── driver │ ├── kmd │ │ ├── LICENSE.TXT │ │ ├── Makefile │ │ ├── armchina,zhouyi-npu.yaml │ │ ├── armchina-npu │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── aipu.c │ │ │ ├── aipu_common.c │ │ │ ├── aipu_common.h │ │ │ ├── aipu_dma_buf.c │ │ │ ├── aipu_dma_buf.h │ │ │ ├── aipu_io.c │ │ │ ├── aipu_io.h │ │ │ ├── aipu_irq.c │ │ │ ├── aipu_irq.h │ │ │ ├── aipu_job_manager.c │ │ │ ├── aipu_job_manager.h │ │ │ ├── aipu_mm.c │ │ │ ├── aipu_mm.h │ │ │ ├── aipu_partition.h │ │ │ ├── aipu_priv.c │ │ │ ├── aipu_priv.h │ │ │ ├── aipu_tcb.c │ │ │ ├── aipu_tcb.h │ │ │ ├── config.h │ │ │ ├── default │ │ │ │ ├── Makefile │ │ │ │ └── default.c │ │ │ ├── include │ │ │ │ ├── armchina_aipu.h │ │ │ │ └── armchina_aipu_soc.h │ │ │ ├── r329 │ │ │ │ ├── Makefile │ │ │ │ └── r329.c │ │ │ ├── sky1 │ │ │ │ ├── Makefile │ │ │ │ ├── cix_sky1_soc.h │ │ │ │ └── sky1.c │ │ │ └── zhouyi │ │ │ │ ├── Makefile │ │ │ │ ├── v1.c │ │ │ │ ├── v1.h │ │ │ │ ├── v1v2_priv.c │ │ │ │ ├── v2.c │ │ │ │ ├── v2.h │ │ │ │ ├── v3.c │ │ │ │ ├── v3.h │ │ │ │ ├── v3_1.c │ │ │ │ ├── v3_1.h │ │ │ │ ├── v3_1_priv.c │ │ │ │ ├── v3_priv.c │ │ │ │ ├── zhouyi.c │ │ │ │ └── zhouyi.h │ │ ├── check_patch.sh │ │ ├── checkpatch.pl │ │ ├── const_structs.checkpatch │ │ ├── porting_guide.txt │ │ └── spelling.txt │ └── umd │ │ ├── 3rdparty │ │ ├── elfio │ │ │ ├── elf_types.hpp │ │ │ ├── elfio.hpp │ │ │ ├── elfio_array.hpp │ │ │ ├── elfio_dump.hpp │ │ │ ├── elfio_dynamic.hpp │ │ │ ├── elfio_header.hpp │ │ │ ├── elfio_modinfo.hpp │ │ │ ├── elfio_note.hpp │ │ │ ├── elfio_relocation.hpp │ │ │ ├── elfio_section.hpp │ │ │ ├── elfio_segment.hpp │ │ │ ├── elfio_strings.hpp │ │ │ ├── elfio_symbols.hpp │ │ │ ├── elfio_utils.hpp │ │ │ └── elfio_version.hpp │ │ ├── numpy │ │ │ └── numpy.i │ │ └── pybind11 │ │ │ ├── attr.h │ │ │ ├── buffer_info.h │ │ │ ├── cast.h │ │ │ ├── chrono.h │ │ │ ├── common.h │ │ │ ├── complex.h │ │ │ ├── detail │ │ │ ├── class.h │ │ │ ├── common.h │ │ │ ├── descr.h │ │ │ ├── init.h │ │ │ ├── internals.h │ │ │ ├── type_caster_base.h │ │ │ └── typeid.h │ │ │ ├── eigen.h │ │ │ ├── eigen │ │ │ ├── common.h │ │ │ ├── matrix.h │ │ │ └── tensor.h │ │ │ ├── embed.h │ │ │ ├── eval.h │ │ │ ├── functional.h │ │ │ ├── gil.h │ │ │ ├── iostream.h │ │ │ ├── numpy.h │ │ │ ├── operators.h │ │ │ ├── options.h │ │ │ ├── pybind11.h │ │ │ ├── pytypes.h │ │ │ ├── stl.h │ │ │ ├── stl │ │ │ └── filesystem.h │ │ │ ├── stl_bind.h │ │ │ └── type_caster_pyobject_ptr.h │ │ ├── LICENSE.TXT │ │ ├── Makefile │ │ ├── include │ │ ├── internal │ │ │ └── internal_api.h │ │ ├── kmd │ │ │ ├── armchina_aipu.h │ │ │ └── tcb.h │ │ ├── simulator │ │ │ ├── aipu.h │ │ │ ├── config.h │ │ │ └── mem_engine_base.h │ │ └── standard_api.h │ │ └── src │ │ ├── common │ │ ├── context.cpp │ │ ├── context.h │ │ ├── ctx_ref_map.cpp │ │ ├── ctx_ref_map.h │ │ ├── device_base.h │ │ ├── export_py_api.cpp │ │ ├── graph.cpp │ │ ├── graph.h │ │ ├── graph_base.cpp │ │ ├── graph_base.h │ │ ├── job_base.cpp │ │ ├── job_base.h │ │ ├── memory_base.cpp │ │ ├── memory_base.h │ │ ├── parser_base.cpp │ │ ├── parser_base.h │ │ ├── share_weight_mgr.cpp │ │ ├── share_weight_mgr.h │ │ ├── standard_api_impl.cpp │ │ ├── status_string.cpp │ │ ├── super_graph.h │ │ └── type.h │ │ ├── device │ │ ├── aipu │ │ │ ├── aipu.cpp │ │ │ ├── aipu.h │ │ │ ├── ukmemory.cpp │ │ │ └── ukmemory.h │ │ ├── device.h │ │ └── simulator │ │ │ ├── simulator.cpp │ │ │ ├── simulator.h │ │ │ ├── simulator_v3.cpp │ │ │ ├── simulator_v3.h │ │ │ ├── simulator_v3_1.cpp │ │ │ ├── simulator_v3_1.h │ │ │ ├── umemory.cpp │ │ │ └── umemory.h │ │ ├── misc │ │ ├── aipu_printf.cpp │ │ └── aipu_printf.h │ │ ├── utils │ │ ├── debug.h │ │ ├── helper.cpp │ │ ├── helper.h │ │ └── log.h │ │ ├── zhouyi_v1v2 │ │ ├── graph_v1v2.cpp │ │ ├── graph_v1v2.h │ │ ├── job_v1v2.cpp │ │ ├── job_v1v2.h │ │ ├── parser_v1v2.cpp │ │ └── parser_v1v2.h │ │ └── zhouyi_v3x │ │ ├── common │ │ ├── coredump.cpp │ │ ├── coredump.h │ │ ├── dynamic_shape.cpp │ │ ├── dynamic_shape.h │ │ ├── gm_v3x.h │ │ ├── graph_v3x.cpp │ │ ├── graph_v3x.h │ │ ├── job_v3x.cpp │ │ ├── job_v3x.h │ │ ├── parser_elf.cpp │ │ └── parser_elf.h │ │ ├── zhouyi_v3 │ │ ├── gm_v3.cpp │ │ ├── gm_v3.h │ │ ├── job_v3.cpp │ │ └── job_v3.h │ │ └── zhouyi_v3_1 │ │ ├── gm_v3_1.cpp │ │ ├── gm_v3_1.h │ │ ├── job_v3_1.cpp │ │ └── job_v3_1.h ├── env_setup.sh ├── out_of_box │ ├── README.md │ ├── benchmarks │ │ └── README.md │ ├── build_umd.sh │ ├── makefile │ ├── out-of-box-test.sh │ ├── run.sh │ └── src │ │ ├── main.cpp │ │ └── standard_api.h ├── python_samples │ ├── README.md │ ├── common │ │ ├── helper.py │ │ └── log.py │ ├── dynshape.py │ ├── multi_batch.py │ ├── sgsf_finish.py │ └── sgsf_flush.py ├── run.sh ├── samples │ ├── README.md │ ├── makefile │ └── src │ │ ├── batch_test │ │ └── main.cpp │ │ ├── benchmark_test │ │ └── main.cpp │ │ ├── common │ │ ├── cmd_line_parsing.cpp │ │ ├── cmd_line_parsing.h │ │ ├── dbg.hpp │ │ ├── helper.cpp │ │ └── helper.h │ │ ├── debugger_test │ │ └── main.cpp │ │ ├── dmabuf_attach_test │ │ └── main.cpp │ │ ├── dmabuf_dma_test │ │ ├── README.md │ │ ├── importer_module │ │ │ ├── Makefile │ │ │ └── importer.c │ │ └── main.cpp │ │ ├── dmabuf_mmap_test │ │ └── main.cpp │ │ ├── dmabuf_producer_consumer_test │ │ ├── README.md │ │ ├── common.cpp │ │ ├── common.h │ │ ├── consumer.cpp │ │ ├── dmabuf_producer_consumer.cpp │ │ └── producer.cpp │ │ ├── dmabuf_vmap_test │ │ ├── README.md │ │ ├── importer_module │ │ │ ├── Makefile │ │ │ └── importer.c │ │ └── main.cpp │ │ ├── dynamic_shape_test │ │ └── main.cpp │ │ ├── emulation_test │ │ └── main.cpp │ │ ├── flush_job_test │ │ └── main.cpp │ │ ├── load_graph_test │ │ └── main.cpp │ │ ├── mthread_test │ │ └── main.cpp │ │ ├── multi_model_test │ │ └── main.cpp │ │ ├── multiple_bss_test │ │ └── main.cpp │ │ ├── profiler_test │ │ └── main.cpp │ │ ├── sharebuffer_test │ │ └── main.cpp │ │ ├── simulation_test │ │ └── main.cpp │ │ └── time_cost_test │ │ └── main.cpp ├── scripts │ ├── git_hooks │ │ ├── pre-commit │ │ └── pre-commit.d │ │ │ ├── format_pyfile │ │ │ └── python │ └── install_git_hooks.sh └── unit_test │ ├── 3rdparty │ └── doctest.h │ ├── Makefile │ ├── README.md │ ├── build.sh │ ├── context │ ├── context_test.cpp │ └── context_test.h │ ├── graph │ ├── graph_test.cpp │ └── graph_test.h │ ├── job │ ├── job_test.cpp │ └── job_test.h │ ├── parser │ ├── parser_test.cpp │ └── parser_test.h │ └── unit_test.cpp ├── README.md └── README_CN.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Linux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/README.md -------------------------------------------------------------------------------- /Linux/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/README_CN.md -------------------------------------------------------------------------------- /Linux/bash_env_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/bash_env_setup.sh -------------------------------------------------------------------------------- /Linux/build_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/build_all.sh -------------------------------------------------------------------------------- /Linux/devicetree/6cg-440/zynqmp-armchina.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/devicetree/6cg-440/zynqmp-armchina.dts -------------------------------------------------------------------------------- /Linux/devicetree/juno-r2/juno-base.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/devicetree/juno-r2/juno-base.dtsi -------------------------------------------------------------------------------- /Linux/driver/kmd/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/LICENSE.TXT -------------------------------------------------------------------------------- /Linux/driver/kmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/Makefile -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina,zhouyi-npu.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina,zhouyi-npu.yaml -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/Kconfig -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/Makefile -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/aipu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/aipu.c -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/aipu_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/aipu_common.c -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/aipu_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/aipu_common.h -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/aipu_dma_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/aipu_dma_buf.c -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/aipu_dma_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/aipu_dma_buf.h -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/aipu_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/aipu_io.c -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/aipu_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/aipu_io.h -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/aipu_irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/aipu_irq.c -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/aipu_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/aipu_irq.h -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/aipu_job_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/aipu_job_manager.c -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/aipu_job_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/aipu_job_manager.h -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/aipu_mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/aipu_mm.c -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/aipu_mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/aipu_mm.h -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/aipu_partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/aipu_partition.h -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/aipu_priv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/aipu_priv.c -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/aipu_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/aipu_priv.h -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/aipu_tcb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/aipu_tcb.c -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/aipu_tcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/aipu_tcb.h -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/config.h -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/default/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/default/Makefile -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/default/default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/default/default.c -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/include/armchina_aipu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/include/armchina_aipu.h -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/include/armchina_aipu_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/include/armchina_aipu_soc.h -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/r329/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/r329/Makefile -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/r329/r329.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/r329/r329.c -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/sky1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/sky1/Makefile -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/sky1/cix_sky1_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/sky1/cix_sky1_soc.h -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/sky1/sky1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/sky1/sky1.c -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/zhouyi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/zhouyi/Makefile -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/zhouyi/v1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/zhouyi/v1.c -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/zhouyi/v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/zhouyi/v1.h -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/zhouyi/v1v2_priv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/zhouyi/v1v2_priv.c -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/zhouyi/v2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/zhouyi/v2.c -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/zhouyi/v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/zhouyi/v2.h -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/zhouyi/v3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/zhouyi/v3.c -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/zhouyi/v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/zhouyi/v3.h -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/zhouyi/v3_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/zhouyi/v3_1.c -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/zhouyi/v3_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/zhouyi/v3_1.h -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/zhouyi/v3_1_priv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/zhouyi/v3_1_priv.c -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/zhouyi/v3_priv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/zhouyi/v3_priv.c -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/zhouyi/zhouyi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/zhouyi/zhouyi.c -------------------------------------------------------------------------------- /Linux/driver/kmd/armchina-npu/zhouyi/zhouyi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/armchina-npu/zhouyi/zhouyi.h -------------------------------------------------------------------------------- /Linux/driver/kmd/check_patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/check_patch.sh -------------------------------------------------------------------------------- /Linux/driver/kmd/checkpatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/checkpatch.pl -------------------------------------------------------------------------------- /Linux/driver/kmd/const_structs.checkpatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/const_structs.checkpatch -------------------------------------------------------------------------------- /Linux/driver/kmd/porting_guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/porting_guide.txt -------------------------------------------------------------------------------- /Linux/driver/kmd/spelling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/kmd/spelling.txt -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/elfio/elf_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/elfio/elf_types.hpp -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/elfio/elfio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/elfio/elfio.hpp -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/elfio/elfio_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/elfio/elfio_array.hpp -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/elfio/elfio_dump.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/elfio/elfio_dump.hpp -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/elfio/elfio_dynamic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/elfio/elfio_dynamic.hpp -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/elfio/elfio_header.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/elfio/elfio_header.hpp -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/elfio/elfio_modinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/elfio/elfio_modinfo.hpp -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/elfio/elfio_note.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/elfio/elfio_note.hpp -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/elfio/elfio_relocation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/elfio/elfio_relocation.hpp -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/elfio/elfio_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/elfio/elfio_section.hpp -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/elfio/elfio_segment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/elfio/elfio_segment.hpp -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/elfio/elfio_strings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/elfio/elfio_strings.hpp -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/elfio/elfio_symbols.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/elfio/elfio_symbols.hpp -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/elfio/elfio_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/elfio/elfio_utils.hpp -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/elfio/elfio_version.hpp: -------------------------------------------------------------------------------- 1 | #define ELFIO_VERSION "3.9" 2 | -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/numpy/numpy.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/numpy/numpy.i -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/attr.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/buffer_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/buffer_info.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/cast.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/chrono.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/common.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/complex.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/detail/class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/detail/class.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/detail/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/detail/common.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/detail/descr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/detail/descr.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/detail/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/detail/init.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/detail/internals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/detail/internals.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/detail/type_caster_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/detail/type_caster_base.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/detail/typeid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/detail/typeid.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/eigen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/eigen.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/eigen/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/eigen/common.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/eigen/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/eigen/matrix.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/eigen/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/eigen/tensor.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/embed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/embed.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/eval.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/functional.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/gil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/gil.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/iostream.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/numpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/numpy.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/operators.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/options.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/pybind11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/pybind11.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/pytypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/pytypes.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/stl.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/stl/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/stl/filesystem.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/stl_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/stl_bind.h -------------------------------------------------------------------------------- /Linux/driver/umd/3rdparty/pybind11/type_caster_pyobject_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/3rdparty/pybind11/type_caster_pyobject_ptr.h -------------------------------------------------------------------------------- /Linux/driver/umd/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/LICENSE.TXT -------------------------------------------------------------------------------- /Linux/driver/umd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/Makefile -------------------------------------------------------------------------------- /Linux/driver/umd/include/internal/internal_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/include/internal/internal_api.h -------------------------------------------------------------------------------- /Linux/driver/umd/include/kmd/armchina_aipu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/include/kmd/armchina_aipu.h -------------------------------------------------------------------------------- /Linux/driver/umd/include/kmd/tcb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/include/kmd/tcb.h -------------------------------------------------------------------------------- /Linux/driver/umd/include/simulator/aipu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/include/simulator/aipu.h -------------------------------------------------------------------------------- /Linux/driver/umd/include/simulator/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/include/simulator/config.h -------------------------------------------------------------------------------- /Linux/driver/umd/include/simulator/mem_engine_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/include/simulator/mem_engine_base.h -------------------------------------------------------------------------------- /Linux/driver/umd/include/standard_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/include/standard_api.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/common/context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/common/context.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/common/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/common/context.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/common/ctx_ref_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/common/ctx_ref_map.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/common/ctx_ref_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/common/ctx_ref_map.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/common/device_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/common/device_base.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/common/export_py_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/common/export_py_api.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/common/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/common/graph.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/common/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/common/graph.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/common/graph_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/common/graph_base.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/common/graph_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/common/graph_base.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/common/job_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/common/job_base.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/common/job_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/common/job_base.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/common/memory_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/common/memory_base.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/common/memory_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/common/memory_base.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/common/parser_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/common/parser_base.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/common/parser_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/common/parser_base.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/common/share_weight_mgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/common/share_weight_mgr.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/common/share_weight_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/common/share_weight_mgr.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/common/standard_api_impl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/common/standard_api_impl.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/common/status_string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/common/status_string.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/common/super_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/common/super_graph.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/common/type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/common/type.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/device/aipu/aipu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/device/aipu/aipu.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/device/aipu/aipu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/device/aipu/aipu.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/device/aipu/ukmemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/device/aipu/ukmemory.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/device/aipu/ukmemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/device/aipu/ukmemory.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/device/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/device/device.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/device/simulator/simulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/device/simulator/simulator.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/device/simulator/simulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/device/simulator/simulator.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/device/simulator/simulator_v3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/device/simulator/simulator_v3.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/device/simulator/simulator_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/device/simulator/simulator_v3.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/device/simulator/simulator_v3_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/device/simulator/simulator_v3_1.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/device/simulator/simulator_v3_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/device/simulator/simulator_v3_1.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/device/simulator/umemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/device/simulator/umemory.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/device/simulator/umemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/device/simulator/umemory.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/misc/aipu_printf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/misc/aipu_printf.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/misc/aipu_printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/misc/aipu_printf.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/utils/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/utils/debug.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/utils/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/utils/helper.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/utils/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/utils/helper.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/utils/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/utils/log.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v1v2/graph_v1v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v1v2/graph_v1v2.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v1v2/graph_v1v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v1v2/graph_v1v2.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v1v2/job_v1v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v1v2/job_v1v2.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v1v2/job_v1v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v1v2/job_v1v2.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v1v2/parser_v1v2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v1v2/parser_v1v2.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v1v2/parser_v1v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v1v2/parser_v1v2.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v3x/common/coredump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v3x/common/coredump.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v3x/common/coredump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v3x/common/coredump.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v3x/common/dynamic_shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v3x/common/dynamic_shape.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v3x/common/dynamic_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v3x/common/dynamic_shape.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v3x/common/gm_v3x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v3x/common/gm_v3x.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v3x/common/graph_v3x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v3x/common/graph_v3x.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v3x/common/graph_v3x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v3x/common/graph_v3x.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v3x/common/job_v3x.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v3x/common/job_v3x.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v3x/common/job_v3x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v3x/common/job_v3x.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v3x/common/parser_elf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v3x/common/parser_elf.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v3x/common/parser_elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v3x/common/parser_elf.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v3x/zhouyi_v3/gm_v3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v3x/zhouyi_v3/gm_v3.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v3x/zhouyi_v3/gm_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v3x/zhouyi_v3/gm_v3.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v3x/zhouyi_v3/job_v3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v3x/zhouyi_v3/job_v3.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v3x/zhouyi_v3/job_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v3x/zhouyi_v3/job_v3.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v3x/zhouyi_v3_1/gm_v3_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v3x/zhouyi_v3_1/gm_v3_1.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v3x/zhouyi_v3_1/gm_v3_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v3x/zhouyi_v3_1/gm_v3_1.h -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v3x/zhouyi_v3_1/job_v3_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v3x/zhouyi_v3_1/job_v3_1.cpp -------------------------------------------------------------------------------- /Linux/driver/umd/src/zhouyi_v3x/zhouyi_v3_1/job_v3_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/driver/umd/src/zhouyi_v3x/zhouyi_v3_1/job_v3_1.h -------------------------------------------------------------------------------- /Linux/env_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/env_setup.sh -------------------------------------------------------------------------------- /Linux/out_of_box/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/out_of_box/README.md -------------------------------------------------------------------------------- /Linux/out_of_box/benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/out_of_box/benchmarks/README.md -------------------------------------------------------------------------------- /Linux/out_of_box/build_umd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/out_of_box/build_umd.sh -------------------------------------------------------------------------------- /Linux/out_of_box/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/out_of_box/makefile -------------------------------------------------------------------------------- /Linux/out_of_box/out-of-box-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/out_of_box/out-of-box-test.sh -------------------------------------------------------------------------------- /Linux/out_of_box/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/out_of_box/run.sh -------------------------------------------------------------------------------- /Linux/out_of_box/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/out_of_box/src/main.cpp -------------------------------------------------------------------------------- /Linux/out_of_box/src/standard_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/out_of_box/src/standard_api.h -------------------------------------------------------------------------------- /Linux/python_samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/python_samples/README.md -------------------------------------------------------------------------------- /Linux/python_samples/common/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/python_samples/common/helper.py -------------------------------------------------------------------------------- /Linux/python_samples/common/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/python_samples/common/log.py -------------------------------------------------------------------------------- /Linux/python_samples/dynshape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/python_samples/dynshape.py -------------------------------------------------------------------------------- /Linux/python_samples/multi_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/python_samples/multi_batch.py -------------------------------------------------------------------------------- /Linux/python_samples/sgsf_finish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/python_samples/sgsf_finish.py -------------------------------------------------------------------------------- /Linux/python_samples/sgsf_flush.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/python_samples/sgsf_flush.py -------------------------------------------------------------------------------- /Linux/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/run.sh -------------------------------------------------------------------------------- /Linux/samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/README.md -------------------------------------------------------------------------------- /Linux/samples/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/makefile -------------------------------------------------------------------------------- /Linux/samples/src/batch_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/batch_test/main.cpp -------------------------------------------------------------------------------- /Linux/samples/src/benchmark_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/benchmark_test/main.cpp -------------------------------------------------------------------------------- /Linux/samples/src/common/cmd_line_parsing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/common/cmd_line_parsing.cpp -------------------------------------------------------------------------------- /Linux/samples/src/common/cmd_line_parsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/common/cmd_line_parsing.h -------------------------------------------------------------------------------- /Linux/samples/src/common/dbg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/common/dbg.hpp -------------------------------------------------------------------------------- /Linux/samples/src/common/helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/common/helper.cpp -------------------------------------------------------------------------------- /Linux/samples/src/common/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/common/helper.h -------------------------------------------------------------------------------- /Linux/samples/src/debugger_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/debugger_test/main.cpp -------------------------------------------------------------------------------- /Linux/samples/src/dmabuf_attach_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/dmabuf_attach_test/main.cpp -------------------------------------------------------------------------------- /Linux/samples/src/dmabuf_dma_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/dmabuf_dma_test/README.md -------------------------------------------------------------------------------- /Linux/samples/src/dmabuf_dma_test/importer_module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/dmabuf_dma_test/importer_module/Makefile -------------------------------------------------------------------------------- /Linux/samples/src/dmabuf_dma_test/importer_module/importer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/dmabuf_dma_test/importer_module/importer.c -------------------------------------------------------------------------------- /Linux/samples/src/dmabuf_dma_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/dmabuf_dma_test/main.cpp -------------------------------------------------------------------------------- /Linux/samples/src/dmabuf_mmap_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/dmabuf_mmap_test/main.cpp -------------------------------------------------------------------------------- /Linux/samples/src/dmabuf_producer_consumer_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/dmabuf_producer_consumer_test/README.md -------------------------------------------------------------------------------- /Linux/samples/src/dmabuf_producer_consumer_test/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/dmabuf_producer_consumer_test/common.cpp -------------------------------------------------------------------------------- /Linux/samples/src/dmabuf_producer_consumer_test/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/dmabuf_producer_consumer_test/common.h -------------------------------------------------------------------------------- /Linux/samples/src/dmabuf_producer_consumer_test/consumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/dmabuf_producer_consumer_test/consumer.cpp -------------------------------------------------------------------------------- /Linux/samples/src/dmabuf_producer_consumer_test/dmabuf_producer_consumer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/dmabuf_producer_consumer_test/dmabuf_producer_consumer.cpp -------------------------------------------------------------------------------- /Linux/samples/src/dmabuf_producer_consumer_test/producer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/dmabuf_producer_consumer_test/producer.cpp -------------------------------------------------------------------------------- /Linux/samples/src/dmabuf_vmap_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/dmabuf_vmap_test/README.md -------------------------------------------------------------------------------- /Linux/samples/src/dmabuf_vmap_test/importer_module/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/dmabuf_vmap_test/importer_module/Makefile -------------------------------------------------------------------------------- /Linux/samples/src/dmabuf_vmap_test/importer_module/importer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/dmabuf_vmap_test/importer_module/importer.c -------------------------------------------------------------------------------- /Linux/samples/src/dmabuf_vmap_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/dmabuf_vmap_test/main.cpp -------------------------------------------------------------------------------- /Linux/samples/src/dynamic_shape_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/dynamic_shape_test/main.cpp -------------------------------------------------------------------------------- /Linux/samples/src/emulation_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/emulation_test/main.cpp -------------------------------------------------------------------------------- /Linux/samples/src/flush_job_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/flush_job_test/main.cpp -------------------------------------------------------------------------------- /Linux/samples/src/load_graph_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/load_graph_test/main.cpp -------------------------------------------------------------------------------- /Linux/samples/src/mthread_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/mthread_test/main.cpp -------------------------------------------------------------------------------- /Linux/samples/src/multi_model_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/multi_model_test/main.cpp -------------------------------------------------------------------------------- /Linux/samples/src/multiple_bss_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/multiple_bss_test/main.cpp -------------------------------------------------------------------------------- /Linux/samples/src/profiler_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/profiler_test/main.cpp -------------------------------------------------------------------------------- /Linux/samples/src/sharebuffer_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/sharebuffer_test/main.cpp -------------------------------------------------------------------------------- /Linux/samples/src/simulation_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/simulation_test/main.cpp -------------------------------------------------------------------------------- /Linux/samples/src/time_cost_test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/samples/src/time_cost_test/main.cpp -------------------------------------------------------------------------------- /Linux/scripts/git_hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/scripts/git_hooks/pre-commit -------------------------------------------------------------------------------- /Linux/scripts/git_hooks/pre-commit.d/format_pyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/scripts/git_hooks/pre-commit.d/format_pyfile -------------------------------------------------------------------------------- /Linux/scripts/git_hooks/pre-commit.d/python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/scripts/git_hooks/pre-commit.d/python -------------------------------------------------------------------------------- /Linux/scripts/install_git_hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/scripts/install_git_hooks.sh -------------------------------------------------------------------------------- /Linux/unit_test/3rdparty/doctest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/unit_test/3rdparty/doctest.h -------------------------------------------------------------------------------- /Linux/unit_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/unit_test/Makefile -------------------------------------------------------------------------------- /Linux/unit_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/unit_test/README.md -------------------------------------------------------------------------------- /Linux/unit_test/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/unit_test/build.sh -------------------------------------------------------------------------------- /Linux/unit_test/context/context_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/unit_test/context/context_test.cpp -------------------------------------------------------------------------------- /Linux/unit_test/context/context_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/unit_test/context/context_test.h -------------------------------------------------------------------------------- /Linux/unit_test/graph/graph_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/unit_test/graph/graph_test.cpp -------------------------------------------------------------------------------- /Linux/unit_test/graph/graph_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/unit_test/graph/graph_test.h -------------------------------------------------------------------------------- /Linux/unit_test/job/job_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/unit_test/job/job_test.cpp -------------------------------------------------------------------------------- /Linux/unit_test/job/job_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/unit_test/job/job_test.h -------------------------------------------------------------------------------- /Linux/unit_test/parser/parser_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/unit_test/parser/parser_test.cpp -------------------------------------------------------------------------------- /Linux/unit_test/parser/parser_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/unit_test/parser/parser_test.h -------------------------------------------------------------------------------- /Linux/unit_test/unit_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/Linux/unit_test/unit_test.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arm-China/Compass_NPU_Driver/HEAD/README_CN.md --------------------------------------------------------------------------------