forked from hunter-packages/arrayfire
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrank.cpp
More file actions
76 lines (62 loc) · 2.13 KB
/
rank.cpp
File metadata and controls
76 lines (62 loc) · 2.13 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
/*******************************************************
* Copyright (c) 2014, ArrayFire
* All rights reserved.
*
* This file is distributed under 3-clause BSD license.
* The complete license agreement can be obtained at:
* http://arrayfire.com/licenses/BSD-3-Clause
********************************************************/
#include <af/array.h>
#include <af/lapack.h>
#include <af/defines.h>
#include <err_common.hpp>
#include <handle.hpp>
#include <backend.hpp>
#include <ArrayInfo.hpp>
#include <qr.hpp>
#include <reduce.hpp>
#include <logic.hpp>
#include <complex.hpp>
using af::dim4;
using namespace detail;
template<typename T>
static inline uint rank(const af_array in, double tol)
{
typedef typename af::dtype_traits<T>::base_type BT;
Array<T> In = getArray<T>(in);
Array<BT> R = createEmptyArray<BT>(dim4());
// Scoping to get rid of q, r and t as they are not necessary
{
Array<T> q = createEmptyArray<T>(dim4());
Array<T> r = createEmptyArray<T>(dim4());
Array<T> t = createEmptyArray<T>(dim4());
qr(q, r, t, In);
R = abs<BT, T>(r);
}
Array<BT> val = createValueArray<BT>(R.dims(), scalar<BT>(tol));
Array<char> gt = logicOp<BT, af_gt_t>(R, val, val.dims());
Array<char> at = reduce<af_or_t, char, char>(gt, 1);
return reduce_all<af_notzero_t, char, uint>(at);
}
af_err af_rank(uint *out, const af_array in, const double tol)
{
try {
ArrayInfo i_info = getInfo(in);
if (i_info.ndims() > 2) {
AF_ERROR("solve can not be used in batch mode", AF_ERR_BATCH);
}
af_dtype type = i_info.getType();
ARG_ASSERT(1, i_info.isFloating()); // Only floating and complex types
uint output;
switch(type) {
case f32: output = rank<float >(in, tol); break;
case f64: output = rank<double >(in, tol); break;
case c32: output = rank<cfloat >(in, tol); break;
case c64: output = rank<cdouble>(in, tol); break;
default: TYPE_ERROR(1, type);
}
std::swap(*out, output);
}
CATCHALL;
return AF_SUCCESS;
}