Home
last modified time | relevance | path

Searched refs:_matmul (Results 1 – 25 of 26) sorted by relevance

12

/dports/science/py-chainer/chainer-7.8.0/chainer/functions/normalization/
H A Ddecorrelated_batch_normalization.py33 def _matmul(a, b, xp): function
98 cov = _matmul(
103 U = _matmul(
122 projection = _matmul(self.eigvectors, U, xp)
171 F_c = _matmul(
178 _matmul(V, F_c.transpose(0, 2, 1), xp)
179 + _matmul(_matmul(V_sqrt, F_c, xp), V_sqrt, xp)
182 R = gy_hat_pca - f + _matmul(
184 gx_hat = _matmul(
185 _matmul(R.transpose(0, 2, 1), V_invsqrt, xp),
[all …]
/dports/science/qiskit-aer/qiskit-aer-0.5.2/qiskit/providers/aer/noise/errors/
H A Dreadout_error.py187 return self._matmul(other)
188 return self._matmul(other, left_multiply=True)
203 return self._matmul(other)
279 def _matmul(self, other, left_multiply=False): member in ReadoutError
H A Dquantum_error.py319 return self._matmul(other, left_multiply=False)
320 return self._matmul(other, left_multiply=True)
335 return self._matmul(other, left_multiply=False)
384 def _matmul(self, other, left_multiply=False): member in QuantumError
/dports/math/py-cvxpy/cvxpy-1.1.17/cvxpy/reductions/solvers/conic_solvers/
H A Dconic_solver.py39 self._matmul = lambda X: linear_op @ X
41 self._matmul = linear_op
45 return self._matmul(X)
/dports/math/py-numpy/numpy-1.20.3/numpy/core/src/umath/
H A Dmatmul.h.src9 @TYPE@_matmul(char **args, npy_intp const *dimensions, npy_intp const *steps, void *NPY_UNUSED(func…
H A Dmatmul.c.src398 @TYPE@_matmul(char **args, npy_intp const *dimensions, npy_intp const *steps, void *NPY_UNUSED(func…
/dports/science/py-chainer/chainer-7.8.0/chainer/functions/noise/
H A Dsimplified_dropconnect.py16 def _matmul(a, b, xp): function
88 y = _matmul(W, x[:, :, None], xp)
/dports/science/py-chainer/chainer-7.8.0/chainer/functions/math/
H A Dmatmul.py41 def _matmul(a, b, transa=False, transb=False, transout=False): function
129 y = _matmul(a, b, self.transa, self.transb, self.transc)
233 return _matmul(a, b, transa, transb, transout)
/dports/converters/py-zfec/zfec-1.5.5/zfec/
H A Dfec.c210 _matmul(gf * a, gf * b, gf * c, unsigned n, unsigned k, unsigned m) { in _matmul() function
457 _matmul(tmp_m + k * k, tmp_m, retval->enc_matrix + k * k, n - k, k, k); in fec_new()
/dports/science/py-chainer/chainer-7.8.0/chainer/functions/connection/
H A Dconvolution_2d.py28 def _matmul(a, b): function
276 y = _matmul(W, x).astype(x.dtype, copy=False)
464 gW = _matmul(gy, x).astype(self.W_dtype, copy=False)
H A Dconvolution_nd.py121 y = convolution_2d._matmul(W, x).astype(x.dtype, copy=False)
287 gW = convolution_2d._matmul(gy, x).astype(self.W_dtype, copy=False)
H A Ddeconvolution_nd.py112 col = convolution_2d._matmul(W, x).astype(x.dtype, copy=False)
H A Ddeconvolution_2d.py260 col = convolution_2d._matmul(W, x).astype(x.dtype, copy=False)
/dports/misc/tvm/incubator-tvm-0.6.1/nnvm/python/nnvm/
H A Dto_relay.py308 def _matmul(children, attrs, odtype='float32'): function
416 'matmul': _matmul,
/dports/misc/py-tvm/incubator-tvm-0.6.1/nnvm/python/nnvm/
H A Dto_relay.py308 def _matmul(children, attrs, odtype='float32'): function
416 'matmul': _matmul,
/dports/math/py-rpy2/rpy2-3.4.5/rpy2/robjects/
H A Dvectors.py1071 _matmul = baseenv_ri['%*%'] variable in Matrix
1150 res = self._matmul(self, conversion.py2rpy(x))
/dports/misc/tvm/incubator-tvm-0.6.1/nnvm/python/nnvm/frontend/
H A Dtensorflow.py374 def _matmul(): function
934 'MatMul' : _matmul(),
/dports/misc/py-tvm/incubator-tvm-0.6.1/nnvm/python/nnvm/frontend/
H A Dtensorflow.py374 def _matmul(): function
934 'MatMul' : _matmul(),
/dports/misc/mxnet/incubator-mxnet-1.9.0/3rdparty/tvm/python/tvm/relay/frontend/
H A Dpytorch.py1663 def _matmul(prelude): function
2577 "aten::matmul": _matmul(prelude),
2578 "aten::bmm": _matmul(prelude),
2651 "aten::mm": _matmul(prelude),
H A Dtensorflow.py834 def _matmul(): function
2289 "MatMul": _matmul(),
/dports/misc/py-tvm/incubator-tvm-0.6.1/python/tvm/relay/frontend/
H A Dtensorflow.py477 def _matmul(): function
1474 'MatMul' : _matmul(),
/dports/misc/tvm/incubator-tvm-0.6.1/python/tvm/relay/frontend/
H A Dtensorflow.py477 def _matmul(): function
1474 'MatMul' : _matmul(),
/dports/devel/py-dask/dask-2021.11.2/dask/array/
H A Droutines.py335 def _matmul(a, b): function
384 _matmul,
/dports/math/py-jax/jax-0.2.9/jax/
H A Dcore.py545 def __matmul__(self, other): return self.aval._matmul(self, other)
/dports/science/nwchem-data/nwchem-7.0.2-release/doc/prog/
H A Dga.tex245 \item {\tt ga\_matmul\_patch(transa, transb, alpha, beta, g\_a, ailo, aihi,

12