view liboctave/operators/mx-ops @ 21247:7be239ae42c8

merge sparse-mk-ops.awk and mk-ops.awk scripts * mx-ops.awk: Merge with sparse-mk-ops.awk. Generate a single output file at a time and always write to stdout. * sparse-mk-ops.awk: Delete. * liboctave/module.mk, liboctave/operators/module.mk: Adapt rules. * liboctave/operators/config-ops.sh: Update for modified mk-ops.awk script. * mx-ops, smx-ops, vx-ops: Improve comments.
author John W. Eaton <jwe@octave.org>
date Thu, 11 Feb 2016 02:36:54 -0500
parents 9155bab86647
children bac0d6f07a3e
line wrap: on
line source

# Copyright (C) 2003-2015 John W. Eaton
#
# This file is part of Octave.
#
# Octave is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 3 of the License, or (at
# your option) any later version.
#
# Octave is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License
# along with Octave; see the file COPYING.  If not, see
# <http://www.gnu.org/licenses/>.

# NOTE: if this file changes, you must run bootstrap and configure to
# rebuild the source file lists for Make.

# types
#
# key typename object-type header fwd-decl-ok scalar-zero core-type
#
# object-type is one of
#
#   S:  scalar
#   M:  matrix
#   DM: diagonal matrix
#   ND: N-d array
#   FS:  scalar
#   FM:  matrix
#   FDM: diagonal matrix
#   FND: N-d array
#
# core-type is only used for the octave_int types, and is the template
# parameter: octave_int8 is octave_int<int8_t>
#
x NONE NONE NONE NO 0
b bool S NONE NO false
bm boolMatrix ND boolMatrix.h YES false
bnda boolNDArray ND boolNDArray.h YES false
cdm ComplexDiagMatrix DM CDiagMatrix.h YES 0.0
cm ComplexMatrix M CMatrix.h YES 0.0
cnda ComplexNDArray ND CNDArray.h YES 0.0
cs Complex S oct-cmplx.h NO 0.0
dm DiagMatrix DM dDiagMatrix.h YES 0.0
m Matrix M dMatrix.h YES 0.0
nda NDArray ND dNDArray.h YES 0.0
s double S NONE NO 0.0
fcdm FloatComplexDiagMatrix DM fCDiagMatrix.h YES 0.0f
fcm FloatComplexMatrix M fCMatrix.h YES 0.0f
fcnda FloatComplexNDArray ND fCNDArray.h YES 0.0f
fcs FloatComplex S oct-cmplx.h NO 0.0f
fdm FloatDiagMatrix DM fDiagMatrix.h YES 0.0f
fm FloatMatrix M fMatrix.h YES 0.0f
fnda FloatNDArray ND fNDArray.h YES 0.0f
fs float S NONE NO 0.0f
i8 octave_int8 S oct-inttypes.h YES octave_int8::zero int8_t
ui8 octave_uint8 S oct-inttypes.h YES octave_uint8::zero uint8_t
i16 octave_int16 S oct-inttypes.h YES octave_int16::zero int16_t
ui16 octave_uint16 S oct-inttypes.h YES octave_uint16::zero uint16_t
i32 octave_int32 S oct-inttypes.h YES octave_int32::zero int32_t
ui32 octave_uint32 S oct-inttypes.h YES octave_uint32::zero uint32_t
i64 octave_int64 S oct-inttypes.h YES octave_int64::zero int64_t
ui64 octave_uint64 S oct-inttypes.h YES octave_uint64::zero uint64_t
i8nda int8NDArray ND int8NDArray.h YES octave_int8::zero int8_t
ui8nda uint8NDArray ND uint8NDArray.h YES octave_uint8::zero uint8_t
i16nda int16NDArray ND int16NDArray.h YES octave_int16::zero int16_t
ui16nda uint16NDArray ND uint16NDArray.h YES octave_uint16::zero uint16_t
i32nda int32NDArray ND int32NDArray.h YES octave_int32::zero int32_t
ui32nda uint32NDArray ND uint32NDArray.h YES octave_uint32::zero uint32_t
i64nda int64NDArray ND int64NDArray.h YES octave_int64::zero int64_t
ui64nda uint64NDArray ND uint64NDArray.h YES octave_uint64::zero uint64_t
pm PermMatrix PM PermMatrix.h YES static_cast<octave_idx_type>(0)
#
# full-matrix operators
#
# result_t lhs_t rhs_t op-type lhs_conv rhs_conv headers ...
#
# op-type is one of
#
#   B: binary ops, + - * /
#   C: comparison ops, < <= == != >= >
#   L: logical ops, & |
#
cdm cdm dm B
cdm dm cdm B
cdm cs dm B
cm cs m BCL real NONE boolMatrix.h
cnda cs nda BCL real NONE boolMatrix.h boolNDArray.h
cm cdm cm B
cm cdm m B
cdm cdm s B
cm cm cdm B
cm cm dm B
cm cm m BCL real NONE boolMatrix.h
cnda cnda nda BCL real NONE boolMatrix.h boolNDArray.h
cm cm s BCL real NONE boolMatrix.h
cnda cnda s BCL real NONE boolMatrix.h boolNDArray.h
cdm dm cs B
cm dm cm B
cm m cs BCL NONE real boolMatrix.h
cnda nda cs BCL NONE real boolMatrix.h boolNDArray.h
cm m cdm B
cm m cm BCL NONE real boolMatrix.h
cnda nda cnda BCL NONE real boolMatrix.h boolNDArray.h
cdm s cdm B
cm s cm BCL NONE real boolMatrix.h
cnda s cnda BCL NONE real boolMatrix.h boolNDArray.h
m dm m B
m m dm B
#
fcdm fcdm fdm B
fcdm fdm fcdm B
fcdm fcs fdm B
fcm fcs fm BCL real NONE boolMatrix.h
fcnda fcs fnda BCL real NONE boolMatrix.h boolNDArray.h
fcm fcdm fcm B
fcm fcdm fm B
fcdm fcdm fs B
fcm fcm fcdm B
fcm fcm fdm B
fcm fcm fm BCL real NONE boolMatrix.h
fcnda fcnda fnda BCL real NONE boolMatrix.h boolNDArray.h
fcm fcm fs BCL real NONE boolMatrix.h
fcnda fcnda fs BCL real NONE boolMatrix.h boolNDArray.h
fcdm fdm fcs B
fcm fdm fcm B
fcm fm fcs BCL NONE real boolMatrix.h
fcnda fnda fcs BCL NONE real boolMatrix.h boolNDArray.h
fcm fm fcdm B
fcm fm fcm BCL NONE real boolMatrix.h
fcnda fnda fcnda BCL NONE real boolMatrix.h boolNDArray.h
fcdm fs fcdm B
fcm fs fcm BCL NONE real boolMatrix.h
fcnda fs fcnda BCL NONE real boolMatrix.h boolNDArray.h
fm fdm fm B
fm fm fdm B
#
m pm m B
m m pm B
cm pm cm B
cm cm pm B
fm pm fm B
fm fm pm B
fcm pm fcm B
fcm fcm pm B
#
i8nda s i8nda BCL NONE NONE boolMatrix.h boolNDArray.h
i8nda i8nda s BCL NONE NONE boolMatrix.h boolNDArray.h
ui8nda s ui8nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui8nda ui8nda s BCL NONE NONE boolMatrix.h boolNDArray.h
i16nda s i16nda BCL NONE NONE boolMatrix.h boolNDArray.h
i16nda i16nda s BCL NONE NONE boolMatrix.h boolNDArray.h
ui16nda s ui16nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui16nda ui16nda s BCL NONE NONE boolMatrix.h boolNDArray.h
i32nda s i32nda BCL NONE NONE boolMatrix.h boolNDArray.h
i32nda i32nda s BCL NONE NONE boolMatrix.h boolNDArray.h
ui32nda s ui32nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui32nda ui32nda s BCL NONE NONE boolMatrix.h boolNDArray.h
i64nda s i64nda BCL NONE NONE boolMatrix.h boolNDArray.h
i64nda i64nda s BCL NONE NONE boolMatrix.h boolNDArray.h
ui64nda s ui64nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui64nda ui64nda s BCL NONE NONE boolMatrix.h boolNDArray.h
i8nda fs i8nda BCL NONE NONE boolMatrix.h boolNDArray.h
i8nda i8nda fs BCL NONE NONE boolMatrix.h boolNDArray.h
ui8nda fs ui8nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui8nda ui8nda fs BCL NONE NONE boolMatrix.h boolNDArray.h
i16nda fs i16nda BCL NONE NONE boolMatrix.h boolNDArray.h
i16nda i16nda fs BCL NONE NONE boolMatrix.h boolNDArray.h
ui16nda fs ui16nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui16nda ui16nda fs BCL NONE NONE boolMatrix.h boolNDArray.h
i32nda fs i32nda BCL NONE NONE boolMatrix.h boolNDArray.h
i32nda i32nda fs BCL NONE NONE boolMatrix.h boolNDArray.h
ui32nda fs ui32nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui32nda ui32nda fs BCL NONE NONE boolMatrix.h boolNDArray.h
i64nda fs i64nda BCL NONE NONE boolMatrix.h boolNDArray.h
i64nda i64nda fs BCL NONE NONE boolMatrix.h boolNDArray.h
ui64nda fs ui64nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui64nda ui64nda fs BCL NONE NONE boolMatrix.h boolNDArray.h
#
i8nda nda i8 BCL NONE NONE boolMatrix.h boolNDArray.h
i8nda i8 nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui8nda nda ui8 BCL NONE NONE boolMatrix.h boolNDArray.h
ui8nda ui8 nda BCL NONE NONE boolMatrix.h boolNDArray.h
i16nda nda i16 BCL NONE NONE boolMatrix.h boolNDArray.h
i16nda i16 nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui16nda nda ui16 BCL NONE NONE boolMatrix.h boolNDArray.h
ui16nda ui16 nda BCL NONE NONE boolMatrix.h boolNDArray.h
i32nda nda i32 BCL NONE NONE boolMatrix.h boolNDArray.h
i32nda i32 nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui32nda nda ui32 BCL NONE NONE boolMatrix.h boolNDArray.h
ui32nda ui32 nda BCL NONE NONE boolMatrix.h boolNDArray.h
i64nda nda i64 BCL NONE NONE boolMatrix.h boolNDArray.h
i64nda i64 nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui64nda nda ui64 BCL NONE NONE boolMatrix.h boolNDArray.h
ui64nda ui64 nda BCL NONE NONE boolMatrix.h boolNDArray.h
i8nda fnda i8 BCL NONE NONE boolMatrix.h boolNDArray.h
i8nda i8 fnda BCL NONE NONE boolMatrix.h boolNDArray.h
ui8nda fnda ui8 BCL NONE NONE boolMatrix.h boolNDArray.h
ui8nda ui8 fnda BCL NONE NONE boolMatrix.h boolNDArray.h
i16nda fnda i16 BCL NONE NONE boolMatrix.h boolNDArray.h
i16nda i16 fnda BCL NONE NONE boolMatrix.h boolNDArray.h
ui16nda fnda ui16 BCL NONE NONE boolMatrix.h boolNDArray.h
ui16nda ui16 fnda BCL NONE NONE boolMatrix.h boolNDArray.h
i32nda fnda i32 BCL NONE NONE boolMatrix.h boolNDArray.h
i32nda i32 fnda BCL NONE NONE boolMatrix.h boolNDArray.h
ui32nda fnda ui32 BCL NONE NONE boolMatrix.h boolNDArray.h
ui32nda ui32 fnda BCL NONE NONE boolMatrix.h boolNDArray.h
i64nda fnda i64 BCL NONE NONE boolMatrix.h boolNDArray.h
i64nda i64 fnda BCL NONE NONE boolMatrix.h boolNDArray.h
ui64nda fnda ui64 BCL NONE NONE boolMatrix.h boolNDArray.h
ui64nda ui64 fnda BCL NONE NONE boolMatrix.h boolNDArray.h
#
i8nda nda i8nda BCL NONE NONE boolMatrix.h boolNDArray.h
i8nda i8nda nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui8nda nda ui8nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui8nda ui8nda nda BCL NONE NONE boolMatrix.h boolNDArray.h
i16nda nda i16nda BCL NONE NONE boolMatrix.h boolNDArray.h
i16nda i16nda nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui16nda nda ui16nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui16nda ui16nda nda BCL NONE NONE boolMatrix.h boolNDArray.h
i32nda nda i32nda BCL NONE NONE boolMatrix.h boolNDArray.h
i32nda i32nda nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui32nda nda ui32nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui32nda ui32nda nda BCL NONE NONE boolMatrix.h boolNDArray.h
i64nda nda i64nda BCL NONE NONE boolMatrix.h boolNDArray.h
i64nda i64nda nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui64nda nda ui64nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui64nda ui64nda nda BCL NONE NONE boolMatrix.h boolNDArray.h
i8nda fnda i8nda BCL NONE NONE boolMatrix.h boolNDArray.h
i8nda i8nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h
ui8nda fnda ui8nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui8nda ui8nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h
i16nda fnda i16nda BCL NONE NONE boolMatrix.h boolNDArray.h
i16nda i16nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h
ui16nda fnda ui16nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui16nda ui16nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h
i32nda fnda i32nda BCL NONE NONE boolMatrix.h boolNDArray.h
i32nda i32nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h
ui32nda fnda ui32nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui32nda ui32nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h
i64nda fnda i64nda BCL NONE NONE boolMatrix.h boolNDArray.h
i64nda i64nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h
ui64nda fnda ui64nda BCL NONE NONE boolMatrix.h boolNDArray.h
ui64nda ui64nda fnda BCL NONE NONE boolMatrix.h boolNDArray.h
#
x i8nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
x i8nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
x i8nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
x i8nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
x i8nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
x i8nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
x i8nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
#
x i16nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
x i16nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
x i16nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
x i16nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
x i16nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
x i16nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
x i16nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
#
x i32nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
x i32nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
x i32nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
x i32nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
x i32nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
x i32nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
x i32nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
#
x i64nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
x i64nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
x i64nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
x i64nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
x i64nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
x i64nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
x i64nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
#
x ui8nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
x ui8nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
x ui8nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
x ui8nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
x ui8nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
x ui8nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
x ui8nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
#
x ui16nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
x ui16nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
x ui16nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
x ui16nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
x ui16nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
x ui16nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
x ui16nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
#
x ui32nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
x ui32nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
x ui32nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
x ui32nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
x ui32nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
x ui32nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
x ui32nda ui64 CL NONE NONE boolMatrix.h boolNDArray.h
#
x ui64nda i8 CL NONE NONE boolMatrix.h boolNDArray.h
x ui64nda ui8 CL NONE NONE boolMatrix.h boolNDArray.h
x ui64nda i16 CL NONE NONE boolMatrix.h boolNDArray.h
x ui64nda ui16 CL NONE NONE boolMatrix.h boolNDArray.h
x ui64nda i32 CL NONE NONE boolMatrix.h boolNDArray.h
x ui64nda ui32 CL NONE NONE boolMatrix.h boolNDArray.h
x ui64nda i64 CL NONE NONE boolMatrix.h boolNDArray.h
#
x i8 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
x i8 i16nda CL NONE NONE boolMatrix.h boolNDArray.h
x i8 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
x i8 i32nda CL NONE NONE boolMatrix.h boolNDArray.h
x i8 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
x i8 i64nda CL NONE NONE boolMatrix.h boolNDArray.h
x i8 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
#
x i16 i8nda CL NONE NONE boolMatrix.h boolNDArray.h
x i16 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
x i16 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
x i16 i32nda CL NONE NONE boolMatrix.h boolNDArray.h
x i16 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
x i16 i64nda CL NONE NONE boolMatrix.h boolNDArray.h
x i16 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
#
x i32 i8nda CL NONE NONE boolMatrix.h boolNDArray.h
x i32 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
x i32 i16nda CL NONE NONE boolMatrix.h boolNDArray.h
x i32 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
x i32 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
x i32 i64nda CL NONE NONE boolMatrix.h boolNDArray.h
x i32 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
#
x i64 i8nda CL NONE NONE boolMatrix.h boolNDArray.h
x i64 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
x i64 i16nda CL NONE NONE boolMatrix.h boolNDArray.h
x i64 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
x i64 i32nda CL NONE NONE boolMatrix.h boolNDArray.h
x i64 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
x i64 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
#
x ui8 i8nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui8 i16nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui8 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui8 i32nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui8 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui8 i64nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui8 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
#
x ui16 i8nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui16 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui16 i16nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui16 i32nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui16 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui16 i64nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui16 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
#
x ui32 i8nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui32 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui32 i16nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui32 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui32 i32nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui32 i64nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui32 ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
#
x ui64 i8nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui64 ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui64 i16nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui64 ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui64 i32nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui64 ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui64 i64nda CL NONE NONE boolMatrix.h boolNDArray.h
#
x i8nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
x i8nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
x i8nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
x i8nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
x i8nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
x i8nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h
x i8nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
#
x i16nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
x i16nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
x i16nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
x i16nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
x i16nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
x i16nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h
x i16nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
#
x i32nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
x i32nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
x i32nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
x i32nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
x i32nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
x i32nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h
x i32nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
#
x i64nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
x i64nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
x i64nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
x i64nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
x i64nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
x i64nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
x i64nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
#
x ui8nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui8nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui8nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui8nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui8nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui8nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui8nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
#
x ui16nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui16nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui16nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui16nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui16nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui16nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui16nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
#
x ui32nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui32nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui32nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui32nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui32nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui32nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui32nda ui64nda CL NONE NONE boolMatrix.h boolNDArray.h
#
x ui64nda i8nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui64nda ui8nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui64nda i16nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui64nda ui16nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui64nda i32nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui64nda ui32nda CL NONE NONE boolMatrix.h boolNDArray.h
x ui64nda i64nda CL NONE NONE boolMatrix.h boolNDArray.h