├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── common ├── CMakeLists.txt ├── matrix_converter.cpp ├── matrix_converter.h ├── measurement_class.cpp ├── measurement_class.h ├── scoo_matrix_class.cpp └── scoo_matrix_class.h ├── cpu ├── CMakeLists.txt ├── cpu_matrix_multiplier.cpp └── cpu_matrix_multiplier.h ├── doc ├── Makefile ├── img │ ├── ada_csr_outperform_csr_vec.pdf │ ├── coo_double_dist.pdf │ ├── coo_float_dist.pdf │ ├── coo_nnzpr.pdf │ ├── csr_adaptive_double_dist.pdf │ ├── csr_adaptive_float_dist.pdf │ ├── csr_csr_outperform_csr_vec.pdf │ ├── csr_cusparse_double_dist.pdf │ ├── csr_cusparse_float_dist.pdf │ ├── csr_double_dist.pdf │ ├── csr_ell_double_dist.pdf │ ├── csr_ell_float_dist.pdf │ ├── csr_float_dist.pdf │ ├── csr_vector_double_dist.pdf │ ├── csr_vector_float_dist.pdf │ ├── hybrid_double_dist.pdf │ ├── hybrid_float_dist.pdf │ ├── matrices │ │ ├── ASIC_100ks.png │ │ ├── Zd_Jac3_db.png │ │ ├── airfoil_2d.png │ │ ├── cage10.png │ │ ├── cavity21.png │ │ ├── coater2.png │ │ ├── hvdc1.png │ │ ├── lhr07.png │ │ ├── scircuit.png │ │ └── src │ │ │ ├── ASIC_100ks.png │ │ │ ├── Zd_Jac3_db.png │ │ │ ├── airfoil_2d.png │ │ │ ├── cage10.png │ │ │ ├── cavity21.png │ │ │ ├── coater2.png │ │ │ ├── hvdc1.png │ │ │ ├── lhr07.png │ │ │ └── scircuit.png │ ├── scoo_double_dist.pdf │ ├── scoo_float_dist.pdf │ ├── scoo_nnzpr.pdf │ ├── selected_double.pdf │ ├── selected_float.pdf │ └── vec_csr_outperform_csr_vec.pdf ├── post.pdf └── post.tex ├── external └── json │ └── json.hpp ├── gpu ├── CMakeLists.txt ├── csr_adaptive_spmv.cu ├── csr_adaptive_spmv.h ├── gpu_matrix_multiplier.cu ├── gpu_matrix_multiplier.h ├── reduce.cuh ├── resizable_gpu_memory.cpp ├── resizable_gpu_memory.h ├── scoo_spmv.cu └── scoo_spmv.h ├── main.cpp ├── results ├── hybrid │ ├── double.json │ ├── double_computational_throughput.json │ ├── double_effective_bandwidth.json │ ├── float.json │ ├── float_computational_throughput.json │ ├── float_effective_bandwidth.json │ └── matrices_info.json ├── mkl_ht_0_tb_0 │ ├── double.json │ ├── double_computational_throughput.json │ ├── double_effective_bandwidth.json │ ├── float.json │ ├── float_computational_throughput.json │ ├── float_effective_bandwidth.json │ └── matrices_info.json ├── mkl_ht_1_tb_1 │ ├── double.json │ ├── double_computational_throughput.json │ ├── double_effective_bandwidth.json │ ├── float.json │ ├── float_computational_throughput.json │ ├── float_effective_bandwidth.json │ └── matrices_info.json └── scoo │ ├── double.json │ ├── double_computational_throughput.json │ ├── double_effective_bandwidth.json │ ├── float.json │ ├── float_computational_throughput.json │ ├── float_effective_bandwidth.json │ └── matrices_info.json └── scripts ├── analyze.py ├── coo_nnzpr.pdf ├── fix_clock.sh └── reset_clock.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/common/CMakeLists.txt -------------------------------------------------------------------------------- /common/matrix_converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/common/matrix_converter.cpp -------------------------------------------------------------------------------- /common/matrix_converter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/common/matrix_converter.h -------------------------------------------------------------------------------- /common/measurement_class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/common/measurement_class.cpp -------------------------------------------------------------------------------- /common/measurement_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/common/measurement_class.h -------------------------------------------------------------------------------- /common/scoo_matrix_class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/common/scoo_matrix_class.cpp -------------------------------------------------------------------------------- /common/scoo_matrix_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/common/scoo_matrix_class.h -------------------------------------------------------------------------------- /cpu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/cpu/CMakeLists.txt -------------------------------------------------------------------------------- /cpu/cpu_matrix_multiplier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/cpu/cpu_matrix_multiplier.cpp -------------------------------------------------------------------------------- /cpu/cpu_matrix_multiplier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/cpu/cpu_matrix_multiplier.h -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/img/ada_csr_outperform_csr_vec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/ada_csr_outperform_csr_vec.pdf -------------------------------------------------------------------------------- /doc/img/coo_double_dist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/coo_double_dist.pdf -------------------------------------------------------------------------------- /doc/img/coo_float_dist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/coo_float_dist.pdf -------------------------------------------------------------------------------- /doc/img/coo_nnzpr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/coo_nnzpr.pdf -------------------------------------------------------------------------------- /doc/img/csr_adaptive_double_dist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/csr_adaptive_double_dist.pdf -------------------------------------------------------------------------------- /doc/img/csr_adaptive_float_dist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/csr_adaptive_float_dist.pdf -------------------------------------------------------------------------------- /doc/img/csr_csr_outperform_csr_vec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/csr_csr_outperform_csr_vec.pdf -------------------------------------------------------------------------------- /doc/img/csr_cusparse_double_dist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/csr_cusparse_double_dist.pdf -------------------------------------------------------------------------------- /doc/img/csr_cusparse_float_dist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/csr_cusparse_float_dist.pdf -------------------------------------------------------------------------------- /doc/img/csr_double_dist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/csr_double_dist.pdf -------------------------------------------------------------------------------- /doc/img/csr_ell_double_dist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/csr_ell_double_dist.pdf -------------------------------------------------------------------------------- /doc/img/csr_ell_float_dist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/csr_ell_float_dist.pdf -------------------------------------------------------------------------------- /doc/img/csr_float_dist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/csr_float_dist.pdf -------------------------------------------------------------------------------- /doc/img/csr_vector_double_dist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/csr_vector_double_dist.pdf -------------------------------------------------------------------------------- /doc/img/csr_vector_float_dist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/csr_vector_float_dist.pdf -------------------------------------------------------------------------------- /doc/img/hybrid_double_dist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/hybrid_double_dist.pdf -------------------------------------------------------------------------------- /doc/img/hybrid_float_dist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/hybrid_float_dist.pdf -------------------------------------------------------------------------------- /doc/img/matrices/ASIC_100ks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/matrices/ASIC_100ks.png -------------------------------------------------------------------------------- /doc/img/matrices/Zd_Jac3_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/matrices/Zd_Jac3_db.png -------------------------------------------------------------------------------- /doc/img/matrices/airfoil_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/matrices/airfoil_2d.png -------------------------------------------------------------------------------- /doc/img/matrices/cage10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/matrices/cage10.png -------------------------------------------------------------------------------- /doc/img/matrices/cavity21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/matrices/cavity21.png -------------------------------------------------------------------------------- /doc/img/matrices/coater2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/matrices/coater2.png -------------------------------------------------------------------------------- /doc/img/matrices/hvdc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/matrices/hvdc1.png -------------------------------------------------------------------------------- /doc/img/matrices/lhr07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/matrices/lhr07.png -------------------------------------------------------------------------------- /doc/img/matrices/scircuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/matrices/scircuit.png -------------------------------------------------------------------------------- /doc/img/matrices/src/ASIC_100ks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/matrices/src/ASIC_100ks.png -------------------------------------------------------------------------------- /doc/img/matrices/src/Zd_Jac3_db.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/matrices/src/Zd_Jac3_db.png -------------------------------------------------------------------------------- /doc/img/matrices/src/airfoil_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/matrices/src/airfoil_2d.png -------------------------------------------------------------------------------- /doc/img/matrices/src/cage10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/matrices/src/cage10.png -------------------------------------------------------------------------------- /doc/img/matrices/src/cavity21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/matrices/src/cavity21.png -------------------------------------------------------------------------------- /doc/img/matrices/src/coater2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/matrices/src/coater2.png -------------------------------------------------------------------------------- /doc/img/matrices/src/hvdc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/matrices/src/hvdc1.png -------------------------------------------------------------------------------- /doc/img/matrices/src/lhr07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/matrices/src/lhr07.png -------------------------------------------------------------------------------- /doc/img/matrices/src/scircuit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/matrices/src/scircuit.png -------------------------------------------------------------------------------- /doc/img/scoo_double_dist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/scoo_double_dist.pdf -------------------------------------------------------------------------------- /doc/img/scoo_float_dist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/scoo_float_dist.pdf -------------------------------------------------------------------------------- /doc/img/scoo_nnzpr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/scoo_nnzpr.pdf -------------------------------------------------------------------------------- /doc/img/selected_double.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/selected_double.pdf -------------------------------------------------------------------------------- /doc/img/selected_float.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/selected_float.pdf -------------------------------------------------------------------------------- /doc/img/vec_csr_outperform_csr_vec.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/img/vec_csr_outperform_csr_vec.pdf -------------------------------------------------------------------------------- /doc/post.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/post.pdf -------------------------------------------------------------------------------- /doc/post.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/doc/post.tex -------------------------------------------------------------------------------- /external/json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/external/json/json.hpp -------------------------------------------------------------------------------- /gpu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/gpu/CMakeLists.txt -------------------------------------------------------------------------------- /gpu/csr_adaptive_spmv.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/gpu/csr_adaptive_spmv.cu -------------------------------------------------------------------------------- /gpu/csr_adaptive_spmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/gpu/csr_adaptive_spmv.h -------------------------------------------------------------------------------- /gpu/gpu_matrix_multiplier.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/gpu/gpu_matrix_multiplier.cu -------------------------------------------------------------------------------- /gpu/gpu_matrix_multiplier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/gpu/gpu_matrix_multiplier.h -------------------------------------------------------------------------------- /gpu/reduce.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/gpu/reduce.cuh -------------------------------------------------------------------------------- /gpu/resizable_gpu_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/gpu/resizable_gpu_memory.cpp -------------------------------------------------------------------------------- /gpu/resizable_gpu_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/gpu/resizable_gpu_memory.h -------------------------------------------------------------------------------- /gpu/scoo_spmv.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/gpu/scoo_spmv.cu -------------------------------------------------------------------------------- /gpu/scoo_spmv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/gpu/scoo_spmv.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/main.cpp -------------------------------------------------------------------------------- /results/hybrid/double.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/hybrid/double.json -------------------------------------------------------------------------------- /results/hybrid/double_computational_throughput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/hybrid/double_computational_throughput.json -------------------------------------------------------------------------------- /results/hybrid/double_effective_bandwidth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/hybrid/double_effective_bandwidth.json -------------------------------------------------------------------------------- /results/hybrid/float.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/hybrid/float.json -------------------------------------------------------------------------------- /results/hybrid/float_computational_throughput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/hybrid/float_computational_throughput.json -------------------------------------------------------------------------------- /results/hybrid/float_effective_bandwidth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/hybrid/float_effective_bandwidth.json -------------------------------------------------------------------------------- /results/hybrid/matrices_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/hybrid/matrices_info.json -------------------------------------------------------------------------------- /results/mkl_ht_0_tb_0/double.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/mkl_ht_0_tb_0/double.json -------------------------------------------------------------------------------- /results/mkl_ht_0_tb_0/double_computational_throughput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/mkl_ht_0_tb_0/double_computational_throughput.json -------------------------------------------------------------------------------- /results/mkl_ht_0_tb_0/double_effective_bandwidth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/mkl_ht_0_tb_0/double_effective_bandwidth.json -------------------------------------------------------------------------------- /results/mkl_ht_0_tb_0/float.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/mkl_ht_0_tb_0/float.json -------------------------------------------------------------------------------- /results/mkl_ht_0_tb_0/float_computational_throughput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/mkl_ht_0_tb_0/float_computational_throughput.json -------------------------------------------------------------------------------- /results/mkl_ht_0_tb_0/float_effective_bandwidth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/mkl_ht_0_tb_0/float_effective_bandwidth.json -------------------------------------------------------------------------------- /results/mkl_ht_0_tb_0/matrices_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/mkl_ht_0_tb_0/matrices_info.json -------------------------------------------------------------------------------- /results/mkl_ht_1_tb_1/double.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/mkl_ht_1_tb_1/double.json -------------------------------------------------------------------------------- /results/mkl_ht_1_tb_1/double_computational_throughput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/mkl_ht_1_tb_1/double_computational_throughput.json -------------------------------------------------------------------------------- /results/mkl_ht_1_tb_1/double_effective_bandwidth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/mkl_ht_1_tb_1/double_effective_bandwidth.json -------------------------------------------------------------------------------- /results/mkl_ht_1_tb_1/float.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/mkl_ht_1_tb_1/float.json -------------------------------------------------------------------------------- /results/mkl_ht_1_tb_1/float_computational_throughput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/mkl_ht_1_tb_1/float_computational_throughput.json -------------------------------------------------------------------------------- /results/mkl_ht_1_tb_1/float_effective_bandwidth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/mkl_ht_1_tb_1/float_effective_bandwidth.json -------------------------------------------------------------------------------- /results/mkl_ht_1_tb_1/matrices_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/mkl_ht_1_tb_1/matrices_info.json -------------------------------------------------------------------------------- /results/scoo/double.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/scoo/double.json -------------------------------------------------------------------------------- /results/scoo/double_computational_throughput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/scoo/double_computational_throughput.json -------------------------------------------------------------------------------- /results/scoo/double_effective_bandwidth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/scoo/double_effective_bandwidth.json -------------------------------------------------------------------------------- /results/scoo/float.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/scoo/float.json -------------------------------------------------------------------------------- /results/scoo/float_computational_throughput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/scoo/float_computational_throughput.json -------------------------------------------------------------------------------- /results/scoo/float_effective_bandwidth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/scoo/float_effective_bandwidth.json -------------------------------------------------------------------------------- /results/scoo/matrices_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/results/scoo/matrices_info.json -------------------------------------------------------------------------------- /scripts/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/scripts/analyze.py -------------------------------------------------------------------------------- /scripts/coo_nnzpr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/scripts/coo_nnzpr.pdf -------------------------------------------------------------------------------- /scripts/fix_clock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/scripts/fix_clock.sh -------------------------------------------------------------------------------- /scripts/reset_clock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gevtushenko/matrix_format_performance/HEAD/scripts/reset_clock.sh --------------------------------------------------------------------------------