├── .github └── workflows │ └── c-cpp.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── accelConfig.sh ├── dto-4-dsa.conf ├── dto-test.c ├── dto.c ├── security.md └── test.sh /.github/workflows/c-cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/DTO/HEAD/.github/workflows/c-cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dto-test* 2 | libdto.so* 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/DTO/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/DTO/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/DTO/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/DTO/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/DTO/HEAD/README.md -------------------------------------------------------------------------------- /accelConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/DTO/HEAD/accelConfig.sh -------------------------------------------------------------------------------- /dto-4-dsa.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/DTO/HEAD/dto-4-dsa.conf -------------------------------------------------------------------------------- /dto-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/DTO/HEAD/dto-test.c -------------------------------------------------------------------------------- /dto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/DTO/HEAD/dto.c -------------------------------------------------------------------------------- /security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/DTO/HEAD/security.md -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/DTO/HEAD/test.sh --------------------------------------------------------------------------------