├── .editorconfig ├── .gitignore ├── LICENSE ├── README.cn.md ├── README.md ├── include └── RI │ ├── comm │ ├── example │ │ ├── Communicate_Map_Combine.h │ │ └── Communicate_Map_Period.h │ └── mix │ │ ├── Communicate_Tensors_Map.h │ │ └── Communicate_Tensors_Map_Judge.h │ ├── distribute │ ├── Distribute_Equally.h │ ├── Distribute_Equally.hpp │ ├── Divide_Atoms.h │ ├── Divide_Atoms.hpp │ ├── Split_Processes.h │ └── Split_Processes.hpp │ ├── global │ ├── Array_Operator.h │ ├── Array_Operator.hpp │ ├── Blas-Fortran.h │ ├── Blas_Interface-Contiguous.h │ ├── Blas_Interface-Tensor.h │ ├── Blas_Interface.h │ ├── Cereal_Types.h │ ├── Global_Func-1.h │ ├── Global_Func-2-Tensor.h │ ├── Global_Func-2.h │ ├── Global_Func-3.h │ ├── Lapack-Fortran.h │ ├── Lapack_Interface-Contiguous.h │ ├── Lapack_Interface-Tensor.h │ ├── Lapack_Interface.h │ ├── MPI_Wrapper-class.h │ ├── MPI_Wrapper-func.h │ ├── MPI_Wrapper.h │ ├── Map_Operator-2.h │ ├── Map_Operator-2.hpp │ ├── Map_Operator-3.h │ ├── Map_Operator-3.hpp │ ├── Map_Operator.h │ ├── Map_Operator.hpp │ ├── Shared_Vector.h │ ├── Tensor-multiply.hpp │ ├── Tensor.h │ ├── Tensor.hpp │ ├── Tensor_Algorithm.h │ ├── Tensor_Algorithm.hpp │ ├── Tensor_Multiply-22.hpp │ ├── Tensor_Multiply-23.hpp │ ├── Tensor_Multiply-32.hpp │ ├── Tensor_Multiply-33.hpp │ ├── Tensor_Multiply.h │ ├── Tensor_Wrapper.h │ └── Tensor_Wrapper.hpp │ ├── parallel │ ├── Parallel_LRI.h │ ├── Parallel_LRI_Equally.h │ ├── Parallel_LRI_Equally.hpp │ ├── Parallel_LRI_Equally_Filter.h │ └── Parallel_LRI_Equally_Filter.hpp │ ├── physics │ ├── Exx.h │ ├── Exx.hpp │ ├── Exx_Post_2D.h │ ├── Exx_Post_2D.hpp │ ├── GW.h │ ├── GW.hpp │ ├── RPA.h │ ├── RPA.hpp │ └── symmetry │ │ ├── Filter_Atom_Symmetry.h │ │ ├── Symmetry_Filter.h │ │ └── Symmetry_Rotation.h │ ├── ri │ ├── Cell_Nearest.h │ ├── Cell_Nearest.hpp │ ├── Data_Pack.h │ ├── Filter_Atom.h │ ├── LRI-cal_loop3.hpp │ ├── LRI-set.hpp │ ├── LRI.h │ ├── LRI.hpp │ ├── LRI_Cal_Aux.h │ ├── LRI_Cal_Tools.h │ ├── Label.h │ ├── Label_Tools.h │ ├── RI_Tools.h │ ├── RI_Tools.hpp │ ├── bak_LRI-cal-loop4_1 │ │ └── bak-LRI-cal.hpp │ └── bak_LRI-cal-loop4_2 │ │ ├── CS_Matrix-filter.hpp │ │ ├── CS_Matrix-set.hpp │ │ ├── CS_Matrix.h │ │ ├── CS_Matrix_Tools.h │ │ ├── CS_Matrix_Tools.hpp │ │ ├── Data_Pack.h │ │ ├── Exx.hpp │ │ ├── LRI-cal-loop4-b01.hpp │ │ ├── LRI-cal-loop4-bx2.hpp │ │ ├── LRI-cal-loop4.hpp │ │ ├── LRI-set.hpp │ │ └── LRI.h │ └── version.h └── unittests ├── Test_All.hpp ├── comm └── mix │ └── Communicate_Tensors-test.hpp ├── distribute ├── Distribute_Equally-test.hpp ├── Divide_Atoms-test.hpp └── Split_Processes-test.hpp ├── global ├── Blas-test.hpp ├── Map_Operator-test.hpp ├── Tensor-test-2.hpp ├── Tensor-test-3.hpp ├── Tensor-test-4.hpp ├── Tensor-test.h ├── Tensor_Algorithm-test.hpp ├── Tensor_Multiply-22-test.hpp ├── Tensor_Multiply-23-test.hpp ├── Tensor_Multiply-32-test.hpp ├── Tensor_Multiply-33-test.hpp └── Tensor_Multiply-test.hpp ├── physics ├── Exx-test.hpp ├── GW-test.hpp └── RPA-test.hpp ├── print_stl.h └── ri ├── CS_Matrix-test.hpp ├── Cell_Nearest-test.hpp ├── LRI-loop3-test.hpp ├── LRI-loop4-test.hpp └── LRI-speed-test.hpp /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.gch 2 | 3 | .envrc 4 | .clangd 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/README.cn.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/README.md -------------------------------------------------------------------------------- /include/RI/comm/example/Communicate_Map_Combine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/comm/example/Communicate_Map_Combine.h -------------------------------------------------------------------------------- /include/RI/comm/example/Communicate_Map_Period.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/comm/example/Communicate_Map_Period.h -------------------------------------------------------------------------------- /include/RI/comm/mix/Communicate_Tensors_Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/comm/mix/Communicate_Tensors_Map.h -------------------------------------------------------------------------------- /include/RI/comm/mix/Communicate_Tensors_Map_Judge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/comm/mix/Communicate_Tensors_Map_Judge.h -------------------------------------------------------------------------------- /include/RI/distribute/Distribute_Equally.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/distribute/Distribute_Equally.h -------------------------------------------------------------------------------- /include/RI/distribute/Distribute_Equally.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/distribute/Distribute_Equally.hpp -------------------------------------------------------------------------------- /include/RI/distribute/Divide_Atoms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/distribute/Divide_Atoms.h -------------------------------------------------------------------------------- /include/RI/distribute/Divide_Atoms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/distribute/Divide_Atoms.hpp -------------------------------------------------------------------------------- /include/RI/distribute/Split_Processes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/distribute/Split_Processes.h -------------------------------------------------------------------------------- /include/RI/distribute/Split_Processes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/distribute/Split_Processes.hpp -------------------------------------------------------------------------------- /include/RI/global/Array_Operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Array_Operator.h -------------------------------------------------------------------------------- /include/RI/global/Array_Operator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Array_Operator.hpp -------------------------------------------------------------------------------- /include/RI/global/Blas-Fortran.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Blas-Fortran.h -------------------------------------------------------------------------------- /include/RI/global/Blas_Interface-Contiguous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Blas_Interface-Contiguous.h -------------------------------------------------------------------------------- /include/RI/global/Blas_Interface-Tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Blas_Interface-Tensor.h -------------------------------------------------------------------------------- /include/RI/global/Blas_Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Blas_Interface.h -------------------------------------------------------------------------------- /include/RI/global/Cereal_Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Cereal_Types.h -------------------------------------------------------------------------------- /include/RI/global/Global_Func-1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Global_Func-1.h -------------------------------------------------------------------------------- /include/RI/global/Global_Func-2-Tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Global_Func-2-Tensor.h -------------------------------------------------------------------------------- /include/RI/global/Global_Func-2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Global_Func-2.h -------------------------------------------------------------------------------- /include/RI/global/Global_Func-3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Global_Func-3.h -------------------------------------------------------------------------------- /include/RI/global/Lapack-Fortran.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Lapack-Fortran.h -------------------------------------------------------------------------------- /include/RI/global/Lapack_Interface-Contiguous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Lapack_Interface-Contiguous.h -------------------------------------------------------------------------------- /include/RI/global/Lapack_Interface-Tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Lapack_Interface-Tensor.h -------------------------------------------------------------------------------- /include/RI/global/Lapack_Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Lapack_Interface.h -------------------------------------------------------------------------------- /include/RI/global/MPI_Wrapper-class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/MPI_Wrapper-class.h -------------------------------------------------------------------------------- /include/RI/global/MPI_Wrapper-func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/MPI_Wrapper-func.h -------------------------------------------------------------------------------- /include/RI/global/MPI_Wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/MPI_Wrapper.h -------------------------------------------------------------------------------- /include/RI/global/Map_Operator-2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Map_Operator-2.h -------------------------------------------------------------------------------- /include/RI/global/Map_Operator-2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Map_Operator-2.hpp -------------------------------------------------------------------------------- /include/RI/global/Map_Operator-3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Map_Operator-3.h -------------------------------------------------------------------------------- /include/RI/global/Map_Operator-3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Map_Operator-3.hpp -------------------------------------------------------------------------------- /include/RI/global/Map_Operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Map_Operator.h -------------------------------------------------------------------------------- /include/RI/global/Map_Operator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Map_Operator.hpp -------------------------------------------------------------------------------- /include/RI/global/Shared_Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Shared_Vector.h -------------------------------------------------------------------------------- /include/RI/global/Tensor-multiply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Tensor-multiply.hpp -------------------------------------------------------------------------------- /include/RI/global/Tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Tensor.h -------------------------------------------------------------------------------- /include/RI/global/Tensor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Tensor.hpp -------------------------------------------------------------------------------- /include/RI/global/Tensor_Algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Tensor_Algorithm.h -------------------------------------------------------------------------------- /include/RI/global/Tensor_Algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Tensor_Algorithm.hpp -------------------------------------------------------------------------------- /include/RI/global/Tensor_Multiply-22.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Tensor_Multiply-22.hpp -------------------------------------------------------------------------------- /include/RI/global/Tensor_Multiply-23.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Tensor_Multiply-23.hpp -------------------------------------------------------------------------------- /include/RI/global/Tensor_Multiply-32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Tensor_Multiply-32.hpp -------------------------------------------------------------------------------- /include/RI/global/Tensor_Multiply-33.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Tensor_Multiply-33.hpp -------------------------------------------------------------------------------- /include/RI/global/Tensor_Multiply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Tensor_Multiply.h -------------------------------------------------------------------------------- /include/RI/global/Tensor_Wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Tensor_Wrapper.h -------------------------------------------------------------------------------- /include/RI/global/Tensor_Wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/global/Tensor_Wrapper.hpp -------------------------------------------------------------------------------- /include/RI/parallel/Parallel_LRI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/parallel/Parallel_LRI.h -------------------------------------------------------------------------------- /include/RI/parallel/Parallel_LRI_Equally.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/parallel/Parallel_LRI_Equally.h -------------------------------------------------------------------------------- /include/RI/parallel/Parallel_LRI_Equally.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/parallel/Parallel_LRI_Equally.hpp -------------------------------------------------------------------------------- /include/RI/parallel/Parallel_LRI_Equally_Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/parallel/Parallel_LRI_Equally_Filter.h -------------------------------------------------------------------------------- /include/RI/parallel/Parallel_LRI_Equally_Filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/parallel/Parallel_LRI_Equally_Filter.hpp -------------------------------------------------------------------------------- /include/RI/physics/Exx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/physics/Exx.h -------------------------------------------------------------------------------- /include/RI/physics/Exx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/physics/Exx.hpp -------------------------------------------------------------------------------- /include/RI/physics/Exx_Post_2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/physics/Exx_Post_2D.h -------------------------------------------------------------------------------- /include/RI/physics/Exx_Post_2D.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/physics/Exx_Post_2D.hpp -------------------------------------------------------------------------------- /include/RI/physics/GW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/physics/GW.h -------------------------------------------------------------------------------- /include/RI/physics/GW.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/physics/GW.hpp -------------------------------------------------------------------------------- /include/RI/physics/RPA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/physics/RPA.h -------------------------------------------------------------------------------- /include/RI/physics/RPA.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/physics/RPA.hpp -------------------------------------------------------------------------------- /include/RI/physics/symmetry/Filter_Atom_Symmetry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/physics/symmetry/Filter_Atom_Symmetry.h -------------------------------------------------------------------------------- /include/RI/physics/symmetry/Symmetry_Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/physics/symmetry/Symmetry_Filter.h -------------------------------------------------------------------------------- /include/RI/physics/symmetry/Symmetry_Rotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/physics/symmetry/Symmetry_Rotation.h -------------------------------------------------------------------------------- /include/RI/ri/Cell_Nearest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/Cell_Nearest.h -------------------------------------------------------------------------------- /include/RI/ri/Cell_Nearest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/Cell_Nearest.hpp -------------------------------------------------------------------------------- /include/RI/ri/Data_Pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/Data_Pack.h -------------------------------------------------------------------------------- /include/RI/ri/Filter_Atom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/Filter_Atom.h -------------------------------------------------------------------------------- /include/RI/ri/LRI-cal_loop3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/LRI-cal_loop3.hpp -------------------------------------------------------------------------------- /include/RI/ri/LRI-set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/LRI-set.hpp -------------------------------------------------------------------------------- /include/RI/ri/LRI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/LRI.h -------------------------------------------------------------------------------- /include/RI/ri/LRI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/LRI.hpp -------------------------------------------------------------------------------- /include/RI/ri/LRI_Cal_Aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/LRI_Cal_Aux.h -------------------------------------------------------------------------------- /include/RI/ri/LRI_Cal_Tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/LRI_Cal_Tools.h -------------------------------------------------------------------------------- /include/RI/ri/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/Label.h -------------------------------------------------------------------------------- /include/RI/ri/Label_Tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/Label_Tools.h -------------------------------------------------------------------------------- /include/RI/ri/RI_Tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/RI_Tools.h -------------------------------------------------------------------------------- /include/RI/ri/RI_Tools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/RI_Tools.hpp -------------------------------------------------------------------------------- /include/RI/ri/bak_LRI-cal-loop4_1/bak-LRI-cal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/bak_LRI-cal-loop4_1/bak-LRI-cal.hpp -------------------------------------------------------------------------------- /include/RI/ri/bak_LRI-cal-loop4_2/CS_Matrix-filter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/bak_LRI-cal-loop4_2/CS_Matrix-filter.hpp -------------------------------------------------------------------------------- /include/RI/ri/bak_LRI-cal-loop4_2/CS_Matrix-set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/bak_LRI-cal-loop4_2/CS_Matrix-set.hpp -------------------------------------------------------------------------------- /include/RI/ri/bak_LRI-cal-loop4_2/CS_Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/bak_LRI-cal-loop4_2/CS_Matrix.h -------------------------------------------------------------------------------- /include/RI/ri/bak_LRI-cal-loop4_2/CS_Matrix_Tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/bak_LRI-cal-loop4_2/CS_Matrix_Tools.h -------------------------------------------------------------------------------- /include/RI/ri/bak_LRI-cal-loop4_2/CS_Matrix_Tools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/bak_LRI-cal-loop4_2/CS_Matrix_Tools.hpp -------------------------------------------------------------------------------- /include/RI/ri/bak_LRI-cal-loop4_2/Data_Pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/bak_LRI-cal-loop4_2/Data_Pack.h -------------------------------------------------------------------------------- /include/RI/ri/bak_LRI-cal-loop4_2/Exx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/bak_LRI-cal-loop4_2/Exx.hpp -------------------------------------------------------------------------------- /include/RI/ri/bak_LRI-cal-loop4_2/LRI-cal-loop4-b01.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/bak_LRI-cal-loop4_2/LRI-cal-loop4-b01.hpp -------------------------------------------------------------------------------- /include/RI/ri/bak_LRI-cal-loop4_2/LRI-cal-loop4-bx2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/bak_LRI-cal-loop4_2/LRI-cal-loop4-bx2.hpp -------------------------------------------------------------------------------- /include/RI/ri/bak_LRI-cal-loop4_2/LRI-cal-loop4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/bak_LRI-cal-loop4_2/LRI-cal-loop4.hpp -------------------------------------------------------------------------------- /include/RI/ri/bak_LRI-cal-loop4_2/LRI-set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/bak_LRI-cal-loop4_2/LRI-set.hpp -------------------------------------------------------------------------------- /include/RI/ri/bak_LRI-cal-loop4_2/LRI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/ri/bak_LRI-cal-loop4_2/LRI.h -------------------------------------------------------------------------------- /include/RI/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/include/RI/version.h -------------------------------------------------------------------------------- /unittests/Test_All.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/Test_All.hpp -------------------------------------------------------------------------------- /unittests/comm/mix/Communicate_Tensors-test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/comm/mix/Communicate_Tensors-test.hpp -------------------------------------------------------------------------------- /unittests/distribute/Distribute_Equally-test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/distribute/Distribute_Equally-test.hpp -------------------------------------------------------------------------------- /unittests/distribute/Divide_Atoms-test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/distribute/Divide_Atoms-test.hpp -------------------------------------------------------------------------------- /unittests/distribute/Split_Processes-test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/distribute/Split_Processes-test.hpp -------------------------------------------------------------------------------- /unittests/global/Blas-test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/global/Blas-test.hpp -------------------------------------------------------------------------------- /unittests/global/Map_Operator-test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/global/Map_Operator-test.hpp -------------------------------------------------------------------------------- /unittests/global/Tensor-test-2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/global/Tensor-test-2.hpp -------------------------------------------------------------------------------- /unittests/global/Tensor-test-3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/global/Tensor-test-3.hpp -------------------------------------------------------------------------------- /unittests/global/Tensor-test-4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/global/Tensor-test-4.hpp -------------------------------------------------------------------------------- /unittests/global/Tensor-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/global/Tensor-test.h -------------------------------------------------------------------------------- /unittests/global/Tensor_Algorithm-test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/global/Tensor_Algorithm-test.hpp -------------------------------------------------------------------------------- /unittests/global/Tensor_Multiply-22-test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/global/Tensor_Multiply-22-test.hpp -------------------------------------------------------------------------------- /unittests/global/Tensor_Multiply-23-test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/global/Tensor_Multiply-23-test.hpp -------------------------------------------------------------------------------- /unittests/global/Tensor_Multiply-32-test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/global/Tensor_Multiply-32-test.hpp -------------------------------------------------------------------------------- /unittests/global/Tensor_Multiply-33-test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/global/Tensor_Multiply-33-test.hpp -------------------------------------------------------------------------------- /unittests/global/Tensor_Multiply-test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/global/Tensor_Multiply-test.hpp -------------------------------------------------------------------------------- /unittests/physics/Exx-test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/physics/Exx-test.hpp -------------------------------------------------------------------------------- /unittests/physics/GW-test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/physics/GW-test.hpp -------------------------------------------------------------------------------- /unittests/physics/RPA-test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/physics/RPA-test.hpp -------------------------------------------------------------------------------- /unittests/print_stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/print_stl.h -------------------------------------------------------------------------------- /unittests/ri/CS_Matrix-test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/ri/CS_Matrix-test.hpp -------------------------------------------------------------------------------- /unittests/ri/Cell_Nearest-test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/ri/Cell_Nearest-test.hpp -------------------------------------------------------------------------------- /unittests/ri/LRI-loop3-test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/ri/LRI-loop3-test.hpp -------------------------------------------------------------------------------- /unittests/ri/LRI-loop4-test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/ri/LRI-loop4-test.hpp -------------------------------------------------------------------------------- /unittests/ri/LRI-speed-test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abacusmodeling/LibRI/HEAD/unittests/ri/LRI-speed-test.hpp --------------------------------------------------------------------------------