Mercurial > hg > octave-lyh
annotate liboctave/mx-ops @ 8019:0ef13e15319b
replace NPOS with std::string::npos
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 07 Aug 2008 15:15:33 -0400 |
parents | 82be108cc558 |
children | 69c5cce38c29 |
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) |
6119 | 57 i8 octave_int8 S oct-inttypes.h YES octave_int8(0) int8_t |
58 ui8 octave_uint8 S oct-inttypes.h YES octave_uint8(0) uint8_t | |
59 i16 octave_int16 S oct-inttypes.h YES octave_int16(0) int16_t | |
60 ui16 octave_uint16 S oct-inttypes.h YES octave_uint16(0) uint16_t | |
61 i32 octave_int32 S oct-inttypes.h YES octave_int32(0) int32_t | |
62 ui32 octave_uint32 S oct-inttypes.h YES octave_uint32(0) uint32_t | |
63 i64 octave_int64 S oct-inttypes.h YES octave_int64(0) int64_t | |
64 ui64 octave_uint64 S oct-inttypes.h YES octave_uint64(0) uint64_t | |
65 i8nda int8NDArray ND int8NDArray.h YES octave_int8(0) int8_t | |
66 ui8nda uint8NDArray ND uint8NDArray.h YES octave_uint8(0) uint8_t | |
67 i16nda int16NDArray ND int16NDArray.h YES octave_int16(0) int16_t | |
68 ui16nda uint16NDArray ND uint16NDArray.h YES octave_uint16(0) uint16_t | |
69 i32nda int32NDArray ND int32NDArray.h YES octave_int32(0) int32_t | |
70 ui32nda uint32NDArray ND uint32NDArray.h YES octave_uint32(0) uint32_t | |
71 i64nda int64NDArray ND int64NDArray.h YES octave_int64(0) int64_t | |
72 ui64nda uint64NDArray ND uint64NDArray.h YES octave_uint64(0) uint64_t | |
4544 | 73 # ops |
5030 | 74 # result_t lhs_t rhs_t op-type lhs_conv rhs_conv headers ... |
4953 | 75 # |
76 # op-type is one of | |
77 # | |
78 # B: binary ops, + - * / | |
79 # C: comparison ops, < <= == != >= > | |
80 # L: logical ops, & | | |
81 # | |
4544 | 82 cdm cdm dm B |
83 cdm dm cdm B | |
84 cm cs cdm B | |
85 cm cs dm B | |
5030 | 86 cm cs m BCL real NONE boolMatrix.h |
87 cnda cs nda BCL real NONE boolMatrix.h boolNDArray.h | |
4544 | 88 cm cdm cs B |
5030 | 89 cm cdm cm B |
90 cm cdm m B | |
4544 | 91 cm cdm s B |
5030 | 92 cm cm cdm B |
93 cm cm dm B | |
94 cm cm m BCL real NONE boolMatrix.h | |
95 cnda cnda nda BCL real NONE boolMatrix.h boolNDArray.h | |
96 cm cm s BCL real NONE boolMatrix.h | |
97 cnda cnda s BCL real NONE boolMatrix.h boolNDArray.h | |
4544 | 98 cm dm cs B |
5030 | 99 cm dm cm B |
100 cm m cs BCL NONE real boolMatrix.h | |
101 cnda nda cs BCL NONE real boolMatrix.h boolNDArray.h | |
102 cm m cdm B | |
103 cm m cm BCL NONE real boolMatrix.h | |
104 cnda nda cnda BCL NONE real boolMatrix.h boolNDArray.h | |
4544 | 105 cm s cdm B |
5030 | 106 cm s cm BCL NONE real boolMatrix.h |
107 cnda s cnda BCL NONE real boolMatrix.h boolNDArray.h | |
108 m dm m B | |
4544 | 109 m dm s B |
5030 | 110 m m dm B |
4544 | 111 m s dm B |
4964 | 112 # |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
113 fcdm fcdm fdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
114 fcdm fdm fcdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
115 fcm fcs fcdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
116 fcm fcs fdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
117 fcm fcs fm BCL real NONE boolMatrix.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
118 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
|
119 fcm fcdm fcs B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
120 fcm fcdm fcm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
121 fcm fcdm fm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
122 fcm fcdm fs B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
123 fcm fcm fcdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
124 fcm fcm fdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
125 fcm fcm fm BCL real NONE boolMatrix.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
126 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
|
127 fcm fcm fs BCL real NONE boolMatrix.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
128 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
|
129 fcm fdm fcs B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
130 fcm fdm fcm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
131 fcm fm fcs BCL NONE real boolMatrix.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
132 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
|
133 fcm fm fcdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
134 fcm fm fcm BCL NONE real boolMatrix.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
135 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
|
136 fcm fs fcdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
137 fcm fs fcm BCL NONE real boolMatrix.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
138 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
|
139 fm fdm fm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
140 fm fdm fs B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
141 fm fm fdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
142 fm fs fdm B |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
143 # |
5030 | 144 i8nda s i8nda BCL NONE NONE boolMatrix.h boolNDArray.h |
145 i8nda i8nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
146 ui8nda s ui8nda BCL NONE NONE boolMatrix.h boolNDArray.h | |
147 ui8nda ui8nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
148 i16nda s i16nda BCL NONE NONE boolMatrix.h boolNDArray.h | |
149 i16nda i16nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
150 ui16nda s ui16nda BCL NONE NONE boolMatrix.h boolNDArray.h | |
151 ui16nda ui16nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
152 i32nda s i32nda BCL NONE NONE boolMatrix.h boolNDArray.h | |
153 i32nda i32nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
154 ui32nda s ui32nda BCL NONE NONE boolMatrix.h boolNDArray.h | |
155 ui32nda ui32nda s BCL NONE NONE boolMatrix.h boolNDArray.h | |
156 i64nda s i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
157 i64nda i64nda s CL NONE NONE boolMatrix.h boolNDArray.h | |
158 ui64nda s ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
159 ui64nda ui64nda s CL NONE NONE boolMatrix.h boolNDArray.h | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
160 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
|
161 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
|
162 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
|
163 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
|
164 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
|
165 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
|
166 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
|
167 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
|
168 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
|
169 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
|
170 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
|
171 ui32nda ui32nda 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 i64nda fs i64nda CL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
173 i64nda i64nda fs CL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
174 ui64nda fs ui64nda CL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
175 ui64nda ui64nda fs CL NONE NONE boolMatrix.h boolNDArray.h |
4964 | 176 # |
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
|
177 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
|
178 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
|
179 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
|
180 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
|
181 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
|
182 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
|
183 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
|
184 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
|
185 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
|
186 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
|
187 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
|
188 ui32nda ui32 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 i64nda nda i64 CL 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 i64nda i64 nda CL 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 ui64nda nda ui64 CL 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 ui64nda ui64 nda CL NONE NONE boolMatrix.h boolNDArray.h |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
193 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
|
194 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
|
195 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
|
196 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
|
197 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
|
198 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
|
199 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
|
200 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
|
201 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
|
202 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
|
203 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
|
204 ui32nda ui32 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 i64nda fnda i64 CL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
206 i64nda i64 fnda CL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
207 ui64nda fnda ui64 CL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
208 ui64nda ui64 fnda CL NONE NONE boolMatrix.h boolNDArray.h |
4964 | 209 # |
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
|
210 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
|
211 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
|
212 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
|
213 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
|
214 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
|
215 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
|
216 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
|
217 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
|
218 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
|
219 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
|
220 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
|
221 ui32nda ui32nda 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 i64nda nda i64nda CL 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 i64nda i64nda nda CL 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 ui6nda nda ui64nda CL 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 ui64nda ui64nda nda CL NONE NONE boolMatrix.h boolNDArray.h |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
226 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
|
227 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
|
228 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
|
229 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
|
230 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
|
231 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
|
232 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
|
233 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
|
234 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
|
235 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
|
236 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
|
237 ui32nda ui32nda 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 i64nda fnda i64nda CL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
239 i64nda i64nda fnda CL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
240 ui6nda fnda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7625
diff
changeset
|
241 ui64nda ui64nda fnda CL NONE NONE boolMatrix.h boolNDArray.h |
4964 | 242 # |
5030 | 243 x i8nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h |
244 x i8nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
245 x i8nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
246 x i8nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
247 x i8nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
248 x i8nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
249 x i8nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 250 # |
5030 | 251 x i16nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
252 x i16nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
253 x i16nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
254 x i16nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
255 x i16nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
256 x i16nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
257 x i16nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 258 # |
5030 | 259 x i32nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
260 x i32nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
261 x i32nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
262 x i32nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
263 x i32nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
264 x i32nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
265 x i32nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 266 # |
5030 | 267 x i64nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
268 x i64nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
269 x i64nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
270 x i64nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
271 x i64nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
272 x i64nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
273 x i64nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 274 # |
5030 | 275 x ui8nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
276 x ui8nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
277 x ui8nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
278 x ui8nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
279 x ui8nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
280 x ui8nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
281 x ui8nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 282 # |
5030 | 283 x ui16nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
284 x ui16nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
285 x ui16nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
286 x ui16nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
287 x ui16nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
288 x ui16nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
289 x ui16nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 290 # |
5030 | 291 x ui32nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
292 x ui32nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
293 x ui32nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
294 x ui32nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
295 x ui32nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
296 x ui32nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
297 x ui32nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 298 # |
5030 | 299 x ui64nda i8 CL NONE NONE boolMatrix.h boolNDArray.h |
300 x ui64nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h | |
301 x ui64nda i16 CL NONE NONE boolMatrix.h boolNDArray.h | |
302 x ui64nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h | |
303 x ui64nda i32 CL NONE NONE boolMatrix.h boolNDArray.h | |
304 x ui64nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h | |
305 x ui64nda i64 CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 306 # |
5030 | 307 x i8 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h |
308 x i8 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
309 x i8 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
310 x i8 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
311 x i8 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
312 x i8 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
313 x i8 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 314 # |
5030 | 315 x i16 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
316 x i16 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
317 x i16 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
318 x i16 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
319 x i16 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
320 x i16 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
321 x i16 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 322 # |
5030 | 323 x i32 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
324 x i32 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
325 x i32 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
326 x i32 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
327 x i32 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
328 x i32 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
329 x i32 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 330 # |
5030 | 331 x i64 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
332 x i64 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
333 x i64 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
334 x i64 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
335 x i64 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
336 x i64 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
337 x i64 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 338 # |
5030 | 339 x ui8 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
340 x ui8 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
341 x ui8 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
342 x ui8 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
343 x ui8 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
344 x ui8 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
345 x ui8 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 346 # |
5030 | 347 x ui16 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
348 x ui16 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
349 x ui16 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
350 x ui16 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
351 x ui16 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
352 x ui16 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
353 x ui16 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 354 # |
5030 | 355 x ui32 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
356 x ui32 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
357 x ui32 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
358 x ui32 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
359 x ui32 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
360 x ui32 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
361 x ui32 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 362 # |
5030 | 363 x ui64 i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
364 x ui64 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
365 x ui64 i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
366 x ui64 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
367 x ui64 i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
368 x ui64 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
369 x ui64 i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 370 # |
5030 | 371 x i8nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h |
372 x i8nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
373 x i8nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
374 x i8nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
375 x i8nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
376 x i8nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
377 x i8nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 378 # |
5030 | 379 x i16nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
380 x i16nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
381 x i16nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
382 x i16nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
383 x i16nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
384 x i16nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
385 x i16nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 386 # |
5030 | 387 x i32nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
388 x i32nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
389 x i32nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
390 x i32nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
391 x i32nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
392 x i32nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
393 x i32nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 394 # |
5030 | 395 x i64nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
396 x i64nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
397 x i64nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
398 x i64nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
399 x i64nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
400 x i64nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
401 x i64nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 402 # |
5030 | 403 x ui8nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
404 x ui8nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
405 x ui8nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
406 x ui8nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
407 x ui8nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
408 x ui8nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
409 x ui8nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 410 # |
5030 | 411 x ui16nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
412 x ui16nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
413 x ui16nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
414 x ui16nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
415 x ui16nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
416 x ui16nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
417 x ui16nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 418 # |
5030 | 419 x ui32nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
420 x ui32nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
421 x ui32nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
422 x ui32nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
423 x ui32nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
424 x ui32nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
425 x ui32nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h | |
4964 | 426 # |
5030 | 427 x ui64nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h |
428 x ui64nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h | |
429 x ui64nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
430 x ui64nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h | |
431 x ui64nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
432 x ui64nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h | |
433 x ui64nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h |