#include "mx-op-decl.h"
#include "mx-inlines.cc"
Go to the source code of this file.
Defines | |
#define | DMDM_BIN_OP(R, OP, DM1, DM2, F) |
#define | DMDM_BIN_OPS(R, DM1, DM2) |
#define | DMM_BIN_OP(R, OP, DM, M, OPEQ, PREOP) |
#define | DMM_BIN_OPS(R, DM, M, R_ZERO) |
#define | DMM_MULTIPLY_OP(R, DM, M, R_ZERO) |
#define | DMS_BIN_OP(R, OP, DM, S) |
#define | DMS_BIN_OPS(R, DM, S) |
#define | MDM_BIN_OP(R, OP, M, DM, OPEQ) |
#define | MDM_BIN_OPS(R, M, DM, R_ZERO) |
#define | MDM_MULTIPLY_OP(R, M, DM, R_ZERO) |
#define | MINMAX_FCNS(T, S) |
#define | MM_BIN_OP(R, OP, M1, M2, F) |
#define | MM_BIN_OPS(R, M1, M2) |
#define | MM_BOOL_OP(F, OP, M1, M2) |
#define | MM_BOOL_OPS(M1, M2) |
#define | MM_CMP_OP(F, OP, M1, M2) |
#define | MM_CMP_OPS(M1, M2) |
#define | MNANCHK(m, MT) |
#define | MPM_BIN_OPS(R, M, PM) MPM_MULTIPLY_OP(M, PM); |
#define | MPM_MULTIPLY_OP(M, PM) |
#define | MS_BIN_OP(R, OP, M, S, F) |
#define | MS_BIN_OPS(R, M, S) |
#define | MS_BOOL_OP(F, OP, M, S) |
#define | MS_BOOL_OPS(M, S) |
#define | MS_CMP_OP(F, OP, M, S) |
#define | MS_CMP_OPS(M, S) |
#define | NDND_BIN_OP(R, OP, ND1, ND2, F) |
#define | NDND_BIN_OPS(R, ND1, ND2) |
#define | NDND_BOOL_OP(F, OP, ND1, ND2) |
#define | NDND_BOOL_OPS(ND1, ND2) |
#define | NDND_CMP_OP(F, OP, ND1, ND2) |
#define | NDND_CMP_OPS(ND1, ND2) |
#define | NDND_MAPPER_BODY(R, NAME) |
#define | NDND_MINMAX_FCN(FCN, OP, T, S) |
#define | NDS_BIN_OP(R, OP, ND, S, F) |
#define | NDS_BIN_OPS(R, ND, S) |
#define | NDS_BOOL_OP(F, OP, ND, S) |
#define | NDS_BOOL_OPS(ND, S) |
#define | NDS_CMP_OP(F, OP, ND, S) |
#define | NDS_CMP_OPS(ND, S) |
#define | NDS_MINMAX_FCN(FCN, OP, T, S) |
#define | PMM_BIN_OPS(R, PM, M) PMM_MULTIPLY_OP(PM, M); |
#define | PMM_MULTIPLY_OP(PM, M) |
#define | SDM_BIN_OP(R, OP, S, DM) |
#define | SDM_BIN_OPS(R, S, DM) SDM_BIN_OP (R, *, S, DM) |
#define | SM_BIN_OP(R, OP, S, M, F) |
#define | SM_BIN_OPS(R, S, M) |
#define | SM_BOOL_OP(F, OP, S, M) |
#define | SM_BOOL_OPS(S, M) |
#define | SM_CMP_OP(F, OP, S, M) |
#define | SM_CMP_OPS(S, M) |
#define | SNANCHK(s) |
#define | SND_BIN_OP(R, OP, S, ND, F) |
#define | SND_BIN_OPS(R, S, ND) |
#define | SND_BOOL_OP(F, OP, S, ND) |
#define | SND_BOOL_OPS(S, ND) |
#define | SND_CMP_OP(F, OP, S, ND) |
#define | SND_CMP_OPS(S, ND) |
#define | SND_MINMAX_FCN(FCN, OP, T, S) |
#define | SV_BIN_OP(R, F, OP, S, V) |
#define | SV_BIN_OPS(R, S, V) |
#define | VS_BIN_OP(R, F, OP, V, S) |
#define | VS_BIN_OPS(R, V, S) |
#define | VV_BIN_OP(R, F, OP, V1, V2) |
#define | VV_BIN_OPS(R, V1, V2) |
#define DMDM_BIN_OP | ( | R, | ||
OP, | ||||
DM1, | ||||
DM2, | ||||
F | ||||
) |
R \ OP (const DM1& dm1, const DM2& dm2) \ { \ R r; \ \ octave_idx_type dm1_nr = dm1.rows (); \ octave_idx_type dm1_nc = dm1.cols (); \ \ octave_idx_type dm2_nr = dm2.rows (); \ octave_idx_type dm2_nc = dm2.cols (); \ \ if (dm1_nr != dm2_nr || dm1_nc != dm2_nc) \ gripe_nonconformant (#OP, dm1_nr, dm1_nc, dm2_nr, dm2_nc); \ else \ { \ r.resize (dm1_nr, dm1_nc); \ \ if (dm1_nr > 0 && dm1_nc > 0) \ F (dm1.length (), r.fortran_vec (), dm1.data (), dm2.data ()); \ } \ \ return r; \ }
Definition at line 536 of file mx-op-defs.h.
#define DMDM_BIN_OPS | ( | R, | ||
DM1, | ||||
DM2 | ||||
) |
DMDM_BIN_OP (R, operator +, DM1, DM2, mx_inline_add) \ DMDM_BIN_OP (R, operator -, DM1, DM2, mx_inline_sub) \ DMDM_BIN_OP (R, product, DM1, DM2, mx_inline_mul)
Definition at line 561 of file mx-op-defs.h.
#define DMM_BIN_OP | ( | R, | ||
OP, | ||||
DM, | ||||
M, | ||||
OPEQ, | ||||
PREOP | ||||
) |
R \ OP (const DM& dm, const M& m) \ { \ R r; \ \ octave_idx_type dm_nr = dm.rows (); \ octave_idx_type dm_nc = dm.cols (); \ \ octave_idx_type m_nr = m.rows (); \ octave_idx_type m_nc = m.cols (); \ \ if (dm_nr != m_nr || dm_nc != m_nc) \ gripe_nonconformant (#OP, dm_nr, dm_nc, m_nr, m_nc); \ else \ { \ if (m_nr > 0 && m_nc > 0) \ { \ r = R (PREOP m); \ \ octave_idx_type len = dm.length (); \ \ for (octave_idx_type i = 0; i < len; i++) \ r.elem(i, i) OPEQ dm.elem(i, i); \ } \ else \ r.resize (m_nr, m_nc); \ } \ \ return r; \ }
Definition at line 463 of file mx-op-defs.h.
#define DMM_BIN_OPS | ( | R, | ||
DM, | ||||
M, | ||||
R_ZERO | ||||
) |
DMM_BIN_OP (R, operator +, DM, M, +=, ) \ DMM_BIN_OP (R, operator -, DM, M, +=, -) \ DMM_MULTIPLY_OP (R, DM, M, R_ZERO)
Definition at line 529 of file mx-op-defs.h.
#define DMM_MULTIPLY_OP | ( | R, | ||
DM, | ||||
M, | ||||
R_ZERO | ||||
) |
Definition at line 495 of file mx-op-defs.h.
#define DMS_BIN_OP | ( | R, | ||
OP, | ||||
DM, | ||||
S | ||||
) |
R \ operator OP (const DM& dm, const S& s) \ { \ R r (dm.rows (), dm.cols ()); \ \ for (octave_idx_type i = 0; i < dm.length (); i++) \ r.dgxelem (i) = dm.dgelem (i) OP s; \ \ return r; \ }
Definition at line 373 of file mx-op-defs.h.
#define DMS_BIN_OPS | ( | R, | ||
DM, | ||||
S | ||||
) |
DMS_BIN_OP (R, *, DM, S) \ DMS_BIN_OP (R, /, DM, S)
Definition at line 385 of file mx-op-defs.h.
#define MDM_BIN_OP | ( | R, | ||
OP, | ||||
M, | ||||
DM, | ||||
OPEQ | ||||
) |
R \ OP (const M& m, const DM& dm) \ { \ R r; \ \ octave_idx_type m_nr = m.rows (); \ octave_idx_type m_nc = m.cols (); \ \ octave_idx_type dm_nr = dm.rows (); \ octave_idx_type dm_nc = dm.cols (); \ \ if (m_nr != dm_nr || m_nc != dm_nc) \ gripe_nonconformant (#OP, m_nr, m_nc, dm_nr, dm_nc); \ else \ { \ r.resize (m_nr, m_nc); \ \ if (m_nr > 0 && m_nc > 0) \ { \ r = R (m); \ \ octave_idx_type len = dm.length (); \ \ for (octave_idx_type i = 0; i < len; i++) \ r.elem(i, i) OPEQ dm.elem(i, i); \ } \ } \ \ return r; \ }
Definition at line 391 of file mx-op-defs.h.
#define MDM_BIN_OPS | ( | R, | ||
M, | ||||
DM, | ||||
R_ZERO | ||||
) |
MDM_BIN_OP (R, operator +, M, DM, +=) \ MDM_BIN_OP (R, operator -, M, DM, -=) \ MDM_MULTIPLY_OP (R, M, DM, R_ZERO)
Definition at line 456 of file mx-op-defs.h.
#define MDM_MULTIPLY_OP | ( | R, | ||
M, | ||||
DM, | ||||
R_ZERO | ||||
) |
Definition at line 423 of file mx-op-defs.h.
#define MINMAX_FCNS | ( | T, | ||
S | ||||
) |
SND_MINMAX_FCN (min, <, T, S) \ NDS_MINMAX_FCN (min, <, T, S) \ NDND_MINMAX_FCN (min, <, T, S) \ SND_MINMAX_FCN (max, >, T, S) \ NDS_MINMAX_FCN (max, >, T, S) \ NDND_MINMAX_FCN (max, >, T, S)
Definition at line 589 of file mx-op-defs.h.
#define MM_BIN_OP | ( | R, | ||
OP, | ||||
M1, | ||||
M2, | ||||
F | ||||
) |
R \ OP (const M1& m1, const M2& m2) \ { \ return do_mm_binary_op<R::element_type, M1::element_type, M2::element_type> (m1, m2, F, F, F, #OP); \ }
Definition at line 172 of file mx-op-defs.h.
#define MM_BIN_OPS | ( | R, | ||
M1, | ||||
M2 | ||||
) |
#define MM_BOOL_OP | ( | F, | ||
OP, | ||||
M1, | ||||
M2 | ||||
) |
boolMatrix \ F (const M1& m1, const M2& m2) \ { \ MNANCHK (m1, M1::element_type); \ MNANCHK (m2, M2::element_type); \ return do_mm_binary_op<bool, M1::element_type, M2::element_type> (m1, m2, OP, OP, OP, #F); \ }
Definition at line 200 of file mx-op-defs.h.
#define MM_BOOL_OPS | ( | M1, | ||
M2 | ||||
) |
MM_BOOL_OP (mx_el_and, mx_inline_and, M1, M2) \ MM_BOOL_OP (mx_el_or, mx_inline_or, M1, M2)
Definition at line 209 of file mx-op-defs.h.
#define MM_CMP_OP | ( | F, | ||
OP, | ||||
M1, | ||||
M2 | ||||
) |
boolMatrix \ F (const M1& m1, const M2& m2) \ { \ return do_mm_binary_op<bool, M1::element_type, M2::element_type> (m1, m2, OP, OP, OP, #F); \ }
Definition at line 185 of file mx-op-defs.h.
#define MM_CMP_OPS | ( | M1, | ||
M2 | ||||
) |
MM_CMP_OP (mx_el_lt, mx_inline_lt, M1, M2) \ MM_CMP_OP (mx_el_le, mx_inline_le, M1, M2) \ MM_CMP_OP (mx_el_ge, mx_inline_ge, M1, M2) \ MM_CMP_OP (mx_el_gt, mx_inline_gt, M1, M2) \ MM_CMP_OP (mx_el_eq, mx_inline_eq, M1, M2) \ MM_CMP_OP (mx_el_ne, mx_inline_ne, M1, M2)
Definition at line 192 of file mx-op-defs.h.
#define MNANCHK | ( | m, | ||
MT | ||||
) |
if (do_mx_check (m, mx_inline_any_nan<MT>)) \ gripe_nan_to_logical_conversion ()
Definition at line 35 of file mx-op-defs.h.
Definition at line 644 of file mx-op-defs.h.
#define MPM_MULTIPLY_OP | ( | M, | ||
PM | ||||
) |
M operator * (const M& x, const PM& p) \ { \ octave_idx_type nr = x.rows (), nc = x.columns (); \ M result; \ if (p.rows () != nc) \ gripe_nonconformant ("operator *", nr, nc, p.rows (), p.columns ()); \ else \ { \ if (p.is_col_perm ()) \ result = x.index (idx_vector::colon, p.pvec ()); \ else \ { \ result = M (nr, nc); \ result.assign (idx_vector::colon, p.pvec (), x); \ } \ } \ \ return result; \ }
Definition at line 620 of file mx-op-defs.h.
#define MS_BIN_OP | ( | R, | ||
OP, | ||||
M, | ||||
S, | ||||
F | ||||
) |
R \ OP (const M& m, const S& s) \ { \ return do_ms_binary_op<R::element_type, M::element_type, S> (m, s, F); \ }
Definition at line 86 of file mx-op-defs.h.
#define MS_BIN_OPS | ( | R, | ||
M, | ||||
S | ||||
) |
#define MS_BOOL_OP | ( | F, | ||
OP, | ||||
M, | ||||
S | ||||
) |
boolMatrix \ F (const M& m, const S& s) \ { \ MNANCHK (m, M::element_type); \ SNANCHK (s); \ return do_ms_binary_op<bool, M::element_type, S> (m, s, OP); \ }
Definition at line 114 of file mx-op-defs.h.
#define MS_BOOL_OPS | ( | M, | ||
S | ||||
) |
MS_BOOL_OP (mx_el_and, mx_inline_and, M, S) \ MS_BOOL_OP (mx_el_or, mx_inline_or, M, S)
Definition at line 123 of file mx-op-defs.h.
#define MS_CMP_OP | ( | F, | ||
OP, | ||||
M, | ||||
S | ||||
) |
boolMatrix \ F (const M& m, const S& s) \ { \ return do_ms_binary_op<bool, M::element_type, S> (m, s, OP); \ }
Definition at line 99 of file mx-op-defs.h.
#define MS_CMP_OPS | ( | M, | ||
S | ||||
) |
MS_CMP_OP (mx_el_lt, mx_inline_lt, M, S) \ MS_CMP_OP (mx_el_le, mx_inline_le, M, S) \ MS_CMP_OP (mx_el_ge, mx_inline_ge, M, S) \ MS_CMP_OP (mx_el_gt, mx_inline_gt, M, S) \ MS_CMP_OP (mx_el_eq, mx_inline_eq, M, S) \ MS_CMP_OP (mx_el_ne, mx_inline_ne, M, S)
Definition at line 106 of file mx-op-defs.h.
#define NDND_BIN_OP | ( | R, | ||
OP, | ||||
ND1, | ||||
ND2, | ||||
F | ||||
) |
R \ OP (const ND1& m1, const ND2& m2) \ { \ return do_mm_binary_op<R::element_type, ND1::element_type, ND2::element_type> (m1, m2, F, F, F, #OP); \ }
Definition at line 309 of file mx-op-defs.h.
#define NDND_BIN_OPS | ( | R, | ||
ND1, | ||||
ND2 | ||||
) |
NDND_BIN_OP (R, operator +, ND1, ND2, mx_inline_add) \ NDND_BIN_OP (R, operator -, ND1, ND2, mx_inline_sub) \ NDND_BIN_OP (R, product, ND1, ND2, mx_inline_mul) \ NDND_BIN_OP (R, quotient, ND1, ND2, mx_inline_div)
Definition at line 316 of file mx-op-defs.h.
#define NDND_BOOL_OP | ( | F, | ||
OP, | ||||
ND1, | ||||
ND2 | ||||
) |
boolNDArray \ F (const ND1& m1, const ND2& m2) \ { \ MNANCHK (m1, ND1::element_type); \ MNANCHK (m2, ND2::element_type); \ return do_mm_binary_op<bool, ND1::element_type, ND2::element_type> (m1, m2, OP, OP, OP, #F); \ }
Definition at line 337 of file mx-op-defs.h.
#define NDND_BOOL_OPS | ( | ND1, | ||
ND2 | ||||
) |
NDND_BOOL_OP (mx_el_and, mx_inline_and, ND1, ND2) \ NDND_BOOL_OP (mx_el_or, mx_inline_or, ND1, ND2) \ NDND_BOOL_OP (mx_el_not_and, mx_inline_not_and, ND1, ND2) \ NDND_BOOL_OP (mx_el_not_or, mx_inline_not_or, ND1, ND2) \ NDND_BOOL_OP (mx_el_and_not, mx_inline_and_not, ND1, ND2) \ NDND_BOOL_OP (mx_el_or_not, mx_inline_or_not, ND1, ND2)
Definition at line 346 of file mx-op-defs.h.
#define NDND_CMP_OP | ( | F, | ||
OP, | ||||
ND1, | ||||
ND2 | ||||
) |
boolNDArray \ F (const ND1& m1, const ND2& m2) \ { \ return do_mm_binary_op<bool, ND1::element_type, ND2::element_type> (m1, m2, OP, OP, OP, #F); \ }
Definition at line 322 of file mx-op-defs.h.
#define NDND_CMP_OPS | ( | ND1, | ||
ND2 | ||||
) |
NDND_CMP_OP (mx_el_lt, mx_inline_lt, ND1, ND2) \ NDND_CMP_OP (mx_el_le, mx_inline_le, ND1, ND2) \ NDND_CMP_OP (mx_el_ge, mx_inline_ge, ND1, ND2) \ NDND_CMP_OP (mx_el_gt, mx_inline_gt, ND1, ND2) \ NDND_CMP_OP (mx_el_eq, mx_inline_eq, ND1, ND2) \ NDND_CMP_OP (mx_el_ne, mx_inline_ne, ND1, ND2)
Definition at line 329 of file mx-op-defs.h.
#define NDND_MAPPER_BODY | ( | R, | ||
NAME | ||||
) |
R retval (dims ()); \ octave_idx_type n = numel (); \ for (octave_idx_type i = 0; i < n; i++) \ retval.xelem (i) = NAME (elem (i)); \ return retval;
Definition at line 647 of file mx-op-defs.h.
#define NDND_MINMAX_FCN | ( | FCN, | ||
OP, | ||||
T, | ||||
S | ||||
) |
T \ FCN (const T& a, const T& b) \ { \ return do_mm_binary_op<T::element_type, T::element_type, T::element_type> (a, b, mx_inline_x##FCN, mx_inline_x##FCN, mx_inline_x##FCN, #FCN); \ }
Definition at line 582 of file mx-op-defs.h.
#define NDS_BIN_OP | ( | R, | ||
OP, | ||||
ND, | ||||
S, | ||||
F | ||||
) |
R \ OP (const ND& m, const S& s) \ { \ return do_ms_binary_op<R::element_type, ND::element_type, S> (m, s, F); \ }
Definition at line 215 of file mx-op-defs.h.
#define NDS_BIN_OPS | ( | R, | ||
ND, | ||||
S | ||||
) |
NDS_BIN_OP (R, operator +, ND, S, mx_inline_add) \ NDS_BIN_OP (R, operator -, ND, S, mx_inline_sub) \ NDS_BIN_OP (R, operator *, ND, S, mx_inline_mul) \ NDS_BIN_OP (R, operator /, ND, S, mx_inline_div)
Definition at line 222 of file mx-op-defs.h.
#define NDS_BOOL_OP | ( | F, | ||
OP, | ||||
ND, | ||||
S | ||||
) |
boolNDArray \ F (const ND& m, const S& s) \ { \ MNANCHK (m, ND::element_type); \ SNANCHK (s); \ return do_ms_binary_op<bool, ND::element_type, S> (m, s, OP); \ }
Definition at line 243 of file mx-op-defs.h.
#define NDS_BOOL_OPS | ( | ND, | ||
S | ||||
) |
NDS_BOOL_OP (mx_el_and, mx_inline_and, ND, S) \ NDS_BOOL_OP (mx_el_or, mx_inline_or, ND, S) \ NDS_BOOL_OP (mx_el_not_and, mx_inline_not_and, ND, S) \ NDS_BOOL_OP (mx_el_not_or, mx_inline_not_or, ND, S) \ NDS_BOOL_OP (mx_el_and_not, mx_inline_and_not, ND, S) \ NDS_BOOL_OP (mx_el_or_not, mx_inline_or_not, ND, S)
Definition at line 252 of file mx-op-defs.h.
#define NDS_CMP_OP | ( | F, | ||
OP, | ||||
ND, | ||||
S | ||||
) |
boolNDArray \ F (const ND& m, const S& s) \ { \ return do_ms_binary_op<bool, ND::element_type, S> (m, s, OP); \ }
Definition at line 228 of file mx-op-defs.h.
#define NDS_CMP_OPS | ( | ND, | ||
S | ||||
) |
NDS_CMP_OP (mx_el_lt, mx_inline_lt, ND, S) \ NDS_CMP_OP (mx_el_le, mx_inline_le, ND, S) \ NDS_CMP_OP (mx_el_ge, mx_inline_ge, ND, S) \ NDS_CMP_OP (mx_el_gt, mx_inline_gt, ND, S) \ NDS_CMP_OP (mx_el_eq, mx_inline_eq, ND, S) \ NDS_CMP_OP (mx_el_ne, mx_inline_ne, ND, S)
Definition at line 235 of file mx-op-defs.h.
#define NDS_MINMAX_FCN | ( | FCN, | ||
OP, | ||||
T, | ||||
S | ||||
) |
T \ FCN (const T& m, S d) \ { \ return do_ms_binary_op<T::element_type, T::element_type, S> (m, d, mx_inline_x##FCN); \ }
Definition at line 575 of file mx-op-defs.h.
Definition at line 641 of file mx-op-defs.h.
#define PMM_MULTIPLY_OP | ( | PM, | ||
M | ||||
) |
M operator * (const PM& p, const M& x) \ { \ octave_idx_type nr = x.rows (), nc = x.columns (); \ M result; \ if (p.columns () != nr) \ gripe_nonconformant ("operator *", p.rows (), p.columns (), nr, nc); \ else \ { \ if (p.is_col_perm ()) \ { \ result = M (nr, nc); \ result.assign (p.pvec (), idx_vector::colon, x); \ } \ else \ result = x.index (p.pvec (), idx_vector::colon); \ } \ \ return result; \ }
Definition at line 599 of file mx-op-defs.h.
#define SDM_BIN_OP | ( | R, | ||
OP, | ||||
S, | ||||
DM | ||||
) |
R \ operator OP (const S& s, const DM& dm) \ { \ R r (dm.rows (), dm.cols ()); \ \ for (octave_idx_type i = 0; i < dm.length (); i++) \ r.dgxelem (i) = s OP dm.dgelem (i); \ \ return r; \ }
Definition at line 356 of file mx-op-defs.h.
#define SDM_BIN_OPS | ( | R, | ||
S, | ||||
DM | ||||
) | SDM_BIN_OP (R, *, S, DM) |
Definition at line 368 of file mx-op-defs.h.
#define SM_BIN_OP | ( | R, | ||
OP, | ||||
S, | ||||
M, | ||||
F | ||||
) |
R \ OP (const S& s, const M& m) \ { \ return do_sm_binary_op<R::element_type, S, M::element_type> (s, m, F); \ }
Definition at line 129 of file mx-op-defs.h.
#define SM_BIN_OPS | ( | R, | ||
S, | ||||
M | ||||
) |
#define SM_BOOL_OP | ( | F, | ||
OP, | ||||
S, | ||||
M | ||||
) |
boolMatrix \ F (const S& s, const M& m) \ { \ SNANCHK (s); \ MNANCHK (m, M::element_type); \ return do_sm_binary_op<bool, S, M::element_type> (s, m, OP); \ }
Definition at line 157 of file mx-op-defs.h.
#define SM_BOOL_OPS | ( | S, | ||
M | ||||
) |
SM_BOOL_OP (mx_el_and, mx_inline_and, S, M) \ SM_BOOL_OP (mx_el_or, mx_inline_or, S, M)
Definition at line 166 of file mx-op-defs.h.
#define SM_CMP_OP | ( | F, | ||
OP, | ||||
S, | ||||
M | ||||
) |
boolMatrix \ F (const S& s, const M& m) \ { \ return do_sm_binary_op<bool, S, M::element_type> (s, m, OP); \ }
Definition at line 142 of file mx-op-defs.h.
#define SM_CMP_OPS | ( | S, | ||
M | ||||
) |
SM_CMP_OP (mx_el_lt, mx_inline_lt, S, M) \ SM_CMP_OP (mx_el_le, mx_inline_le, S, M) \ SM_CMP_OP (mx_el_ge, mx_inline_ge, S, M) \ SM_CMP_OP (mx_el_gt, mx_inline_gt, S, M) \ SM_CMP_OP (mx_el_eq, mx_inline_eq, S, M) \ SM_CMP_OP (mx_el_ne, mx_inline_ne, S, M)
Definition at line 149 of file mx-op-defs.h.
#define SNANCHK | ( | s | ) |
if (xisnan (s)) \ gripe_nan_to_logical_conversion ()
Definition at line 31 of file mx-op-defs.h.
#define SND_BIN_OP | ( | R, | ||
OP, | ||||
S, | ||||
ND, | ||||
F | ||||
) |
R \ OP (const S& s, const ND& m) \ { \ return do_sm_binary_op<R::element_type, S, ND::element_type> (s, m, F); \ }
Definition at line 262 of file mx-op-defs.h.
#define SND_BIN_OPS | ( | R, | ||
S, | ||||
ND | ||||
) |
SND_BIN_OP (R, operator +, S, ND, mx_inline_add) \ SND_BIN_OP (R, operator -, S, ND, mx_inline_sub) \ SND_BIN_OP (R, operator *, S, ND, mx_inline_mul) \ SND_BIN_OP (R, operator /, S, ND, mx_inline_div)
Definition at line 269 of file mx-op-defs.h.
#define SND_BOOL_OP | ( | F, | ||
OP, | ||||
S, | ||||
ND | ||||
) |
boolNDArray \ F (const S& s, const ND& m) \ { \ SNANCHK (s); \ MNANCHK (m, ND::element_type); \ return do_sm_binary_op<bool, S, ND::element_type> (s, m, OP); \ }
Definition at line 290 of file mx-op-defs.h.
#define SND_BOOL_OPS | ( | S, | ||
ND | ||||
) |
SND_BOOL_OP (mx_el_and, mx_inline_and, S, ND) \ SND_BOOL_OP (mx_el_or, mx_inline_or, S, ND) \ SND_BOOL_OP (mx_el_not_and, mx_inline_not_and, S, ND) \ SND_BOOL_OP (mx_el_not_or, mx_inline_not_or, S, ND) \ SND_BOOL_OP (mx_el_and_not, mx_inline_and_not, S, ND) \ SND_BOOL_OP (mx_el_or_not, mx_inline_or_not, S, ND)
Definition at line 299 of file mx-op-defs.h.
#define SND_CMP_OP | ( | F, | ||
OP, | ||||
S, | ||||
ND | ||||
) |
boolNDArray \ F (const S& s, const ND& m) \ { \ return do_sm_binary_op<bool, S, ND::element_type> (s, m, OP); \ }
Definition at line 275 of file mx-op-defs.h.
#define SND_CMP_OPS | ( | S, | ||
ND | ||||
) |
SND_CMP_OP (mx_el_lt, mx_inline_lt, S, ND) \ SND_CMP_OP (mx_el_le, mx_inline_le, S, ND) \ SND_CMP_OP (mx_el_ge, mx_inline_ge, S, ND) \ SND_CMP_OP (mx_el_gt, mx_inline_gt, S, ND) \ SND_CMP_OP (mx_el_eq, mx_inline_eq, S, ND) \ SND_CMP_OP (mx_el_ne, mx_inline_ne, S, ND)
Definition at line 282 of file mx-op-defs.h.
#define SND_MINMAX_FCN | ( | FCN, | ||
OP, | ||||
T, | ||||
S | ||||
) |
T \ FCN (S d, const T& m) \ { \ return do_sm_binary_op<T::element_type, S, T::element_type> (d, m, mx_inline_x##FCN); \ }
Definition at line 568 of file mx-op-defs.h.
#define SV_BIN_OP | ( | R, | ||
F, | ||||
OP, | ||||
S, | ||||
V | ||||
) |
R \ F (const S& s, const V& v) \ { \ return do_sm_binary_op<R::element_type, S, V::element_type> (s, v, OP); \ }
Definition at line 56 of file mx-op-defs.h.
#define SV_BIN_OPS | ( | R, | ||
S, | ||||
V | ||||
) |
#define VS_BIN_OP | ( | R, | ||
F, | ||||
OP, | ||||
V, | ||||
S | ||||
) |
R \ F (const V& v, const S& s) \ { \ return do_ms_binary_op<R::element_type, V::element_type, S> (v, s, OP); \ }
Definition at line 41 of file mx-op-defs.h.
#define VS_BIN_OPS | ( | R, | ||
V, | ||||
S | ||||
) |
#define VV_BIN_OP | ( | R, | ||
F, | ||||
OP, | ||||
V1, | ||||
V2 | ||||
) |
R \ F (const V1& v1, const V2& v2) \ { \ return do_mm_binary_op<R::element_type, V1::element_type, V2::element_type> (v1, v2, OP, OP, OP, #F); \ }
Definition at line 71 of file mx-op-defs.h.