├── .gitignore ├── LICENSE ├── README.md ├── SCC_conv ├── scc_conv.py ├── scc_cuda.cpp ├── scc_cuda_kernel.cu ├── setup.py └── unitest_jit.py ├── main.py ├── models ├── DW_SCC.py ├── __init__.py ├── cust_conv.py ├── mobilenet.py ├── resnet.py ├── scc_conv.py └── vgg.py ├── run-bench.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukeWang96/DSXplore_IPDPS21/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukeWang96/DSXplore_IPDPS21/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukeWang96/DSXplore_IPDPS21/HEAD/README.md -------------------------------------------------------------------------------- /SCC_conv/scc_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukeWang96/DSXplore_IPDPS21/HEAD/SCC_conv/scc_conv.py -------------------------------------------------------------------------------- /SCC_conv/scc_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukeWang96/DSXplore_IPDPS21/HEAD/SCC_conv/scc_cuda.cpp -------------------------------------------------------------------------------- /SCC_conv/scc_cuda_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukeWang96/DSXplore_IPDPS21/HEAD/SCC_conv/scc_cuda_kernel.cu -------------------------------------------------------------------------------- /SCC_conv/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukeWang96/DSXplore_IPDPS21/HEAD/SCC_conv/setup.py -------------------------------------------------------------------------------- /SCC_conv/unitest_jit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukeWang96/DSXplore_IPDPS21/HEAD/SCC_conv/unitest_jit.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukeWang96/DSXplore_IPDPS21/HEAD/main.py -------------------------------------------------------------------------------- /models/DW_SCC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukeWang96/DSXplore_IPDPS21/HEAD/models/DW_SCC.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukeWang96/DSXplore_IPDPS21/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/cust_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukeWang96/DSXplore_IPDPS21/HEAD/models/cust_conv.py -------------------------------------------------------------------------------- /models/mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukeWang96/DSXplore_IPDPS21/HEAD/models/mobilenet.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukeWang96/DSXplore_IPDPS21/HEAD/models/resnet.py -------------------------------------------------------------------------------- /models/scc_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukeWang96/DSXplore_IPDPS21/HEAD/models/scc_conv.py -------------------------------------------------------------------------------- /models/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukeWang96/DSXplore_IPDPS21/HEAD/models/vgg.py -------------------------------------------------------------------------------- /run-bench.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukeWang96/DSXplore_IPDPS21/HEAD/run-bench.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YukeWang96/DSXplore_IPDPS21/HEAD/utils.py --------------------------------------------------------------------------------