├── .clang-format ├── .clang-tidy ├── .gitignore ├── .style.yapf ├── CMakeLists.txt ├── LICENSE ├── README.md ├── images └── cat.jpg ├── py └── train │ └── gpu_preprocess.py ├── setup.py ├── torchnvjpeg.cpp └── torchnvjpeg.h /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsliupeng/torchnvjpeg/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsliupeng/torchnvjpeg/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | cmake-build-debug 3 | 4 | -------------------------------------------------------------------------------- /.style.yapf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsliupeng/torchnvjpeg/HEAD/.style.yapf -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsliupeng/torchnvjpeg/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsliupeng/torchnvjpeg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsliupeng/torchnvjpeg/HEAD/README.md -------------------------------------------------------------------------------- /images/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsliupeng/torchnvjpeg/HEAD/images/cat.jpg -------------------------------------------------------------------------------- /py/train/gpu_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsliupeng/torchnvjpeg/HEAD/py/train/gpu_preprocess.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsliupeng/torchnvjpeg/HEAD/setup.py -------------------------------------------------------------------------------- /torchnvjpeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsliupeng/torchnvjpeg/HEAD/torchnvjpeg.cpp -------------------------------------------------------------------------------- /torchnvjpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/itsliupeng/torchnvjpeg/HEAD/torchnvjpeg.h --------------------------------------------------------------------------------