├── .gitignore ├── .readthedocs.yml ├── CMakeLists.txt ├── CONTRIBUTORS.txt ├── COPYING.LESSER ├── README.md ├── cmake └── Modules │ └── Findhptt.cmake ├── doc ├── Doxyfile ├── index.md └── rtd_suit │ ├── conf.py │ ├── index.rst │ └── requirements.txt ├── external ├── CMakeLists.txt └── hptt │ ├── CMakeLists.txt │ ├── Doxyfile │ ├── LICENSE.txt │ ├── Makefile │ ├── README.md │ ├── benchmark │ ├── Makefile │ ├── benchmark.cpp │ ├── benchmark.sh │ ├── bw.png │ ├── defines.h │ ├── maxFromFiles.py │ ├── reference.cpp │ └── reference.h │ ├── include │ ├── compute_node.h │ ├── hptt.h │ ├── hptt_types.h │ ├── macros.h │ ├── plan.h │ ├── transpose.h │ └── utils.h │ ├── misc │ ├── alpha.png │ ├── beta.png │ ├── equation.png │ ├── hptt_vs_numpy.png │ └── pi.png │ ├── pythonAPI │ ├── benchmark │ │ ├── benchmark.py │ │ └── benchmark.sh │ ├── hptt │ │ ├── __init__.py │ │ └── hptt.py │ ├── setup.py │ └── tests │ │ └── test_hptt.py │ ├── src │ ├── hptt.cpp │ ├── plan.cpp │ ├── transpose.cpp │ └── utils.cpp │ └── testframework │ ├── Makefile │ └── testframework.cpp ├── include └── gqten │ ├── framework │ ├── bases │ │ ├── executor.h │ │ ├── hashable.h │ │ ├── showable.h │ │ └── streamable.h │ ├── consts.h │ ├── hp_numeric │ │ ├── blas_level1.h │ │ ├── blas_level3.h │ │ ├── lapack.h │ │ └── ten_trans.h │ ├── value_t.h │ └── vec_hash.h │ ├── gqten.h │ ├── gqtensor │ ├── blk_spar_data_ten │ │ ├── blk_spar_data_ten.h │ │ ├── data_blk.h │ │ ├── data_blk_mat.h │ │ ├── data_blk_operations.h │ │ ├── global_operations.h │ │ ├── qnblk_info.h │ │ ├── raw_data_operation_tasks.h │ │ └── raw_data_operations.h │ ├── gqtensor.h │ ├── gqtensor_impl.h │ ├── index.h │ ├── qn │ │ ├── qn.h │ │ ├── qnval.h │ │ └── qnval_u1.h │ └── qnsct.h │ ├── gqtensor_all.h │ ├── tensor_manipulation │ ├── basic_operations.h │ ├── index_combine.h │ ├── ten_ctrct.h │ ├── ten_decomp │ │ ├── ten_decomp_basic.h │ │ ├── ten_qr.h │ │ └── ten_svd.h │ ├── ten_expand.h │ └── ten_linear_combine.h │ ├── tensor_manipulation_all.h │ └── utility │ ├── timer.h │ └── utils_inl.h └── tests ├── CMakeLists.txt ├── test_gqtensor ├── test_gqtensor.cc ├── test_index.cc ├── test_qn.cc ├── test_qnsct.cc └── test_qnval │ └── test_qnval_u1.cc ├── test_tensor_manipulation ├── test_basic_operations.cc ├── test_index_combine.cc ├── test_ten_ctrct.cc ├── test_ten_expand.cc ├── test_ten_linear_combine.cc ├── test_ten_qr.cc └── test_ten_svd.cc └── testing_utility.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/README.md -------------------------------------------------------------------------------- /cmake/Modules/Findhptt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/cmake/Modules/Findhptt.cmake -------------------------------------------------------------------------------- /doc/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/doc/Doxyfile -------------------------------------------------------------------------------- /doc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/doc/index.md -------------------------------------------------------------------------------- /doc/rtd_suit/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/doc/rtd_suit/conf.py -------------------------------------------------------------------------------- /doc/rtd_suit/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/doc/rtd_suit/index.rst -------------------------------------------------------------------------------- /doc/rtd_suit/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /external/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/CMakeLists.txt -------------------------------------------------------------------------------- /external/hptt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/CMakeLists.txt -------------------------------------------------------------------------------- /external/hptt/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/Doxyfile -------------------------------------------------------------------------------- /external/hptt/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/LICENSE.txt -------------------------------------------------------------------------------- /external/hptt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/Makefile -------------------------------------------------------------------------------- /external/hptt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/README.md -------------------------------------------------------------------------------- /external/hptt/benchmark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/benchmark/Makefile -------------------------------------------------------------------------------- /external/hptt/benchmark/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/benchmark/benchmark.cpp -------------------------------------------------------------------------------- /external/hptt/benchmark/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/benchmark/benchmark.sh -------------------------------------------------------------------------------- /external/hptt/benchmark/bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/benchmark/bw.png -------------------------------------------------------------------------------- /external/hptt/benchmark/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/benchmark/defines.h -------------------------------------------------------------------------------- /external/hptt/benchmark/maxFromFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/benchmark/maxFromFiles.py -------------------------------------------------------------------------------- /external/hptt/benchmark/reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/benchmark/reference.cpp -------------------------------------------------------------------------------- /external/hptt/benchmark/reference.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/benchmark/reference.h -------------------------------------------------------------------------------- /external/hptt/include/compute_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/include/compute_node.h -------------------------------------------------------------------------------- /external/hptt/include/hptt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/include/hptt.h -------------------------------------------------------------------------------- /external/hptt/include/hptt_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/include/hptt_types.h -------------------------------------------------------------------------------- /external/hptt/include/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/include/macros.h -------------------------------------------------------------------------------- /external/hptt/include/plan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/include/plan.h -------------------------------------------------------------------------------- /external/hptt/include/transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/include/transpose.h -------------------------------------------------------------------------------- /external/hptt/include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/include/utils.h -------------------------------------------------------------------------------- /external/hptt/misc/alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/misc/alpha.png -------------------------------------------------------------------------------- /external/hptt/misc/beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/misc/beta.png -------------------------------------------------------------------------------- /external/hptt/misc/equation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/misc/equation.png -------------------------------------------------------------------------------- /external/hptt/misc/hptt_vs_numpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/misc/hptt_vs_numpy.png -------------------------------------------------------------------------------- /external/hptt/misc/pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/misc/pi.png -------------------------------------------------------------------------------- /external/hptt/pythonAPI/benchmark/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/pythonAPI/benchmark/benchmark.py -------------------------------------------------------------------------------- /external/hptt/pythonAPI/benchmark/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/pythonAPI/benchmark/benchmark.sh -------------------------------------------------------------------------------- /external/hptt/pythonAPI/hptt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/pythonAPI/hptt/__init__.py -------------------------------------------------------------------------------- /external/hptt/pythonAPI/hptt/hptt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/pythonAPI/hptt/hptt.py -------------------------------------------------------------------------------- /external/hptt/pythonAPI/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/pythonAPI/setup.py -------------------------------------------------------------------------------- /external/hptt/pythonAPI/tests/test_hptt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/pythonAPI/tests/test_hptt.py -------------------------------------------------------------------------------- /external/hptt/src/hptt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/src/hptt.cpp -------------------------------------------------------------------------------- /external/hptt/src/plan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/src/plan.cpp -------------------------------------------------------------------------------- /external/hptt/src/transpose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/src/transpose.cpp -------------------------------------------------------------------------------- /external/hptt/src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/src/utils.cpp -------------------------------------------------------------------------------- /external/hptt/testframework/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/testframework/Makefile -------------------------------------------------------------------------------- /external/hptt/testframework/testframework.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/external/hptt/testframework/testframework.cpp -------------------------------------------------------------------------------- /include/gqten/framework/bases/executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/framework/bases/executor.h -------------------------------------------------------------------------------- /include/gqten/framework/bases/hashable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/framework/bases/hashable.h -------------------------------------------------------------------------------- /include/gqten/framework/bases/showable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/framework/bases/showable.h -------------------------------------------------------------------------------- /include/gqten/framework/bases/streamable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/framework/bases/streamable.h -------------------------------------------------------------------------------- /include/gqten/framework/consts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/framework/consts.h -------------------------------------------------------------------------------- /include/gqten/framework/hp_numeric/blas_level1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/framework/hp_numeric/blas_level1.h -------------------------------------------------------------------------------- /include/gqten/framework/hp_numeric/blas_level3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/framework/hp_numeric/blas_level3.h -------------------------------------------------------------------------------- /include/gqten/framework/hp_numeric/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/framework/hp_numeric/lapack.h -------------------------------------------------------------------------------- /include/gqten/framework/hp_numeric/ten_trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/framework/hp_numeric/ten_trans.h -------------------------------------------------------------------------------- /include/gqten/framework/value_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/framework/value_t.h -------------------------------------------------------------------------------- /include/gqten/framework/vec_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/framework/vec_hash.h -------------------------------------------------------------------------------- /include/gqten/gqten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/gqten.h -------------------------------------------------------------------------------- /include/gqten/gqtensor/blk_spar_data_ten/blk_spar_data_ten.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/gqtensor/blk_spar_data_ten/blk_spar_data_ten.h -------------------------------------------------------------------------------- /include/gqten/gqtensor/blk_spar_data_ten/data_blk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/gqtensor/blk_spar_data_ten/data_blk.h -------------------------------------------------------------------------------- /include/gqten/gqtensor/blk_spar_data_ten/data_blk_mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/gqtensor/blk_spar_data_ten/data_blk_mat.h -------------------------------------------------------------------------------- /include/gqten/gqtensor/blk_spar_data_ten/data_blk_operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/gqtensor/blk_spar_data_ten/data_blk_operations.h -------------------------------------------------------------------------------- /include/gqten/gqtensor/blk_spar_data_ten/global_operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/gqtensor/blk_spar_data_ten/global_operations.h -------------------------------------------------------------------------------- /include/gqten/gqtensor/blk_spar_data_ten/qnblk_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/gqtensor/blk_spar_data_ten/qnblk_info.h -------------------------------------------------------------------------------- /include/gqten/gqtensor/blk_spar_data_ten/raw_data_operation_tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/gqtensor/blk_spar_data_ten/raw_data_operation_tasks.h -------------------------------------------------------------------------------- /include/gqten/gqtensor/blk_spar_data_ten/raw_data_operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/gqtensor/blk_spar_data_ten/raw_data_operations.h -------------------------------------------------------------------------------- /include/gqten/gqtensor/gqtensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/gqtensor/gqtensor.h -------------------------------------------------------------------------------- /include/gqten/gqtensor/gqtensor_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/gqtensor/gqtensor_impl.h -------------------------------------------------------------------------------- /include/gqten/gqtensor/index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/gqtensor/index.h -------------------------------------------------------------------------------- /include/gqten/gqtensor/qn/qn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/gqtensor/qn/qn.h -------------------------------------------------------------------------------- /include/gqten/gqtensor/qn/qnval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/gqtensor/qn/qnval.h -------------------------------------------------------------------------------- /include/gqten/gqtensor/qn/qnval_u1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/gqtensor/qn/qnval_u1.h -------------------------------------------------------------------------------- /include/gqten/gqtensor/qnsct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/gqtensor/qnsct.h -------------------------------------------------------------------------------- /include/gqten/gqtensor_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/gqtensor_all.h -------------------------------------------------------------------------------- /include/gqten/tensor_manipulation/basic_operations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/tensor_manipulation/basic_operations.h -------------------------------------------------------------------------------- /include/gqten/tensor_manipulation/index_combine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/tensor_manipulation/index_combine.h -------------------------------------------------------------------------------- /include/gqten/tensor_manipulation/ten_ctrct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/tensor_manipulation/ten_ctrct.h -------------------------------------------------------------------------------- /include/gqten/tensor_manipulation/ten_decomp/ten_decomp_basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/tensor_manipulation/ten_decomp/ten_decomp_basic.h -------------------------------------------------------------------------------- /include/gqten/tensor_manipulation/ten_decomp/ten_qr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/tensor_manipulation/ten_decomp/ten_qr.h -------------------------------------------------------------------------------- /include/gqten/tensor_manipulation/ten_decomp/ten_svd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/tensor_manipulation/ten_decomp/ten_svd.h -------------------------------------------------------------------------------- /include/gqten/tensor_manipulation/ten_expand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/tensor_manipulation/ten_expand.h -------------------------------------------------------------------------------- /include/gqten/tensor_manipulation/ten_linear_combine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/tensor_manipulation/ten_linear_combine.h -------------------------------------------------------------------------------- /include/gqten/tensor_manipulation_all.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/tensor_manipulation_all.h -------------------------------------------------------------------------------- /include/gqten/utility/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/utility/timer.h -------------------------------------------------------------------------------- /include/gqten/utility/utils_inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/include/gqten/utility/utils_inl.h -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/test_gqtensor/test_gqtensor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/tests/test_gqtensor/test_gqtensor.cc -------------------------------------------------------------------------------- /tests/test_gqtensor/test_index.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/tests/test_gqtensor/test_index.cc -------------------------------------------------------------------------------- /tests/test_gqtensor/test_qn.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/tests/test_gqtensor/test_qn.cc -------------------------------------------------------------------------------- /tests/test_gqtensor/test_qnsct.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/tests/test_gqtensor/test_qnsct.cc -------------------------------------------------------------------------------- /tests/test_gqtensor/test_qnval/test_qnval_u1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/tests/test_gqtensor/test_qnval/test_qnval_u1.cc -------------------------------------------------------------------------------- /tests/test_tensor_manipulation/test_basic_operations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/tests/test_tensor_manipulation/test_basic_operations.cc -------------------------------------------------------------------------------- /tests/test_tensor_manipulation/test_index_combine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/tests/test_tensor_manipulation/test_index_combine.cc -------------------------------------------------------------------------------- /tests/test_tensor_manipulation/test_ten_ctrct.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/tests/test_tensor_manipulation/test_ten_ctrct.cc -------------------------------------------------------------------------------- /tests/test_tensor_manipulation/test_ten_expand.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/tests/test_tensor_manipulation/test_ten_expand.cc -------------------------------------------------------------------------------- /tests/test_tensor_manipulation/test_ten_linear_combine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/tests/test_tensor_manipulation/test_ten_linear_combine.cc -------------------------------------------------------------------------------- /tests/test_tensor_manipulation/test_ten_qr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/tests/test_tensor_manipulation/test_ten_qr.cc -------------------------------------------------------------------------------- /tests/test_tensor_manipulation/test_ten_svd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/tests/test_tensor_manipulation/test_ten_svd.cc -------------------------------------------------------------------------------- /tests/testing_utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gracequantum/tensor/HEAD/tests/testing_utility.h --------------------------------------------------------------------------------