Mercurial > hg > octave-nkf
annotate liboctave/mx-ops @ 8367:445d27d79f4e
support permutation matrix objects
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Thu, 04 Dec 2008 08:31:56 +0100 |
parents | 69c5cce38c29 |
children | eb63fbe60fab |
rev | line source |
---|---|
7019 | 1 # Copyright (C) 2003, 2004, 2006, 2007 John W. Eaton |
2 # | |
3 # This file is part of Octave. | |
4 # | |
5 # Octave is free software; you can redistribute it and/or modify it | |
6 # under the terms of the GNU General Public License as published by the | |
7 # Free Software Foundation; either version 3 of the License, or (at | |
8 # your option) any later version. | |
9 # | |
10 # Octave is distributed in the hope that it will be useful, but WITHOUT | |
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
13 # for more details. | |
14 # | |
15 # You should have received a copy of the GNU General Public License | |
16 # along with Octave; see the file COPYING. If not, see | |
17 # <http://www.gnu.org/licenses/>. | |
18 | |
4544 | 19 # types |
4953 | 20 # |
6119 | 21 # key typename object-type header fwd-decl-ok scalar-zero core-type |
4953 | 22 # |
23 # object-type is one of | |
24 # | |
25 # S: scalar | |
26 # M: matrix | |
27 # DM: diagonal matrix | |
28 # ND: N-d array | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
29 # FS: scalar |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
30 # FM: matrix |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
31 # FDM: diagonal matrix |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
32 # FND: N-d array |
4953 | 33 # |
6119 | 34 # core-type is only used for the octave_int types, and is the template |
35 # parameter: octave_int8 is octave_int<int8_t> | |
36 # | |
5030 | 37 x NONE NONE NONE NO 0 |
38 b bool S NONE NO false | |
39 bm boolMatrix ND boolMatrix.h YES false | |
40 bnda boolNDArray ND boolNDArray.h YES false | |
41 cdm ComplexDiagMatrix DM CDiagMatrix.h YES 0.0 | |
42 cm ComplexMatrix M CMatrix.h YES 0.0 | |
43 cnda ComplexNDArray ND CNDArray.h YES 0.0 | |
44 cs Complex S oct-cmplx.h NO 0.0 | |
45 dm DiagMatrix DM dDiagMatrix.h YES 0.0 | |
46 m Matrix M dMatrix.h YES 0.0 | |
47 nda NDArray ND dNDArray.h YES 0.0 | |
48 s double S NONE NO 0.0 | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
49 fcdm FloatComplexDiagMatrix DM fCDiagMatrix.h YES static_cast<float>(0.0) |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
50 fcm FloatComplexMatrix M fCMatrix.h YES static_cast<float>(0.0) |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
51 fcnda FloatComplexNDArray ND fCNDArray.h YES static_cast<float>(0.0) |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
52 fcs FloatComplex S oct-cmplx.h NO static_cast<float>(0.0) |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
53 fdm FloatDiagMatrix DM fDiagMatrix.h YES static_cast<float>(0.0) |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
54 fm FloatMatrix M fMatrix.h YES static_cast<float>(0.0) |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
55 fnda FloatNDArray ND fNDArray.h YES static_cast<float>(0.0) |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
56 fs float S NONE NO static_cast<float>(0.0) |
8185
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
57 i8 octave_int8 S oct-inttypes.h YES octave_int8::zero int8_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
58 ui8 octave_uint8 S oct-inttypes.h YES octave_uint8::zero uint8_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
59 i16 octave_int16 S oct-inttypes.h YES octave_int16::zero int16_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
60 ui16 octave_uint16 S oct-inttypes.h YES octave_uint16::zero uint16_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
61 i32 octave_int32 S oct-inttypes.h YES octave_int32::zero int32_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
62 ui32 octave_uint32 S oct-inttypes.h YES octave_uint32::zero uint32_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
63 i64 octave_int64 S oct-inttypes.h YES octave_int64::zero int64_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
64 ui64 octave_uint64 S oct-inttypes.h YES octave_uint64::zero uint64_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
65 i8nda int8NDArray ND int8NDArray.h YES octave_int8::zero int8_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
66 ui8nda uint8NDArray ND uint8NDArray.h YES octave_uint8::zero uint8_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
67 i16nda int16NDArray ND int16NDArray.h YES octave_int16::zero int16_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
68 ui16nda uint16NDArray ND uint16NDArray.h YES octave_uint16::zero uint16_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
69 i32nda int32NDArray ND int32NDArray.h YES octave_int32::zero int32_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
70 ui32nda uint32NDArray ND uint32NDArray.h YES octave_uint32::zero uint32_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
71 i64nda int64NDArray ND int64NDArray.h YES octave_int64::zero int64_t |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
72 ui64nda uint64NDArray ND uint64NDArray.h YES octave_uint64::zero uint64_t |
8367
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8185
diff
changeset
|
73 pm PermMatrix PM PermMatrix.h YES static_cast<octave_idx_type>(0) |
4544 | 74 # ops |
5030 | 75 # result_t lhs_t rhs_t op-type lhs_conv rhs_conv headers ... |
4953 | 76 # |
77 # op-type is one of | |
78 # | |
79 # B: binary ops, + - * / | |
80 # C: comparison ops, < <= == != >= > | |
81 # L: logical ops, & | | |
82 # | |
4544 | 83 cdm cdm dm B |
84 cdm dm cdm B | |
85 cm cs cdm B | |
86 cm cs dm B | |
5030 | 87 cm cs m BCL real NONE boolMatrix.h |
88 cnda cs nda BCL real NONE boolMatrix.h boolNDArray.h | |
4544 | 89 cm cdm cs B |
5030 | 90 cm cdm cm B |
91 cm cdm m B | |
4544 | 92 cm cdm s B |
5030 | 93 cm cm cdm B |
94 cm cm dm B | |
95 cm cm m BCL real NONE boolMatrix.h | |
96 cnda cnda nda BCL real NONE boolMatrix.h boolNDArray.h | |
97 cm cm s BCL real NONE boolMatrix.h | |
98 cnda cnda s BCL real NONE boolMatrix.h boolNDArray.h | |
4544 | 99 cm dm cs B |
5030 | 100 cm dm cm B |
101 cm m cs BCL NONE real boolMatrix.h | |
102 cnda nda cs BCL NONE real boolMatrix.h boolNDArray.h | |
103 cm m cdm B | |
104 cm m cm BCL NONE real boolMatrix.h | |
105 cnda nda cnda BCL NONE real boolMatrix.h boolNDArray.h | |
4544 | 106 cm s cdm B |
5030 | 107 cm s cm BCL NONE real boolMatrix.h |
108 cnda s cnda BCL NONE real boolMatrix.h boolNDArray.h | |
109 m dm m B | |
4544 | 110 m dm s B |
5030 | 111 m m dm B |
4544 | 112 m s dm B |
4964 | 113 # |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
114 fcdm fcdm fdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
115 fcdm fdm fcdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
116 fcm fcs fcdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
117 fcm fcs fdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
118 fcm fcs fm BCL real NONE boolMatrix.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
119 fcnda fcs fnda BCL real NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
120 fcm fcdm fcs B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
121 fcm fcdm fcm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
122 fcm fcdm fm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
123 fcm fcdm fs B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
124 fcm fcm fcdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
125 fcm fcm fdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
126 fcm fcm fm BCL real NONE boolMatrix.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
127 fcnda fcnda fnda BCL real NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
128 fcm fcm fs BCL real NONE boolMatrix.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
129 fcnda fcnda fs BCL real NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
130 fcm fdm fcs B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
131 fcm fdm fcm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
132 fcm fm fcs BCL NONE real boolMatrix.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
133 fcnda fnda fcs BCL NONE real boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
134 fcm fm fcdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
135 fcm fm fcm BCL NONE real boolMatrix.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
136 fcnda fnda fcnda BCL NONE real boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
137 fcm fs fcdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
138 fcm fs fcm BCL NONE real boolMatrix.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
139 fcnda fs fcnda BCL NONE real boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
140 fm fdm fm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
141 fm fdm fs B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
142 fm fm fdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
143 fm fs fdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
144 # |
8367
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8185
diff
changeset
|
145 m pm m B |
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8185
diff
changeset
|
146 m m pm B |
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8185
diff
changeset
|
147 cm pm cm B |
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8185
diff
changeset
|
148 cm cm pm B |
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8185
diff
changeset
|
149 fm pm fm B |
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8185
diff
changeset
|
150 fm fm pm B |
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8185
diff
changeset
|
151 fcm pm fcm B |
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8185
diff
changeset
|
152 fcm fcm pm B |
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8185
diff
changeset
|
153 # |
5030 | 154 i8nda s i8nda BCL NONE NONE boolMatrix.h boolNDArray.h |
155 i8nda i8nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
156 ui8nda s ui8nda BCL NONE NONE boolMatrix.h boolNDArray.h | |
157 ui8nda ui8nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
158 i16nda s i16nda BCL NONE NONE boolMatrix.h boolNDArray.h | |
159 i16nda i16nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
160 ui16nda s ui16nda BCL NONE NONE boolMatrix.h boolNDArray.h | |
161 ui16nda ui16nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
162 i32nda s i32nda BCL NONE NONE boolMatrix.h boolNDArray.h | |
163 i32nda i32nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
164 ui32nda s ui32nda BCL NONE NONE boolMatrix.h boolNDArray.h | |
165 ui32nda ui32nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
8185
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
166 i64nda s i64nda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
167 i64nda i64nda s BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
168 ui64nda s ui64nda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
169 ui64nda ui64nda s BCL NONE NONE boolMatrix.h boolNDArray.h |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
170 i8nda fs i8nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
171 i8nda i8nda fs BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
172 ui8nda fs ui8nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
173 ui8nda ui8nda fs BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
174 i16nda fs i16nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
175 i16nda i16nda fs BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
176 ui16nda fs ui16nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
177 ui16nda ui16nda fs BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
178 i32nda fs i32nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
179 i32nda i32nda fs BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
180 ui32nda fs ui32nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
181 ui32nda ui32nda fs BCL NONE NONE boolMatrix.h boolNDArray.h |
8185
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
182 i64nda fs i64nda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
183 i64nda i64nda fs BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
184 ui64nda fs ui64nda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
185 ui64nda ui64nda fs BCL NONE NONE boolMatrix.h boolNDArray.h |
4964 | 186 # |
7625
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
187 i8nda nda i8 BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
188 i8nda i8 nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
189 ui8nda nda ui8 BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
190 ui8nda ui8 nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
191 i16nda nda i16 BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
192 i16nda i16 nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
193 ui16nda nda ui16 BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
194 ui16nda ui16 nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
195 i32nda nda i32 BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
196 i32nda i32 nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
197 ui32nda nda ui32 BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
198 ui32nda ui32 nda BCL NONE NONE boolMatrix.h boolNDArray.h |
8185
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
199 i64nda nda i64 BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
200 i64nda i64 nda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
201 ui64nda nda ui64 BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
202 ui64nda ui64 nda BCL NONE NONE boolMatrix.h boolNDArray.h |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
203 i8nda fnda i8 BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
204 i8nda i8 fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
205 ui8nda fnda ui8 BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
206 ui8nda ui8 fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
207 i16nda fnda i16 BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
208 i16nda i16 fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
209 ui16nda fnda ui16 BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
210 ui16nda ui16 fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
211 i32nda fnda i32 BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
212 i32nda i32 fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
213 ui32nda fnda ui32 BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
214 ui32nda ui32 fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
8185
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
215 i64nda fnda i64 BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
216 i64nda i64 fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
217 ui64nda fnda ui64 BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
218 ui64nda ui64 fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
4964 | 219 # |
7625
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
220 i8nda nda i8nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
221 i8nda i8nda nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
222 ui8nda nda ui8nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
223 ui8nda ui8nda nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
224 i16nda nda i16nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
225 i16nda i16nda nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
226 ui16nda nda ui16nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
227 ui16nda ui16nda nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
228 i32nda nda i32nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
229 i32nda i32nda nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
230 ui32nda nda ui32nda BCL NONE NONE boolMatrix.h boolNDArray.h |
43e3efb2cbc2
Add integer el_div and el_ldiv operators to the binops that were missing them
David Bateman <dbateman@free.fr>
parents:
7019
diff
changeset
|
231 ui32nda ui32nda nda BCL NONE NONE boolMatrix.h boolNDArray.h |
8185
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
232 i64nda nda i64nda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
233 i64nda i64nda nda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
234 ui64nda nda ui64nda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
235 ui64nda ui64nda nda BCL NONE NONE boolMatrix.h boolNDArray.h |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
236 i8nda fnda i8nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
237 i8nda i8nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
238 ui8nda fnda ui8nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
239 ui8nda ui8nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
240 i16nda fnda i16nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
241 i16nda i16nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
242 ui16nda fnda ui16nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
243 ui16nda ui16nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
244 i32nda fnda i32nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
245 i32nda i32nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
246 ui32nda fnda ui32nda BCL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
247 ui32nda ui32nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
8185
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
248 i64nda fnda i64nda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
249 i64nda i64nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
250 ui64nda fnda ui64nda BCL NONE NONE boolMatrix.h boolNDArray.h |
69c5cce38c29
implement 64-bit arithmetics
Jaroslav Hajek <highegg@gmail.com>
parents:
7789
diff
changeset
|
251 ui64nda ui64nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h |
4964 | 252 # |
5030 | 253 x i8nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h |
254 x i8nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
255 x i8nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
256 x i8nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
257 x i8nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
258 x i8nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
259 x i8nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 260 # |
5030 | 261 x i16nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
262 x i16nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
263 x i16nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
264 x i16nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
265 x i16nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
266 x i16nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
267 x i16nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 268 # |
5030 | 269 x i32nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
270 x i32nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
271 x i32nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
272 x i32nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
273 x i32nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
274 x i32nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
275 x i32nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 276 # |
5030 | 277 x i64nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
278 x i64nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
279 x i64nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
280 x i64nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
281 x i64nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
282 x i64nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
283 x i64nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 284 # |
5030 | 285 x ui8nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
286 x ui8nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
287 x ui8nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
288 x ui8nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
289 x ui8nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
290 x ui8nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
291 x ui8nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 292 # |
5030 | 293 x ui16nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
294 x ui16nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
295 x ui16nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
296 x ui16nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
297 x ui16nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
298 x ui16nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
299 x ui16nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 300 # |
5030 | 301 x ui32nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
302 x ui32nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
303 x ui32nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
304 x ui32nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
305 x ui32nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
306 x ui32nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
307 x ui32nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 308 # |
5030 | 309 x ui64nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
310 x ui64nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
311 x ui64nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
312 x ui64nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
313 x ui64nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
314 x ui64nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
315 x ui64nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 316 # |
5030 | 317 x i8 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h |
318 x i8 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
319 x i8 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
320 x i8 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
321 x i8 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
322 x i8 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
323 x i8 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 324 # |
5030 | 325 x i16 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
326 x i16 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
327 x i16 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
328 x i16 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
329 x i16 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
330 x i16 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
331 x i16 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 332 # |
5030 | 333 x i32 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
334 x i32 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
335 x i32 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
336 x i32 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
337 x i32 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
338 x i32 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
339 x i32 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 340 # |
5030 | 341 x i64 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
342 x i64 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
343 x i64 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
344 x i64 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
345 x i64 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
346 x i64 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
347 x i64 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 348 # |
5030 | 349 x ui8 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
350 x ui8 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
351 x ui8 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
352 x ui8 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
353 x ui8 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
354 x ui8 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
355 x ui8 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 356 # |
5030 | 357 x ui16 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
358 x ui16 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
359 x ui16 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
360 x ui16 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
361 x ui16 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
362 x ui16 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
363 x ui16 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 364 # |
5030 | 365 x ui32 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
366 x ui32 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
367 x ui32 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
368 x ui32 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
369 x ui32 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
370 x ui32 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
371 x ui32 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 372 # |
5030 | 373 x ui64 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
374 x ui64 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
375 x ui64 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
376 x ui64 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
377 x ui64 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
378 x ui64 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
379 x ui64 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 380 # |
5030 | 381 x i8nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h |
382 x i8nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
383 x i8nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
384 x i8nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
385 x i8nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
386 x i8nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
387 x i8nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 388 # |
5030 | 389 x i16nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
390 x i16nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
391 x i16nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
392 x i16nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
393 x i16nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
394 x i16nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
395 x i16nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 396 # |
5030 | 397 x i32nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
398 x i32nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
399 x i32nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
400 x i32nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
401 x i32nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
402 x i32nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
403 x i32nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 404 # |
5030 | 405 x i64nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
406 x i64nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
407 x i64nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
408 x i64nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
409 x i64nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
410 x i64nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
411 x i64nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 412 # |
5030 | 413 x ui8nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
414 x ui8nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
415 x ui8nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
416 x ui8nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
417 x ui8nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
418 x ui8nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
419 x ui8nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 420 # |
5030 | 421 x ui16nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
422 x ui16nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
423 x ui16nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
424 x ui16nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
425 x ui16nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
426 x ui16nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
427 x ui16nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 428 # |
5030 | 429 x ui32nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
430 x ui32nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
431 x ui32nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
432 x ui32nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
433 x ui32nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
434 x ui32nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
435 x ui32nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 436 # |
5030 | 437 x ui64nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
438 x ui64nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
439 x ui64nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
440 x ui64nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
441 x ui64nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
442 x ui64nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
443 x ui64nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h |