module onnxrt.ops_cpu._op_numpy_helper#

Short summary#

module mlprodict.onnxrt.ops_cpu._op_numpy_helper

numpy redundant functions.

source on GitHub

Functions#

function

truncated documentation

_numpy_dot_inplace_left

Subpart of @see fn numpy_dot_inplace.

_numpy_dot_inplace_right

Subpart of @see fn numpy_dot_inplace.

numpy_dot_inplace

Implements a dot product, deals with inplace information. See numpy.dot.

numpy_matmul_inplace

Implements a matmul product, deals with inplace information. See numpy.matmul. Inplace computation does …

Documentation#

numpy redundant functions.

source on GitHub

mlprodict.onnxrt.ops_cpu._op_numpy_helper._numpy_dot_inplace_left(a, b)#

Subpart of @see fn numpy_dot_inplace.

mlprodict.onnxrt.ops_cpu._op_numpy_helper._numpy_dot_inplace_right(a, b)#

Subpart of @see fn numpy_dot_inplace.

mlprodict.onnxrt.ops_cpu._op_numpy_helper.numpy_dot_inplace(inplaces, a, b)#

Implements a dot product, deals with inplace information. See numpy.dot.

source on GitHub

mlprodict.onnxrt.ops_cpu._op_numpy_helper.numpy_matmul_inplace(inplaces, a, b)#

Implements a matmul product, deals with inplace information. See numpy.matmul. Inplace computation does not work well as modifying one of the container modifies the results. This part still needs to be improves.

source on GitHub