gpusparse_matrix_operations.hpp
Go to the documentation of this file.
1/*
2 Copyright 2022-2023 SINTEF AS
3
4 This file is part of the Open Porous Media project (OPM).
5
6 OPM is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 OPM is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with OPM. If not, see <http://www.gnu.org/licenses/>.
18*/
19#ifndef OPM_GPUISTL_GPUSPARSE_MATRIX_OPERATIONS_HPP
20#define OPM_GPUISTL_GPUSPARSE_MATRIX_OPERATIONS_HPP
21#include <cstddef>
22#include <vector>
24{
35template <class T, int blocksize>
36void copyMatDataToReordered(T* srcMatrix,
37 int* srcRowIndices,
38 T* dstMatrix,
39 int* dstRowIndices,
40 int* naturalToReordered,
41 size_t numberOfRows,
42 int threadBlockSize);
43
58template <class T, int blocksize>
60 int* srcRowIndices,
61 int* srcColumnIndices,
62 T* dstLowerMatrix,
63 int* dstLowerRowIndices,
64 T* dstUpperMatrix,
65 int* dstUpperRowIndices,
66 T* dstDiag,
67 int* naturalToReordered,
68 size_t numberOfRows,
69 int threadBlockSize);
70
71} // namespace Opm::gpuistl::detail
72#endif
Definition: autotuner.hpp:29
void copyMatDataToReorderedSplit(T *srcMatrix, int *srcRowIndices, int *srcColumnIndices, T *dstLowerMatrix, int *dstLowerRowIndices, T *dstUpperMatrix, int *dstUpperRowIndices, T *dstDiag, int *naturalToReordered, size_t numberOfRows, int threadBlockSize)
Reorders the elements of a matrix by copying them from one matrix to a split matrix using a permutati...
void copyMatDataToReordered(T *srcMatrix, int *srcRowIndices, T *dstMatrix, int *dstRowIndices, int *naturalToReordered, size_t numberOfRows, int threadBlockSize)
Reorders the elements of a matrix by copying them from one matrix to another using a permutation list...