├── LICENSE ├── Makefile ├── README.md ├── data └── record.csv ├── src ├── common.h ├── dasp_f16.h ├── dasp_f64.h ├── main_f16.cu ├── main_f64.cu ├── mmio.h ├── mmio_highlevel.h └── utils.h └── test ├── cop20k_A.mtx ├── run_double.sh └── run_half.sh /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperScientificSoftwareLaboratory/DASP/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperScientificSoftwareLaboratory/DASP/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperScientificSoftwareLaboratory/DASP/HEAD/README.md -------------------------------------------------------------------------------- /data/record.csv: -------------------------------------------------------------------------------- 1 | 2 | # 3 | -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperScientificSoftwareLaboratory/DASP/HEAD/src/common.h -------------------------------------------------------------------------------- /src/dasp_f16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperScientificSoftwareLaboratory/DASP/HEAD/src/dasp_f16.h -------------------------------------------------------------------------------- /src/dasp_f64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperScientificSoftwareLaboratory/DASP/HEAD/src/dasp_f64.h -------------------------------------------------------------------------------- /src/main_f16.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperScientificSoftwareLaboratory/DASP/HEAD/src/main_f16.cu -------------------------------------------------------------------------------- /src/main_f64.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperScientificSoftwareLaboratory/DASP/HEAD/src/main_f64.cu -------------------------------------------------------------------------------- /src/mmio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperScientificSoftwareLaboratory/DASP/HEAD/src/mmio.h -------------------------------------------------------------------------------- /src/mmio_highlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperScientificSoftwareLaboratory/DASP/HEAD/src/mmio_highlevel.h -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperScientificSoftwareLaboratory/DASP/HEAD/src/utils.h -------------------------------------------------------------------------------- /test/cop20k_A.mtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuperScientificSoftwareLaboratory/DASP/HEAD/test/cop20k_A.mtx -------------------------------------------------------------------------------- /test/run_double.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd .. 3 | ./spmv_double test/cop20k_A.mtx -------------------------------------------------------------------------------- /test/run_half.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd .. 3 | ./spmv_half test/cop20k_A.mtx --------------------------------------------------------------------------------