module onnxrt.ops_cpu.op_complex_abs#

Inheritance diagram of mlprodict.onnxrt.ops_cpu.op_complex_abs

Short summary#

module mlprodict.onnxrt.ops_cpu.op_complex_abs

Runtime operator.

source on GitHub

Classes#

class

truncated documentation

ComplexAbs

ComplexAbs (mlprodict) ====================== Version Onnx name: ComplexAbs

ComplexAbsSchema

Defines a schema for operators added in this package such as ComplexAbs.

Properties#

property

truncated documentation

args_default

Returns the list of arguments as well as the list of parameters with the default values (close to the signature). …

args_default_modified

Returns the list of modified parameters.

args_mandatory

Returns the list of optional arguments.

args_optional

Returns the list of optional arguments.

atts_value

Returns all parameters in a dictionary.

Methods#

method

truncated documentation

__init__

__init__

_find_custom_operator_schema

_infer_shapes

_infer_types

_run

to_python

Documentation#

Runtime operator.

source on GitHub

class mlprodict.onnxrt.ops_cpu.op_complex_abs.ComplexAbs(mlprodict)#

Bases: mlprodict.onnxrt.ops_cpu._op.OpRun

Version

Onnx name: ComplexAbs

This version of the operator has been available since version of domain mlprodict.

Runtime implementation: ComplexAbs

Parameters
  • onnx_nodeonnx node

  • desc – internal representation

  • expected_attributes – expected attributes for this node

  • options – runtime options

source on GitHub

__init__(onnx_node, desc=None, **options)#
Parameters
  • onnx_nodeonnx node

  • desc – internal representation

  • expected_attributes – expected attributes for this node

  • options – runtime options

source on GitHub

_find_custom_operator_schema(op_name)#
_infer_shapes(x)#

Should be overwritten.

source on GitHub

_infer_types(x)#

Should be overwritten.

source on GitHub

_run(x)#

Should be overwritten.

source on GitHub

to_python(inputs)#

Returns a python code equivalent to this operator.

Parameters

inputs – inputs name

Returns

imports, python code, both as strings

source on GitHub

class mlprodict.onnxrt.ops_cpu.op_complex_abs.ComplexAbsSchema#

Bases: mlprodict.onnxrt.ops_cpu._new_ops.OperatorSchema

Defines a schema for operators added in this package such as ComplexAbs.

source on GitHub

__init__()#