numbl 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/binding.gyp +17 -33
- package/dist-cli/cli.js +61511 -46223
- package/dist-lib/graphics/types.d.ts +22 -0
- package/dist-lib/lib.js +37582 -22275
- package/dist-lib/numbl-core/executeCode.d.ts +11 -16
- package/dist-lib/numbl-core/executors/cache.d.ts +26 -0
- package/dist-lib/numbl-core/executors/classification.d.ts +134 -0
- package/dist-lib/numbl-core/executors/context.d.ts +76 -0
- package/dist-lib/numbl-core/executors/handleInline.d.ts +42 -0
- package/dist-lib/numbl-core/executors/index.d.ts +14 -0
- package/dist-lib/numbl-core/executors/jit/cJitCallExecutor.d.ts +35 -0
- package/dist-lib/numbl-core/executors/jit/cJitLoopExecutor.d.ts +31 -0
- package/dist-lib/numbl-core/executors/jit/cJitTopLevelExecutor.d.ts +29 -0
- package/dist-lib/numbl-core/executors/jit/callExecutor.d.ts +45 -0
- package/dist-lib/numbl-core/executors/jit/compileC.d.ts +51 -0
- package/dist-lib/numbl-core/executors/jit/compileC.node.d.ts +25 -0
- package/dist-lib/numbl-core/executors/jit/hostHelpers.d.ts +27 -0
- package/dist-lib/numbl-core/executors/jit/loopExecutor.d.ts +41 -0
- package/dist-lib/numbl-core/executors/jit/session.d.ts +17 -0
- package/dist-lib/numbl-core/executors/jit/topLevelExecutor.d.ts +36 -0
- package/dist-lib/numbl-core/executors/jit/typeAdapter.d.ts +28 -0
- package/dist-lib/numbl-core/executors/jit/typeAdapterC.d.ts +73 -0
- package/dist-lib/numbl-core/executors/jit/valueAdapter.d.ts +48 -0
- package/dist-lib/numbl-core/executors/jit/valueAdapterC.d.ts +108 -0
- package/dist-lib/numbl-core/executors/lowering.d.ts +120 -0
- package/dist-lib/numbl-core/executors/plugins.d.ts +32 -0
- package/dist-lib/numbl-core/executors/registry.d.ts +148 -0
- package/dist-lib/numbl-core/executors/types.d.ts +103 -0
- package/dist-lib/numbl-core/functionResolve.d.ts +7 -0
- package/dist-lib/numbl-core/helpers/check-helpers.d.ts +4 -5
- package/dist-lib/numbl-core/helpers/linsolve.d.ts +2 -3
- package/dist-lib/numbl-core/helpers/prng.d.ts +1 -2
- package/dist-lib/numbl-core/helpers/reduction-helpers.d.ts +4 -1
- package/dist-lib/numbl-core/interpreter/builtins/datetime.d.ts +2 -1
- package/dist-lib/numbl-core/interpreter/builtins/index.d.ts +1 -1
- package/dist-lib/numbl-core/interpreter/builtins/misc.d.ts +4 -1
- package/dist-lib/numbl-core/interpreter/builtins/types.d.ts +4 -109
- package/dist-lib/numbl-core/interpreter/interpreter.d.ts +51 -49
- package/dist-lib/numbl-core/interpreter/interpreterExec.d.ts +6 -0
- package/dist-lib/numbl-core/interpreter/interpreterSpecialBuiltins.d.ts +6 -3
- package/dist-lib/numbl-core/interpreter/types.d.ts +27 -12
- package/dist-lib/numbl-core/jit/builtins/defs/_shared.d.ts +43 -0
- package/dist-lib/numbl-core/jit/builtins/defs/arithmetic/_elemwise.d.ts +123 -0
- package/dist-lib/numbl-core/jit/builtins/defs/arithmetic/minus.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/arithmetic/mpower.d.ts +12 -0
- package/dist-lib/numbl-core/jit/builtins/defs/arithmetic/mrdivide.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/defs/arithmetic/mtimes.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/arithmetic/plus.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/arithmetic/power.d.ts +30 -0
- package/dist-lib/numbl-core/jit/builtins/defs/arithmetic/rdivide.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/arithmetic/times.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/arithmetic/uminus.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/compare/_compare.d.ts +12 -0
- package/dist-lib/numbl-core/jit/builtins/defs/compare/eq.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/compare/ge.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/compare/gt.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/compare/le.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/compare/lt.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/compare/ne.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/diag/assert.d.ts +6 -0
- package/dist-lib/numbl-core/jit/builtins/defs/io/_format_args.d.ts +17 -0
- package/dist-lib/numbl-core/jit/builtins/defs/io/disp.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/io/error.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/io/fprintf.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/io/sprintf.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/io/warning.d.ts +15 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/_shortcircuit.d.ts +30 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/_unary_pred.d.ts +30 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/and.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/andand.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/boolconst.d.ts +3 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/classBuiltin.d.ts +21 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/fieldnames.d.ts +15 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/isa.d.ts +13 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/iscell.d.ts +8 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/isempty.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/isequal.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/isfield.d.ts +20 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/isinf.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/isnan.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/isnumeric.d.ts +7 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/isreal.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/isscalar.d.ts +20 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/isstruct.d.ts +7 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/logical.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/not.d.ts +15 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/or.d.ts +11 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/oror.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/strcmp.d.ts +21 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/typequery.d.ts +10 -0
- package/dist-lib/numbl-core/jit/builtins/defs/logical/xor.d.ts +12 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/_complex_fold.d.ts +34 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/_unary_real.d.ts +51 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/abs.d.ts +7 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/angle.d.ts +7 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/asinh.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/atan.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/atan2.d.ts +3 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/besselh.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/ceil.d.ts +4 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/conj.d.ts +7 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/constants.d.ts +7 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/cos.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/cosh.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/dot.d.ts +20 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/double.d.ts +28 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/exp.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/fix.d.ts +4 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/floor.d.ts +4 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/hypot.d.ts +3 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/imag.d.ts +7 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/linspace.d.ts +6 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/log.d.ts +4 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/log10.d.ts +3 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/log2.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/logspace.d.ts +8 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/mod.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/norm.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/real.d.ts +7 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/rem.d.ts +3 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/round.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/sign.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/sin.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/sinh.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/sqrt.d.ts +11 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/tan.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/tanh.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/math/uniquetol.d.ts +22 -0
- package/dist-lib/numbl-core/jit/builtins/defs/plot/dispatch.d.ts +6 -0
- package/dist-lib/numbl-core/jit/builtins/defs/reduction/_cumulative.d.ts +49 -0
- package/dist-lib/numbl-core/jit/builtins/defs/reduction/_shape.d.ts +126 -0
- package/dist-lib/numbl-core/jit/builtins/defs/reduction/_variance.d.ts +17 -0
- package/dist-lib/numbl-core/jit/builtins/defs/reduction/all.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/reduction/any.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/reduction/cummax.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/reduction/cummin.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/reduction/cumprod.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/reduction/cumsum.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/reduction/diff.d.ts +16 -0
- package/dist-lib/numbl-core/jit/builtins/defs/reduction/length.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/reduction/max.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/reduction/mean.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/reduction/min.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/reduction/numel.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/defs/reduction/prod.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/reduction/std.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/reduction/sum.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/reduction/var.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/shape/_construct.d.ts +67 -0
- package/dist-lib/numbl-core/jit/builtins/defs/shape/_triangular.d.ts +34 -0
- package/dist-lib/numbl-core/jit/builtins/defs/shape/cat.d.ts +33 -0
- package/dist-lib/numbl-core/jit/builtins/defs/shape/diag.d.ts +29 -0
- package/dist-lib/numbl-core/jit/builtins/defs/shape/eye.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/defs/shape/flip.d.ts +7 -0
- package/dist-lib/numbl-core/jit/builtins/defs/shape/meshgrid.d.ts +12 -0
- package/dist-lib/numbl-core/jit/builtins/defs/shape/ones.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/shape/repmat.d.ts +37 -0
- package/dist-lib/numbl-core/jit/builtins/defs/shape/reshape.d.ts +39 -0
- package/dist-lib/numbl-core/jit/builtins/defs/shape/size.d.ts +20 -0
- package/dist-lib/numbl-core/jit/builtins/defs/shape/sort.d.ts +19 -0
- package/dist-lib/numbl-core/jit/builtins/defs/shape/transpose.d.ts +6 -0
- package/dist-lib/numbl-core/jit/builtins/defs/shape/tril.d.ts +16 -0
- package/dist-lib/numbl-core/jit/builtins/defs/shape/triu.d.ts +16 -0
- package/dist-lib/numbl-core/jit/builtins/defs/shape/zeros.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/defs/system/deal.d.ts +20 -0
- package/dist-lib/numbl-core/jit/builtins/defs/system/feval.d.ts +36 -0
- package/dist-lib/numbl-core/jit/builtins/defs/system/pathBuiltins.d.ts +4 -0
- package/dist-lib/numbl-core/jit/builtins/defs/system/tic.d.ts +8 -0
- package/dist-lib/numbl-core/jit/builtins/defs/system/toc.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/index.d.ts +16 -0
- package/dist-lib/numbl-core/jit/builtins/registry.d.ts +138 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/cell/cell.d.ts +24 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/indexing/loop_count.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/indexing/range_value.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/indexing/scalar_index.d.ts +11 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/indexing/tensor_make_range.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/io/assert_fmt.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/io/disp_complex.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/io/disp_double.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/io/disp_struct.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/io/disp_tensor.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/io/disp_tensor_complex.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/io/error_fmt.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/io/format_complex.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/io/format_double.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/io/format_engine.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/io/fprintf.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/io/sprintf.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/io/warning_fmt.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/plot/plot_dispatch.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/snippets.gen.d.ts +86 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/system/cdiv.d.ts +4 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/system/cscalar.d.ts +103 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/system/deep_clone.d.ts +1 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/system/isequal.d.ts +2 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/system/tictoc.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor/tensor.d.ts +6 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor/tensor_alloc.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor/tensor_alloc_complex.d.ts +6 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor/tensor_alloc_nd.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor/tensor_alloc_nd_complex.d.ts +6 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor/tensor_copy_complex.d.ts +6 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor/tensor_from_matrix.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor/tensor_from_matrix_complex.d.ts +6 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor/tensor_from_row.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor/tensor_from_row_complex.d.ts +6 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_cat.d.ts +11 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_cumulative.d.ts +32 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_diag.d.ts +33 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_diff.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_dot.d.ts +16 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_elemwise_complex.d.ts +90 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_elemwise_real.d.ts +75 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_elemwise_real_fn.d.ts +95 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_eye.d.ts +10 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_fill_nd.d.ts +11 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_fill_square.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_flip.d.ts +11 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_linspace.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_logical_real.d.ts +10 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_logspace.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_meshgrid.d.ts +29 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_mtimes_complex.d.ts +10 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_mtimes_real.d.ts +6 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_norm.d.ts +4 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_ones_nd.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_ones_square.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_predicate.d.ts +42 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_reduce_complex.d.ts +53 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_reduce_real.d.ts +42 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_repmat.d.ts +11 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_reshape_nd.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_reshape_nd_complex.d.ts +6 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_size.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_sort_real.d.ts +36 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_transpose.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_transpose_complex.d.ts +6 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_triangular.d.ts +22 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_unary_complex_math.d.ts +128 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_unary_real_math.d.ts +95 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_uniquetol.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_var.d.ts +12 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_zeros_nd.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/tensor_ops/tensor_zeros_square.d.ts +5 -0
- package/dist-lib/numbl-core/jit/builtins/runtime/text/strcmp.d.ts +2 -0
- package/dist-lib/numbl-core/jit/codegen/cFormat.d.ts +36 -0
- package/dist-lib/numbl-core/jit/codegen/cHelpers.d.ts +48 -0
- package/dist-lib/numbl-core/jit/codegen/emit.d.ts +55 -0
- package/dist-lib/numbl-core/jit/codegen/emitCellTypedef.d.ts +23 -0
- package/dist-lib/numbl-core/jit/codegen/emitExpr.d.ts +33 -0
- package/dist-lib/numbl-core/jit/codegen/emitIndex.d.ts +56 -0
- package/dist-lib/numbl-core/jit/codegen/emitJs.d.ts +64 -0
- package/dist-lib/numbl-core/jit/codegen/emitNamedTypedef.d.ts +58 -0
- package/dist-lib/numbl-core/jit/codegen/emitStmt.d.ts +76 -0
- package/dist-lib/numbl-core/jit/codegen/emitTensorConcat.d.ts +23 -0
- package/dist-lib/numbl-core/jit/codegen/emitTensorConcatJs.d.ts +16 -0
- package/dist-lib/numbl-core/jit/codegen/emitTensorFused.d.ts +77 -0
- package/dist-lib/numbl-core/jit/codegen/inlinePass.d.ts +66 -0
- package/dist-lib/numbl-core/jit/codegen/liveness.d.ts +58 -0
- package/dist-lib/numbl-core/jit/codegen/prettyIR.d.ts +24 -0
- package/dist-lib/numbl-core/jit/codegen/runtime.d.ts +150 -0
- package/dist-lib/numbl-core/jit/compileSpec.d.ts +84 -0
- package/dist-lib/numbl-core/jit/compileSpecC.d.ts +93 -0
- package/dist-lib/numbl-core/jit/index.d.ts +13 -5
- package/dist-lib/numbl-core/jit/lowering/classDefs.d.ts +109 -0
- package/dist-lib/numbl-core/jit/lowering/errors.d.ts +35 -0
- package/dist-lib/numbl-core/jit/lowering/indexFold.d.ts +31 -0
- package/dist-lib/numbl-core/jit/lowering/indexResolve.d.ts +100 -0
- package/dist-lib/numbl-core/jit/lowering/ir.d.ts +584 -0
- package/dist-lib/numbl-core/jit/lowering/lower.d.ts +271 -0
- package/dist-lib/numbl-core/jit/lowering/lowerCellIndex.d.ts +41 -0
- package/dist-lib/numbl-core/jit/lowering/lowerCellLit.d.ts +19 -0
- package/dist-lib/numbl-core/jit/lowering/lowerClassConstructor.d.ts +55 -0
- package/dist-lib/numbl-core/jit/lowering/lowerFuncCall.d.ts +34 -0
- package/dist-lib/numbl-core/jit/lowering/lowerHandle.d.ts +57 -0
- package/dist-lib/numbl-core/jit/lowering/lowerIndexLoad.d.ts +16 -0
- package/dist-lib/numbl-core/jit/lowering/lowerIndexSlice.d.ts +29 -0
- package/dist-lib/numbl-core/jit/lowering/lowerIndexSliceStore.d.ts +19 -0
- package/dist-lib/numbl-core/jit/lowering/lowerIndexStore.d.ts +14 -0
- package/dist-lib/numbl-core/jit/lowering/lowerMethodCall.d.ts +45 -0
- package/dist-lib/numbl-core/jit/lowering/lowerMultiAssign.d.ts +36 -0
- package/dist-lib/numbl-core/jit/lowering/lowerTensorLit.d.ts +25 -0
- package/dist-lib/numbl-core/jit/lowering/rangeCount.d.ts +19 -0
- package/dist-lib/numbl-core/jit/lowering/specialize.d.ts +93 -0
- package/dist-lib/numbl-core/jit/lowering/types.d.ts +503 -0
- package/dist-lib/numbl-core/jit/lowering/walk.d.ts +17 -0
- package/dist-lib/numbl-core/jit/numbl/index.d.ts +30 -0
- package/dist-lib/numbl-core/jit/parser/astUtils.d.ts +43 -0
- package/dist-lib/numbl-core/jit/parser/index.d.ts +12 -0
- package/dist-lib/numbl-core/jit/parser/sourceLoc.d.ts +12 -0
- package/dist-lib/numbl-core/jit/runtime/context.d.ts +23 -0
- package/dist-lib/numbl-core/jit/runtime/inferType.d.ts +10 -0
- package/dist-lib/numbl-core/jit/runtime/value.d.ts +101 -0
- package/dist-lib/numbl-core/jit/workspace/driverPrologue.d.ts +59 -0
- package/dist-lib/numbl-core/jit/workspace/mtoc2UserFunctionLoader.d.ts +62 -0
- package/dist-lib/numbl-core/jit/workspace/workspace.d.ts +243 -0
- package/dist-lib/numbl-core/jitTypes.d.ts +94 -0
- package/dist-lib/numbl-core/jsUserFunctions.d.ts +10 -2
- package/dist-lib/numbl-core/lowering/loweringContext.d.ts +24 -0
- package/dist-lib/numbl-core/native/lapack-bridge.d.ts +3 -3
- package/dist-lib/numbl-core/parser/ClassParser.d.ts +3 -0
- package/dist-lib/numbl-core/parser/types.d.ts +20 -0
- package/dist-lib/numbl-core/runtime/alloc.d.ts +12 -23
- package/dist-lib/numbl-core/runtime/constructors.d.ts +6 -6
- package/dist-lib/numbl-core/runtime/cow.d.ts +33 -0
- package/dist-lib/numbl-core/runtime/index.d.ts +4 -3
- package/dist-lib/numbl-core/runtime/indexing.d.ts +17 -2
- package/dist-lib/numbl-core/runtime/plotBuiltinDispatch.d.ts +86 -0
- package/dist-lib/numbl-core/runtime/plotUtils.d.ts +17 -2
- package/dist-lib/numbl-core/runtime/refcount.d.ts +85 -0
- package/dist-lib/numbl-core/runtime/runtime.d.ts +43 -67
- package/dist-lib/numbl-core/runtime/runtimeDispatch.d.ts +2 -2
- package/dist-lib/numbl-core/runtime/runtimeIndexing.d.ts +2 -2
- package/dist-lib/numbl-core/runtime/runtimeMemberAccess.d.ts +1 -1
- package/dist-lib/numbl-core/runtime/runtimePlot.d.ts +1 -0
- package/dist-lib/numbl-core/runtime/struct-access.d.ts +2 -1
- package/dist-lib/numbl-core/runtime/types.d.ts +117 -62
- package/dist-lib/numbl-core/runtime/utils.d.ts +2 -8
- package/dist-lib/numbl-core/version.d.ts +1 -1
- package/dist-lib/numbl-core/workspace/types.d.ts +8 -0
- package/dist-plot-viewer/assets/index-COAM8o1E.js +4426 -0
- package/dist-plot-viewer/index.html +1 -1
- package/dist-site-viewer/404.html +33 -0
- package/dist-site-viewer/assets/index-CgBUy7v7.js +4748 -0
- package/dist-site-viewer/assets/index-D5YY8PKx.css +1 -0
- package/dist-site-viewer/assets/numbl-worker-VkVtodCX.js +11836 -0
- package/dist-site-viewer/coi-serviceworker.js +70 -0
- package/dist-site-viewer/favicon.svg +23 -0
- package/dist-site-viewer/index.html +16 -0
- package/dist-site-viewer/logo.svg +26 -0
- package/dist-site-viewer/numbl-embed.js +111 -0
- package/dist-site-viewer/vite.svg +1 -0
- package/native/lapack_linsolve.cpp +1 -1
- package/native/numbl_addon_common.h +2 -2
- package/native/ops/comparison.c +1 -1
- package/native/ops/real_unary_elemwise.c +3 -1
- package/package.json +16 -13
- package/dist-lib/numbl-core/jit/c/abi.d.ts +0 -90
- package/dist-lib/numbl-core/jit/c/assemble.d.ts +0 -56
- package/dist-lib/numbl-core/jit/c/classify.d.ts +0 -70
- package/dist-lib/numbl-core/jit/c/compile.d.ts +0 -37
- package/dist-lib/numbl-core/jit/c/context.d.ts +0 -152
- package/dist-lib/numbl-core/jit/c/emit/assign.d.ts +0 -20
- package/dist-lib/numbl-core/jit/c/emit/complexScalar.d.ts +0 -18
- package/dist-lib/numbl-core/jit/c/emit/fused.d.ts +0 -42
- package/dist-lib/numbl-core/jit/c/emit/helpers.d.ts +0 -40
- package/dist-lib/numbl-core/jit/c/emit/index.d.ts +0 -14
- package/dist-lib/numbl-core/jit/c/emit/scalar.d.ts +0 -23
- package/dist-lib/numbl-core/jit/c/emit/stmt.d.ts +0 -25
- package/dist-lib/numbl-core/jit/c/emit/tensor.d.ts +0 -127
- package/dist-lib/numbl-core/jit/c/emit/userCall.d.ts +0 -58
- package/dist-lib/numbl-core/jit/c/epilogue.d.ts +0 -26
- package/dist-lib/numbl-core/jit/c/feasibility.d.ts +0 -44
- package/dist-lib/numbl-core/jit/c/prelude.d.ts +0 -37
- package/dist-lib/numbl-core/jit/c/visit.d.ts +0 -63
- package/dist-lib/numbl-core/jit/e1/complexKernelEmit.d.ts +0 -46
- package/dist-lib/numbl-core/jit/e1/hash.d.ts +0 -10
- package/dist-lib/numbl-core/jit/e1/install.d.ts +0 -13
- package/dist-lib/numbl-core/jit/e1/kernelEmit.d.ts +0 -54
- package/dist-lib/numbl-core/jit/e1/multiReductionKernel.d.ts +0 -66
- package/dist-lib/numbl-core/jit/e1/openmpFlag.d.ts +0 -13
- package/dist-lib/numbl-core/jit/e1/scalarFnKernel.d.ts +0 -44
- package/dist-lib/numbl-core/jit/e2/assignKernel.d.ts +0 -34
- package/dist-lib/numbl-core/jit/e2/astToJitExpr.d.ts +0 -25
- package/dist-lib/numbl-core/jit/e2/cache.d.ts +0 -80
- package/dist-lib/numbl-core/jit/e2/chainKernelEmit.d.ts +0 -55
- package/dist-lib/numbl-core/jit/e2/classify.d.ts +0 -119
- package/dist-lib/numbl-core/jit/e2/compileFn.d.ts +0 -16
- package/dist-lib/numbl-core/jit/e2/complexChainKernelEmit.d.ts +0 -79
- package/dist-lib/numbl-core/jit/e2/emitShared.d.ts +0 -71
- package/dist-lib/numbl-core/jit/e2/install.d.ts +0 -11
- package/dist-lib/numbl-core/jit/e2/liveness.d.ts +0 -29
- package/dist-lib/numbl-core/jit/e2/loopKernel.d.ts +0 -49
- package/dist-lib/numbl-core/jit/e2/loopKernelEmit.d.ts +0 -75
- package/dist-lib/numbl-core/jit/e2/multiReductionDriver.d.ts +0 -24
- package/dist-lib/numbl-core/jit/e2/reductionKernelEmit.d.ts +0 -72
- package/dist-lib/numbl-core/jit/e2/scalarFnDriver.d.ts +0 -29
- package/dist-lib/numbl-core/jit/fusedChainHelpers.d.ts +0 -65
- package/dist-lib/numbl-core/jit/fusedScalarEmit.d.ts +0 -69
- package/dist-lib/numbl-core/jit/fusion.d.ts +0 -71
- package/dist-lib/numbl-core/jit/fusionOps.d.ts +0 -25
- package/dist-lib/numbl-core/jit/heavyOps.d.ts +0 -15
- package/dist-lib/numbl-core/jit/jitBailSafety.d.ts +0 -41
- package/dist-lib/numbl-core/jit/jitLoop.d.ts +0 -25
- package/dist-lib/numbl-core/jit/jitLoopAnalysis.d.ts +0 -37
- package/dist-lib/numbl-core/jit/jitLower.d.ts +0 -122
- package/dist-lib/numbl-core/jit/jitLowerExpr.d.ts +0 -27
- package/dist-lib/numbl-core/jit/jitLowerStmt.d.ts +0 -9
- package/dist-lib/numbl-core/jit/jitLowerTypes.d.ts +0 -29
- package/dist-lib/numbl-core/jit/jitTopLevel.d.ts +0 -22
- package/dist-lib/numbl-core/jit/jitTypes.d.ts +0 -394
- package/dist-lib/numbl-core/jit/js/jitCodegen.d.ts +0 -7
- package/dist-lib/numbl-core/jit/js/jitCodegenHoist.d.ts +0 -70
- package/dist-lib/numbl-core/jit/js/jitHelpers.d.ts +0 -34
- package/dist-lib/numbl-core/jit/js/jitHelpersComplex.d.ts +0 -21
- package/dist-lib/numbl-core/jit/js/jitHelpersIndex.d.ts +0 -33
- package/dist-lib/numbl-core/jit/js/jitHelpersTensor.d.ts +0 -34
- package/dist-lib/numbl-core/jit/js/jsFusedCodegen.d.ts +0 -17
- package/dist-lib/numbl-core/jit/js/jsMultiReduction.d.ts +0 -70
- package/dist-lib/numbl-core/jit/scalarEmit.d.ts +0 -58
- package/dist-plot-viewer/assets/index-GiUNnMQg.js +0 -4426
- package/native/jit_runtime/jit_runtime.c +0 -261
- package/native/jit_runtime/jit_runtime.h +0 -204
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
export function mtoc2_tensor_atan2_tt(a: any, b: any): {
|
|
2
|
+
mtoc2Tag: string;
|
|
3
|
+
shape: any;
|
|
4
|
+
data: any;
|
|
5
|
+
};
|
|
6
|
+
export function mtoc2_tensor_atan2_ts(a: any, s: any): {
|
|
7
|
+
mtoc2Tag: string;
|
|
8
|
+
shape: any;
|
|
9
|
+
data: any;
|
|
10
|
+
};
|
|
11
|
+
export function mtoc2_tensor_atan2_st(s: any, a: any): {
|
|
12
|
+
mtoc2Tag: string;
|
|
13
|
+
shape: any;
|
|
14
|
+
data: any;
|
|
15
|
+
};
|
|
16
|
+
export function mtoc2_tensor_atan2_bcast_tt(a: any, b: any): {
|
|
17
|
+
mtoc2Tag: string;
|
|
18
|
+
shape: any;
|
|
19
|
+
data: any;
|
|
20
|
+
};
|
|
21
|
+
export function mtoc2_tensor_hypot_tt(a: any, b: any): {
|
|
22
|
+
mtoc2Tag: string;
|
|
23
|
+
shape: any;
|
|
24
|
+
data: any;
|
|
25
|
+
};
|
|
26
|
+
export function mtoc2_tensor_hypot_ts(a: any, s: any): {
|
|
27
|
+
mtoc2Tag: string;
|
|
28
|
+
shape: any;
|
|
29
|
+
data: any;
|
|
30
|
+
};
|
|
31
|
+
export function mtoc2_tensor_hypot_bcast_tt(a: any, b: any): {
|
|
32
|
+
mtoc2Tag: string;
|
|
33
|
+
shape: any;
|
|
34
|
+
data: any;
|
|
35
|
+
};
|
|
36
|
+
export function mtoc2_tensor_power_tt(a: any, b: any): {
|
|
37
|
+
mtoc2Tag: string;
|
|
38
|
+
shape: any;
|
|
39
|
+
data: any;
|
|
40
|
+
};
|
|
41
|
+
export function mtoc2_tensor_power_ts(a: any, s: any): {
|
|
42
|
+
mtoc2Tag: string;
|
|
43
|
+
shape: any;
|
|
44
|
+
data: any;
|
|
45
|
+
};
|
|
46
|
+
export function mtoc2_tensor_power_st(s: any, a: any): {
|
|
47
|
+
mtoc2Tag: string;
|
|
48
|
+
shape: any;
|
|
49
|
+
data: any;
|
|
50
|
+
};
|
|
51
|
+
export function mtoc2_tensor_power_bcast_tt(a: any, b: any): {
|
|
52
|
+
mtoc2Tag: string;
|
|
53
|
+
shape: any;
|
|
54
|
+
data: any;
|
|
55
|
+
};
|
|
56
|
+
export function mtoc2_tensor_rem_tt(a: any, b: any): {
|
|
57
|
+
mtoc2Tag: string;
|
|
58
|
+
shape: any;
|
|
59
|
+
data: any;
|
|
60
|
+
};
|
|
61
|
+
export function mtoc2_tensor_rem_ts(a: any, s: any): {
|
|
62
|
+
mtoc2Tag: string;
|
|
63
|
+
shape: any;
|
|
64
|
+
data: any;
|
|
65
|
+
};
|
|
66
|
+
export function mtoc2_tensor_rem_st(s: any, a: any): {
|
|
67
|
+
mtoc2Tag: string;
|
|
68
|
+
shape: any;
|
|
69
|
+
data: any;
|
|
70
|
+
};
|
|
71
|
+
export function mtoc2_tensor_rem_bcast_tt(a: any, b: any): {
|
|
72
|
+
mtoc2Tag: string;
|
|
73
|
+
shape: any;
|
|
74
|
+
data: any;
|
|
75
|
+
};
|
|
76
|
+
export function mtoc2_tensor_mod_tt(a: any, b: any): {
|
|
77
|
+
mtoc2Tag: string;
|
|
78
|
+
shape: any;
|
|
79
|
+
data: any;
|
|
80
|
+
};
|
|
81
|
+
export function mtoc2_tensor_mod_ts(a: any, s: any): {
|
|
82
|
+
mtoc2Tag: string;
|
|
83
|
+
shape: any;
|
|
84
|
+
data: any;
|
|
85
|
+
};
|
|
86
|
+
export function mtoc2_tensor_mod_st(s: any, a: any): {
|
|
87
|
+
mtoc2Tag: string;
|
|
88
|
+
shape: any;
|
|
89
|
+
data: any;
|
|
90
|
+
};
|
|
91
|
+
export function mtoc2_tensor_mod_bcast_tt(a: any, b: any): {
|
|
92
|
+
mtoc2Tag: string;
|
|
93
|
+
shape: any;
|
|
94
|
+
data: any;
|
|
95
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export function mtoc2_tensor_fill_nd(value: any, ndim: any, dims: any): {
|
|
2
|
+
mtoc2Tag: string;
|
|
3
|
+
shape: any;
|
|
4
|
+
data: any;
|
|
5
|
+
};
|
|
6
|
+
export function mtoc2_tensor_fill_nd_complex(re: any, im: any, ndim: any, dims: any): {
|
|
7
|
+
mtoc2Tag: string;
|
|
8
|
+
shape: any[];
|
|
9
|
+
data: Float64Array<ArrayBuffer>;
|
|
10
|
+
imag: Float64Array<ArrayBuffer>;
|
|
11
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export function mtoc2_tensor_flip(a: any, dimIdx: any): {
|
|
2
|
+
mtoc2Tag: string;
|
|
3
|
+
shape: any;
|
|
4
|
+
data: any;
|
|
5
|
+
};
|
|
6
|
+
export function mtoc2_tensor_flip_complex(a: any, dimIdx: any): {
|
|
7
|
+
mtoc2Tag: string;
|
|
8
|
+
shape: any[];
|
|
9
|
+
data: Float64Array<ArrayBuffer>;
|
|
10
|
+
imag: Float64Array<ArrayBuffer>;
|
|
11
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export function mtoc2_meshgrid_x(x: any, y: any): {
|
|
2
|
+
mtoc2Tag: string;
|
|
3
|
+
shape: any;
|
|
4
|
+
data: any;
|
|
5
|
+
};
|
|
6
|
+
export function mtoc2_meshgrid(x: any, y: any): {
|
|
7
|
+
X: {
|
|
8
|
+
mtoc2Tag: string;
|
|
9
|
+
shape: any;
|
|
10
|
+
data: any;
|
|
11
|
+
};
|
|
12
|
+
Y: {
|
|
13
|
+
mtoc2Tag: string;
|
|
14
|
+
shape: any;
|
|
15
|
+
data: any;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
export function mtoc2_meshgrid_1arg(x: any): {
|
|
19
|
+
X: {
|
|
20
|
+
mtoc2Tag: string;
|
|
21
|
+
shape: any;
|
|
22
|
+
data: any;
|
|
23
|
+
};
|
|
24
|
+
Y: {
|
|
25
|
+
mtoc2Tag: string;
|
|
26
|
+
shape: any;
|
|
27
|
+
data: any;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export function mtoc2_tensor_mtimes_complex_scalar(a: any, b: any): {
|
|
2
|
+
re: number;
|
|
3
|
+
im: number;
|
|
4
|
+
};
|
|
5
|
+
export function mtoc2_tensor_mtimes_complex(a: any, b: any): {
|
|
6
|
+
mtoc2Tag: string;
|
|
7
|
+
shape: any[];
|
|
8
|
+
data: Float64Array<ArrayBuffer>;
|
|
9
|
+
imag: Float64Array<ArrayBuffer>;
|
|
10
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
export function mtoc2_tensor_isnan(a: any): {
|
|
2
|
+
mtoc2Tag: string;
|
|
3
|
+
shape: any;
|
|
4
|
+
data: Float64Array<any>;
|
|
5
|
+
isLogical: boolean;
|
|
6
|
+
};
|
|
7
|
+
export function mtoc2_tensor_logical(a: any): {
|
|
8
|
+
mtoc2Tag: string;
|
|
9
|
+
shape: any;
|
|
10
|
+
data: Float64Array<any>;
|
|
11
|
+
isLogical: boolean;
|
|
12
|
+
};
|
|
13
|
+
export function mtoc2_tensor_isinf(a: any): {
|
|
14
|
+
mtoc2Tag: string;
|
|
15
|
+
shape: any;
|
|
16
|
+
data: Float64Array<any>;
|
|
17
|
+
isLogical: boolean;
|
|
18
|
+
};
|
|
19
|
+
export function mtoc2_tensor_isfinite(a: any): {
|
|
20
|
+
mtoc2Tag: string;
|
|
21
|
+
shape: any;
|
|
22
|
+
data: Float64Array<any>;
|
|
23
|
+
isLogical: boolean;
|
|
24
|
+
};
|
|
25
|
+
export function mtoc2_tensor_isnan_complex(a: any): {
|
|
26
|
+
mtoc2Tag: string;
|
|
27
|
+
shape: any;
|
|
28
|
+
data: Float64Array<any>;
|
|
29
|
+
isLogical: boolean;
|
|
30
|
+
};
|
|
31
|
+
export function mtoc2_tensor_isinf_complex(a: any): {
|
|
32
|
+
mtoc2Tag: string;
|
|
33
|
+
shape: any;
|
|
34
|
+
data: Float64Array<any>;
|
|
35
|
+
isLogical: boolean;
|
|
36
|
+
};
|
|
37
|
+
export function mtoc2_tensor_isfinite_complex(a: any): {
|
|
38
|
+
mtoc2Tag: string;
|
|
39
|
+
shape: any;
|
|
40
|
+
data: Float64Array<any>;
|
|
41
|
+
isLogical: boolean;
|
|
42
|
+
};
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
export function mtoc2_sum_complex_all(t: any): any;
|
|
2
|
+
export function mtoc2_sum_complex_dim(t: any, d: any): {
|
|
3
|
+
mtoc2Tag: string;
|
|
4
|
+
shape: any[];
|
|
5
|
+
data: Float64Array<ArrayBuffer>;
|
|
6
|
+
imag: Float64Array<ArrayBuffer>;
|
|
7
|
+
};
|
|
8
|
+
export function mtoc2_prod_complex_all(t: any): any;
|
|
9
|
+
export function mtoc2_prod_complex_dim(t: any, d: any): {
|
|
10
|
+
mtoc2Tag: string;
|
|
11
|
+
shape: any[];
|
|
12
|
+
data: Float64Array<ArrayBuffer>;
|
|
13
|
+
imag: Float64Array<ArrayBuffer>;
|
|
14
|
+
};
|
|
15
|
+
export function mtoc2_mean_complex_all(t: any): any;
|
|
16
|
+
export function mtoc2_mean_complex_dim(t: any, d: any): {
|
|
17
|
+
mtoc2Tag: string;
|
|
18
|
+
shape: any[];
|
|
19
|
+
data: Float64Array<ArrayBuffer>;
|
|
20
|
+
imag: Float64Array<ArrayBuffer>;
|
|
21
|
+
};
|
|
22
|
+
export function mtoc2_min_complex_all(t: any): {
|
|
23
|
+
re: number;
|
|
24
|
+
im: number;
|
|
25
|
+
};
|
|
26
|
+
export function mtoc2_min_complex_dim(t: any, d: any): {
|
|
27
|
+
mtoc2Tag: string;
|
|
28
|
+
shape: any[];
|
|
29
|
+
data: Float64Array<ArrayBuffer>;
|
|
30
|
+
imag: Float64Array<ArrayBuffer>;
|
|
31
|
+
};
|
|
32
|
+
export function mtoc2_max_complex_all(t: any): {
|
|
33
|
+
re: number;
|
|
34
|
+
im: number;
|
|
35
|
+
};
|
|
36
|
+
export function mtoc2_max_complex_dim(t: any, d: any): {
|
|
37
|
+
mtoc2Tag: string;
|
|
38
|
+
shape: any[];
|
|
39
|
+
data: Float64Array<ArrayBuffer>;
|
|
40
|
+
imag: Float64Array<ArrayBuffer>;
|
|
41
|
+
};
|
|
42
|
+
export function mtoc2_any_complex_all(t: any): any;
|
|
43
|
+
export function mtoc2_any_complex_dim(t: any, d: any): {
|
|
44
|
+
mtoc2Tag: string;
|
|
45
|
+
shape: any;
|
|
46
|
+
data: any;
|
|
47
|
+
};
|
|
48
|
+
export function mtoc2_all_complex_all(t: any): any;
|
|
49
|
+
export function mtoc2_all_complex_dim(t: any, d: any): {
|
|
50
|
+
mtoc2Tag: string;
|
|
51
|
+
shape: any;
|
|
52
|
+
data: any;
|
|
53
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
export function mtoc2_sum_all(t: any): any;
|
|
2
|
+
export function mtoc2_sum_dim(t: any, d: any): {
|
|
3
|
+
mtoc2Tag: string;
|
|
4
|
+
shape: any;
|
|
5
|
+
data: any;
|
|
6
|
+
};
|
|
7
|
+
export function mtoc2_prod_all(t: any): any;
|
|
8
|
+
export function mtoc2_prod_dim(t: any, d: any): {
|
|
9
|
+
mtoc2Tag: string;
|
|
10
|
+
shape: any;
|
|
11
|
+
data: any;
|
|
12
|
+
};
|
|
13
|
+
export function mtoc2_mean_all(t: any): any;
|
|
14
|
+
export function mtoc2_mean_dim(t: any, d: any): {
|
|
15
|
+
mtoc2Tag: string;
|
|
16
|
+
shape: any;
|
|
17
|
+
data: any;
|
|
18
|
+
};
|
|
19
|
+
export function mtoc2_min_all(t: any): number;
|
|
20
|
+
export function mtoc2_min_dim(t: any, d: any): {
|
|
21
|
+
mtoc2Tag: string;
|
|
22
|
+
shape: any;
|
|
23
|
+
data: any;
|
|
24
|
+
};
|
|
25
|
+
export function mtoc2_max_all(t: any): number;
|
|
26
|
+
export function mtoc2_max_dim(t: any, d: any): {
|
|
27
|
+
mtoc2Tag: string;
|
|
28
|
+
shape: any;
|
|
29
|
+
data: any;
|
|
30
|
+
};
|
|
31
|
+
export function mtoc2_any_all(t: any): any;
|
|
32
|
+
export function mtoc2_any_dim(t: any, d: any): {
|
|
33
|
+
mtoc2Tag: string;
|
|
34
|
+
shape: any;
|
|
35
|
+
data: any;
|
|
36
|
+
};
|
|
37
|
+
export function mtoc2_all_all(t: any): any;
|
|
38
|
+
export function mtoc2_all_dim(t: any, d: any): {
|
|
39
|
+
mtoc2Tag: string;
|
|
40
|
+
shape: any;
|
|
41
|
+
data: any;
|
|
42
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export function mtoc2_tensor_repmat(input: any, nreps: any, repsIn: any): {
|
|
2
|
+
mtoc2Tag: string;
|
|
3
|
+
shape: any;
|
|
4
|
+
data: any;
|
|
5
|
+
};
|
|
6
|
+
export function mtoc2_tensor_repmat_complex(input: any, nreps: any, repsIn: any): {
|
|
7
|
+
mtoc2Tag: string;
|
|
8
|
+
shape: any[];
|
|
9
|
+
data: Float64Array<ArrayBuffer>;
|
|
10
|
+
imag: Float64Array<ArrayBuffer>;
|
|
11
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export function mtoc2_sort_real(a: any, descending: any): {
|
|
2
|
+
mtoc2Tag: string;
|
|
3
|
+
shape: any;
|
|
4
|
+
data: any;
|
|
5
|
+
};
|
|
6
|
+
export function mtoc2_sort_real_2(a: any, descending: any): {
|
|
7
|
+
v: {
|
|
8
|
+
mtoc2Tag: string;
|
|
9
|
+
shape: any;
|
|
10
|
+
data: any;
|
|
11
|
+
};
|
|
12
|
+
ix: {
|
|
13
|
+
mtoc2Tag: string;
|
|
14
|
+
shape: any;
|
|
15
|
+
data: any;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
export function mtoc2_sort_complex(a: any, descending: any): {
|
|
19
|
+
mtoc2Tag: string;
|
|
20
|
+
shape: any[];
|
|
21
|
+
data: Float64Array<ArrayBuffer>;
|
|
22
|
+
imag: Float64Array<ArrayBuffer>;
|
|
23
|
+
};
|
|
24
|
+
export function mtoc2_sort_complex_2(a: any, descending: any): {
|
|
25
|
+
v: {
|
|
26
|
+
mtoc2Tag: string;
|
|
27
|
+
shape: any[];
|
|
28
|
+
data: Float64Array<ArrayBuffer>;
|
|
29
|
+
imag: Float64Array<ArrayBuffer>;
|
|
30
|
+
};
|
|
31
|
+
ix: {
|
|
32
|
+
mtoc2Tag: string;
|
|
33
|
+
shape: any;
|
|
34
|
+
data: any;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
export function mtoc2_tensor_triu(a: any, k: any): {
|
|
2
|
+
mtoc2Tag: string;
|
|
3
|
+
shape: any;
|
|
4
|
+
data: any;
|
|
5
|
+
};
|
|
6
|
+
export function mtoc2_tensor_tril(a: any, k: any): {
|
|
7
|
+
mtoc2Tag: string;
|
|
8
|
+
shape: any;
|
|
9
|
+
data: any;
|
|
10
|
+
};
|
|
11
|
+
export function mtoc2_tensor_triu_complex(a: any, k: any): {
|
|
12
|
+
mtoc2Tag: string;
|
|
13
|
+
shape: any[];
|
|
14
|
+
data: Float64Array<ArrayBuffer>;
|
|
15
|
+
imag: Float64Array<ArrayBuffer>;
|
|
16
|
+
};
|
|
17
|
+
export function mtoc2_tensor_tril_complex(a: any, k: any): {
|
|
18
|
+
mtoc2Tag: string;
|
|
19
|
+
shape: any[];
|
|
20
|
+
data: Float64Array<ArrayBuffer>;
|
|
21
|
+
imag: Float64Array<ArrayBuffer>;
|
|
22
|
+
};
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
export function mtoc2_tensor_sqrt_complex(a: any): {
|
|
2
|
+
mtoc2Tag: string;
|
|
3
|
+
shape: any[];
|
|
4
|
+
data: Float64Array<ArrayBuffer>;
|
|
5
|
+
imag: Float64Array<ArrayBuffer>;
|
|
6
|
+
};
|
|
7
|
+
export function mtoc2_tensor_exp_complex(a: any): {
|
|
8
|
+
mtoc2Tag: string;
|
|
9
|
+
shape: any[];
|
|
10
|
+
data: Float64Array<ArrayBuffer>;
|
|
11
|
+
imag: Float64Array<ArrayBuffer>;
|
|
12
|
+
};
|
|
13
|
+
export function mtoc2_tensor_log_complex(a: any): {
|
|
14
|
+
mtoc2Tag: string;
|
|
15
|
+
shape: any[];
|
|
16
|
+
data: Float64Array<ArrayBuffer>;
|
|
17
|
+
imag: Float64Array<ArrayBuffer>;
|
|
18
|
+
};
|
|
19
|
+
export function mtoc2_tensor_log2_complex(a: any): {
|
|
20
|
+
mtoc2Tag: string;
|
|
21
|
+
shape: any[];
|
|
22
|
+
data: Float64Array<ArrayBuffer>;
|
|
23
|
+
imag: Float64Array<ArrayBuffer>;
|
|
24
|
+
};
|
|
25
|
+
export function mtoc2_tensor_log10_complex(a: any): {
|
|
26
|
+
mtoc2Tag: string;
|
|
27
|
+
shape: any[];
|
|
28
|
+
data: Float64Array<ArrayBuffer>;
|
|
29
|
+
imag: Float64Array<ArrayBuffer>;
|
|
30
|
+
};
|
|
31
|
+
export function mtoc2_tensor_sin_complex(a: any): {
|
|
32
|
+
mtoc2Tag: string;
|
|
33
|
+
shape: any[];
|
|
34
|
+
data: Float64Array<ArrayBuffer>;
|
|
35
|
+
imag: Float64Array<ArrayBuffer>;
|
|
36
|
+
};
|
|
37
|
+
export function mtoc2_tensor_cos_complex(a: any): {
|
|
38
|
+
mtoc2Tag: string;
|
|
39
|
+
shape: any[];
|
|
40
|
+
data: Float64Array<ArrayBuffer>;
|
|
41
|
+
imag: Float64Array<ArrayBuffer>;
|
|
42
|
+
};
|
|
43
|
+
export function mtoc2_tensor_tan_complex(a: any): {
|
|
44
|
+
mtoc2Tag: string;
|
|
45
|
+
shape: any[];
|
|
46
|
+
data: Float64Array<ArrayBuffer>;
|
|
47
|
+
imag: Float64Array<ArrayBuffer>;
|
|
48
|
+
};
|
|
49
|
+
export function mtoc2_tensor_atan_complex(a: any): {
|
|
50
|
+
mtoc2Tag: string;
|
|
51
|
+
shape: any[];
|
|
52
|
+
data: Float64Array<ArrayBuffer>;
|
|
53
|
+
imag: Float64Array<ArrayBuffer>;
|
|
54
|
+
};
|
|
55
|
+
export function mtoc2_tensor_sinh_complex(a: any): {
|
|
56
|
+
mtoc2Tag: string;
|
|
57
|
+
shape: any[];
|
|
58
|
+
data: Float64Array<ArrayBuffer>;
|
|
59
|
+
imag: Float64Array<ArrayBuffer>;
|
|
60
|
+
};
|
|
61
|
+
export function mtoc2_tensor_cosh_complex(a: any): {
|
|
62
|
+
mtoc2Tag: string;
|
|
63
|
+
shape: any[];
|
|
64
|
+
data: Float64Array<ArrayBuffer>;
|
|
65
|
+
imag: Float64Array<ArrayBuffer>;
|
|
66
|
+
};
|
|
67
|
+
export function mtoc2_tensor_tanh_complex(a: any): {
|
|
68
|
+
mtoc2Tag: string;
|
|
69
|
+
shape: any[];
|
|
70
|
+
data: Float64Array<ArrayBuffer>;
|
|
71
|
+
imag: Float64Array<ArrayBuffer>;
|
|
72
|
+
};
|
|
73
|
+
export function mtoc2_tensor_floor_complex(a: any): {
|
|
74
|
+
mtoc2Tag: string;
|
|
75
|
+
shape: any[];
|
|
76
|
+
data: Float64Array<ArrayBuffer>;
|
|
77
|
+
imag: Float64Array<ArrayBuffer>;
|
|
78
|
+
};
|
|
79
|
+
export function mtoc2_tensor_ceil_complex(a: any): {
|
|
80
|
+
mtoc2Tag: string;
|
|
81
|
+
shape: any[];
|
|
82
|
+
data: Float64Array<ArrayBuffer>;
|
|
83
|
+
imag: Float64Array<ArrayBuffer>;
|
|
84
|
+
};
|
|
85
|
+
export function mtoc2_tensor_round_complex(a: any): {
|
|
86
|
+
mtoc2Tag: string;
|
|
87
|
+
shape: any[];
|
|
88
|
+
data: Float64Array<ArrayBuffer>;
|
|
89
|
+
imag: Float64Array<ArrayBuffer>;
|
|
90
|
+
};
|
|
91
|
+
export function mtoc2_tensor_fix_complex(a: any): {
|
|
92
|
+
mtoc2Tag: string;
|
|
93
|
+
shape: any[];
|
|
94
|
+
data: Float64Array<ArrayBuffer>;
|
|
95
|
+
imag: Float64Array<ArrayBuffer>;
|
|
96
|
+
};
|
|
97
|
+
export function mtoc2_tensor_sign_complex(a: any): {
|
|
98
|
+
mtoc2Tag: string;
|
|
99
|
+
shape: any[];
|
|
100
|
+
data: Float64Array<ArrayBuffer>;
|
|
101
|
+
imag: Float64Array<ArrayBuffer>;
|
|
102
|
+
};
|
|
103
|
+
export function mtoc2_tensor_conj_complex(a: any): {
|
|
104
|
+
mtoc2Tag: string;
|
|
105
|
+
shape: any[];
|
|
106
|
+
data: Float64Array<ArrayBuffer>;
|
|
107
|
+
imag: Float64Array<ArrayBuffer>;
|
|
108
|
+
};
|
|
109
|
+
export function mtoc2_tensor_imag_complex(a: any): {
|
|
110
|
+
mtoc2Tag: string;
|
|
111
|
+
shape: any;
|
|
112
|
+
data: any;
|
|
113
|
+
};
|
|
114
|
+
export function mtoc2_tensor_real_complex(a: any): {
|
|
115
|
+
mtoc2Tag: string;
|
|
116
|
+
shape: any;
|
|
117
|
+
data: any;
|
|
118
|
+
};
|
|
119
|
+
export function mtoc2_tensor_angle_complex(a: any): {
|
|
120
|
+
mtoc2Tag: string;
|
|
121
|
+
shape: any;
|
|
122
|
+
data: any;
|
|
123
|
+
};
|
|
124
|
+
export function mtoc2_tensor_abs_complex(a: any): {
|
|
125
|
+
mtoc2Tag: string;
|
|
126
|
+
shape: any;
|
|
127
|
+
data: any;
|
|
128
|
+
};
|