├── .github ├── semantic.yaml └── workflows │ └── cicd-workflows.yaml ├── .gitignore ├── Dockerfile ├── README.md ├── benchmark.py ├── benchmark ├── 2080ti.png ├── 2080ti_ms.png ├── g4dn.png ├── jetson ├── smem_1080p.png ├── smem_4k.png ├── smem_8k.png └── t4.png ├── deprecated ├── NHWC2NCHW.cu ├── NHWC2NCHW_free.cu ├── dockerfile.opencv ├── jetson_cuda_resize.py ├── resize_fixed_dim.py ├── resize_free_dim.py ├── resize_ker.cu ├── resize_multiple_frame_dim.py └── resize_multiple_frame_dim_refactor.py ├── lerp.py ├── lib_cuResize.cu ├── lintrc └── pylintrc ├── resize.py ├── resize_formated.py ├── resize_free.cu ├── rgba.png ├── tools ├── float3_example.py └── stat.cu └── trump.jpg /.github/semantic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/.github/semantic.yaml -------------------------------------------------------------------------------- /.github/workflows/cicd-workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/.github/workflows/cicd-workflows.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/README.md -------------------------------------------------------------------------------- /benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/benchmark.py -------------------------------------------------------------------------------- /benchmark/2080ti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/benchmark/2080ti.png -------------------------------------------------------------------------------- /benchmark/2080ti_ms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/benchmark/2080ti_ms.png -------------------------------------------------------------------------------- /benchmark/g4dn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/benchmark/g4dn.png -------------------------------------------------------------------------------- /benchmark/jetson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/benchmark/jetson -------------------------------------------------------------------------------- /benchmark/smem_1080p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/benchmark/smem_1080p.png -------------------------------------------------------------------------------- /benchmark/smem_4k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/benchmark/smem_4k.png -------------------------------------------------------------------------------- /benchmark/smem_8k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/benchmark/smem_8k.png -------------------------------------------------------------------------------- /benchmark/t4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/benchmark/t4.png -------------------------------------------------------------------------------- /deprecated/NHWC2NCHW.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/deprecated/NHWC2NCHW.cu -------------------------------------------------------------------------------- /deprecated/NHWC2NCHW_free.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/deprecated/NHWC2NCHW_free.cu -------------------------------------------------------------------------------- /deprecated/dockerfile.opencv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/deprecated/dockerfile.opencv -------------------------------------------------------------------------------- /deprecated/jetson_cuda_resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/deprecated/jetson_cuda_resize.py -------------------------------------------------------------------------------- /deprecated/resize_fixed_dim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/deprecated/resize_fixed_dim.py -------------------------------------------------------------------------------- /deprecated/resize_free_dim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/deprecated/resize_free_dim.py -------------------------------------------------------------------------------- /deprecated/resize_ker.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/deprecated/resize_ker.cu -------------------------------------------------------------------------------- /deprecated/resize_multiple_frame_dim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/deprecated/resize_multiple_frame_dim.py -------------------------------------------------------------------------------- /deprecated/resize_multiple_frame_dim_refactor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/deprecated/resize_multiple_frame_dim_refactor.py -------------------------------------------------------------------------------- /lerp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/lerp.py -------------------------------------------------------------------------------- /lib_cuResize.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/lib_cuResize.cu -------------------------------------------------------------------------------- /lintrc/pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/lintrc/pylintrc -------------------------------------------------------------------------------- /resize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/resize.py -------------------------------------------------------------------------------- /resize_formated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/resize_formated.py -------------------------------------------------------------------------------- /resize_free.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/resize_free.cu -------------------------------------------------------------------------------- /rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/rgba.png -------------------------------------------------------------------------------- /tools/float3_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/tools/float3_example.py -------------------------------------------------------------------------------- /tools/stat.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/tools/stat.cu -------------------------------------------------------------------------------- /trump.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/royinx/CUDA_Resize/HEAD/trump.jpg --------------------------------------------------------------------------------