This repository has been archived by the owner on May 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vecnorm1.cc
77 lines (61 loc) · 1.66 KB
/
vecnorm1.cc
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
/*
* $Id: vecnorm1.cc,v 1.3 2003/12/11 03:44:22 julianc Exp $
*
* Copyright (C) 1997 Todd Veldhuizen <[email protected]>
* All rights reserved. Please see <blitz/blitz.h> for terms and
* conditions of use.
*
*/
#ifndef BZ_VECNORM1_CC
#define BZ_VECNORM1_CC
#ifndef BZ_VECGLOBS_H
#error <blitz/vecnorm1.cc> must be included via <blitz/vecglobs.h>
#endif
#include <blitz/applics.h>
BZ_NAMESPACE(blitz)
template<typename P_expr>
inline
BZ_SUMTYPE(_bz_typename P_expr::T_numtype)
_bz_vec_norm1(P_expr vector)
{
typedef _bz_typename P_expr::T_numtype T_numtype;
typedef BZ_SUMTYPE(T_numtype) T_sumtype;
T_sumtype sum = 0;
int length = vector._bz_suggestLength();
if (vector._bz_hasFastAccess())
{
for (int i=0; i < length; ++i)
sum += _bz_abs<T_numtype>::apply(vector._bz_fastAccess(i));
}
else {
for (int i=0; i < length; ++i)
sum += _bz_abs<T_numtype>::apply(vector(i));
}
return sum;
}
// norm1(vector)
template<typename P_numtype>
BZ_SUMTYPE(P_numtype) norm1(const Vector<P_numtype>& x)
{
return _bz_vec_norm1(x._bz_asVecExpr());
}
// norm1(expr)
template<typename P_expr>
BZ_SUMTYPE(_bz_typename P_expr::T_numtype) norm1(_bz_VecExpr<P_expr> expr)
{
return _bz_vec_norm1(expr);
}
// norm1(vecpick)
template<typename P_numtype>
BZ_SUMTYPE(P_numtype) norm1(const VectorPick<P_numtype>& x)
{
return _bz_vec_norm1(x._bz_asVecExpr());
}
// norm1(TinyVector)
template<typename P_numtype, int N_dimensions>
BZ_SUMTYPE(P_numtype) norm1(const TinyVector<P_numtype, N_dimensions>& x)
{
return _bz_vec_norm1(x._bz_asVecExpr());
}
BZ_NAMESPACE_END
#endif // BZ_VECNORM1_CC