forked from daphne-project/daphne
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSliceCol.h
More file actions
120 lines (100 loc) · 5.17 KB
/
Copy pathSliceCol.h
File metadata and controls
120 lines (100 loc) · 5.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/*
* Copyright 2021 The DAPHNE Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef SRC_RUNTIME_LOCAL_KERNELS_SLICECOL_H
#define SRC_RUNTIME_LOCAL_KERNELS_SLICECOL_H
#include <runtime/local/context/DaphneContext.h>
#include <runtime/local/datastructures/DataObjectFactory.h>
#include <runtime/local/datastructures/DenseMatrix.h>
#include <runtime/local/datastructures/Frame.h>
#include <runtime/local/datastructures/Matrix.h>
#include <runtime/local/datastructures/ValueTypeCode.h>
#include <runtime/local/datastructures/ValueTypeUtils.h>
#include <sstream>
#include <stdexcept>
#include <cstddef>
#include <cstdint>
// ****************************************************************************
// Struct for partial template specialization
// ****************************************************************************
template<class DTRes, class DTArg, typename VTSel>
struct SliceCol {
static void apply(DTRes *& res, const DTArg * arg, const VTSel lowerIncl, const VTSel upperExcl, DCTX(ctx)) = delete;
};
// ****************************************************************************
// Convenience function
// ****************************************************************************
template<class DTRes, class DTArg, typename VTSel>
void sliceCol(DTRes *& res, const DTArg * arg, const VTSel lowerIncl, const VTSel upperExcl, DCTX(ctx)) {
SliceCol<DTRes, DTArg, VTSel>::apply(res, arg, lowerIncl, upperExcl, ctx);
}
// ****************************************************************************
// Boundary validation
// ****************************************************************************
template<typename VTSel>
void validateArgsSliceCol(VTSel lowerIncl, VTSel upperExcl, size_t numColsArg) {
if (lowerIncl < 0 || upperExcl < lowerIncl || numColsArg < static_cast<size_t>(upperExcl)
|| (static_cast<size_t>(lowerIncl) == numColsArg && lowerIncl != 0)) {
std::ostringstream errMsg;
errMsg << "invalid arguments '" << lowerIncl << ", " << upperExcl << "' passed to SliceCol: "
<< "it must hold 0 <= lowerIncl <= upperExcl <= #columns "
<< "and lowerIncl < #columns (unless both are zero) where #columns of arg is '" << numColsArg << "'";
throw std::out_of_range(errMsg.str());
}
}
// ****************************************************************************
// (Partial) template specializations for different data/value types
// ****************************************************************************
// ----------------------------------------------------------------------------
// DenseMatrix <- DenseMatrix
// ----------------------------------------------------------------------------
template<typename VTArg, typename VTSel>
struct SliceCol<DenseMatrix<VTArg>, DenseMatrix<VTArg>, VTSel> {
static void apply(DenseMatrix<VTArg> *& res, const DenseMatrix<VTArg> * arg, const VTSel lowerIncl, const VTSel upperExcl, DCTX(ctx)) {
const size_t numColsArg = arg->getNumCols();
validateArgsSliceCol(lowerIncl, upperExcl, numColsArg);
res = arg->sliceCol(lowerIncl, upperExcl);
}
};
// ----------------------------------------------------------------------------
// Frame <- Frame
// ----------------------------------------------------------------------------
template <typename VTSel>
struct SliceCol<Frame, Frame, VTSel> {
static void apply(Frame *& res, const Frame * arg, const VTSel lowerIncl, const VTSel upperExcl, DCTX(ctx)) {
const size_t numColsArg = arg->getNumCols();
validateArgsSliceCol(lowerIncl, upperExcl, numColsArg);
res = arg->sliceCol(lowerIncl, upperExcl);
}
};
// ----------------------------------------------------------------------------
// Matrix <- Matrix
// ----------------------------------------------------------------------------
template<typename VTArg, typename VTSel>
struct SliceCol<Matrix<VTArg>, Matrix<VTArg>, VTSel> {
static void apply(Matrix<VTArg> *& res, const Matrix<VTArg> * arg, const VTSel lowerIncl, const VTSel upperExcl, DCTX(ctx)) {
const size_t numRowsArg = arg->getNumRows();
const size_t numColsRes = static_cast<size_t>(upperExcl - lowerIncl);
validateArgsSliceCol(lowerIncl, upperExcl, arg->getNumCols());
if (res == nullptr)
res = DataObjectFactory::create<DenseMatrix<VTArg>>(numRowsArg, numColsRes, false);
res->prepareAppend();
for (size_t r = 0; r < numRowsArg; ++r)
for (size_t c = 0; c < numColsRes; ++c)
res->append(r, c, arg->get(r, static_cast<const size_t>(lowerIncl) + c));
res->finishAppend();
}
};
#endif //SRC_RUNTIME_LOCAL_KERNELS_SLICECOL_H