opm-simulators/opm/simulators/linalg/bda/opencl/OpenclMatrix.hpp

69 lines
2.1 KiB
C++
Raw Normal View History

2021-11-23 02:44:18 -06:00
/*
Copyright 2021 Equinor ASA
This file is part of the Open Porous Media project (OPM).
OPM is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OPM is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with OPM. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef OPM_OPENCLMATRIX_HEADER_INCLUDED
#define OPM_OPENCLMATRIX_HEADER_INCLUDED
#include <vector>
2022-02-01 09:51:32 -06:00
#include <opm/simulators/linalg/bda/opencl/opencl.hpp>
2021-11-23 02:44:18 -06:00
namespace Opm
{
namespace Accelerator
{
2024-04-15 09:25:13 -05:00
template<class Scalar> class Matrix;
2024-04-15 09:13:22 -05:00
template<class Scalar> class BlockedMatrix;
2021-11-23 02:44:18 -06:00
/// This struct resembles a csr matrix, only doubles are supported
/// The matrix data is stored in OpenCL Buffers
2024-04-15 09:33:20 -05:00
template<class Scalar>
class OpenclMatrix
{
2021-11-23 02:44:18 -06:00
public:
OpenclMatrix(cl::Context *context, int Nb_, int Mb_, int nnzbs_, unsigned int block_size_)
: Nb(Nb_),
Mb(Mb_),
nnzbs(nnzbs_),
block_size(block_size_)
{
2024-04-15 09:33:20 -05:00
nnzValues = cl::Buffer(*context, CL_MEM_READ_WRITE,
sizeof(Scalar) * block_size * block_size * nnzbs);
2021-11-23 02:44:18 -06:00
colIndices = cl::Buffer(*context, CL_MEM_READ_WRITE, sizeof(int) * nnzbs);
rowPointers = cl::Buffer(*context, CL_MEM_READ_WRITE, sizeof(int) * (Nb + 1));
}
2024-04-15 09:33:20 -05:00
void upload(cl::CommandQueue* queue, Scalar* vals, int* cols, int* rows);
void upload(cl::CommandQueue* queue, Matrix<Scalar>* matrix);
void upload(cl::CommandQueue* queue, BlockedMatrix<Scalar>* matrix);
2021-11-23 02:44:18 -06:00
cl::Buffer nnzValues;
cl::Buffer colIndices;
cl::Buffer rowPointers;
int Nb, Mb;
int nnzbs;
unsigned int block_size;
};
} // namespace Accelerator
} // namespace Opm
#endif // OPM_OPENCLMATRIX_HEADER_INCLUDED