PSCF v1.2
Reduce.h
1#ifndef PRDC_REDUCE_H
2#define PRDC_REDUCE_H
3
4/*
5* PSCF Package
6*
7* Copyright 2016 - 2022, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include "types.h"
12#include <pscf/cuda/DeviceArray.h>
13
14namespace Pscf {
15namespace Prdc {
16namespace Cuda {
17
58namespace Reduce {
59
65cudaReal sum(DeviceArray<cudaReal> const & in);
66
72cudaReal max(DeviceArray<cudaReal> const & in);
73
79cudaReal maxAbs(DeviceArray<cudaReal> const & in);
80
86cudaReal min(DeviceArray<cudaReal> const & in);
87
93cudaReal minAbs(DeviceArray<cudaReal> const & in);
94
101cudaReal innerProduct(DeviceArray<cudaReal> const & a,
102 DeviceArray<cudaReal> const & b);
103
106}
107}
108}
109}
110#endif
cudaReal min(DeviceArray< cudaReal > const &in)
Get minimum of array elements (GPU kernel wrapper).
Definition Reduce.cu:730
cudaReal innerProduct(DeviceArray< cudaReal > const &a, DeviceArray< cudaReal > const &b)
Compute inner product of two real arrays (GPU kernel wrapper).
Definition Reduce.cu:891
cudaReal maxAbs(DeviceArray< cudaReal > const &in)
Get maximum absolute magnitude of array elements (GPU kernel wrapper).
Definition Reduce.cu:648
cudaReal sum(DeviceArray< cudaReal > const &in)
Compute sum of array elements (GPU kernel wrapper).
Definition Reduce.cu:480
cudaReal minAbs(DeviceArray< cudaReal > const &in)
Get minimum absolute magnitude of array elements (GPU kernel wrapper).
Definition Reduce.cu:809
cudaReal max(DeviceArray< cudaReal > const &in)
Get maximum of array elements (GPU kernel wrapper).
Definition Reduce.cu:569
PSCF package top-level namespace.
Definition param_pc.dox:1