| Modifier and Type | Method and Description |
|---|---|
SDVariable |
DifferentialFunctionFactory.mmul(SDVariable x,
SDVariable y,
MMulTranspose mMulTranspose) |
List<SDVariable> |
DifferentialFunctionFactory.mmulBp(SDVariable x,
SDVariable y,
SDVariable eps,
MMulTranspose mt) |
| Modifier and Type | Method and Description |
|---|---|
SDVariable |
SDVariable.mmul(String name,
SDVariable other,
MMulTranspose mMulTranspose)
Matrix multiplication: out = mmul(this,other)
|
| Modifier and Type | Method and Description |
|---|---|
SDVariable |
SDBaseOps.mmul(SDVariable x,
SDVariable y,
MMulTranspose transpose)
Matrix multiplication: out = mmul(x,y)
Supports specifying a MMulTranspose argument to perform operation such as mmul(a^T, b), etc. |
SDVariable |
SDBaseOps.mmul(String name,
SDVariable x,
SDVariable y,
MMulTranspose transpose)
Matrix multiplication: out = mmul(x,y)
Supports specifying a MMulTranspose argument to perform operation such as mmul(a^T, b), etc. |
| Modifier and Type | Method and Description |
|---|---|
static MMulTranspose |
MMulTranspose.allFalse()
Returns the default transpose
where all are false
|
| Modifier and Type | Method and Description |
|---|---|
INDArray |
INDArray.mmul(INDArray other,
INDArray result,
MMulTranspose mMulTranspose)
Perform an copy matrix multiplication
|
INDArray |
BaseSparseNDArrayCOO.mmul(INDArray other,
INDArray result,
MMulTranspose mMulTranspose) |
INDArray |
BaseNDArray.mmul(INDArray other,
INDArray result,
MMulTranspose mMulTranspose) |
INDArray |
INDArray.mmul(INDArray other,
MMulTranspose mMulTranspose)
Perform a copy matrix multiplication
|
INDArray |
BaseSparseNDArrayCOO.mmul(INDArray other,
MMulTranspose mMulTranspose) |
INDArray |
BaseNDArray.mmul(INDArray other,
MMulTranspose mMulTranspose) |
INDArray |
INDArray.mmuli(INDArray other,
INDArray result,
MMulTranspose transpose)
Perform an in place matrix multiplication
|
INDArray |
BaseSparseNDArrayCOO.mmuli(INDArray other,
INDArray result,
MMulTranspose transpose) |
INDArray |
BaseNDArray.mmuli(INDArray other,
INDArray result,
MMulTranspose transpose) |
INDArray |
INDArray.mmuli(INDArray other,
MMulTranspose transpose)
Perform an copy matrix multiplication
|
INDArray |
BaseSparseNDArrayCOO.mmuli(INDArray other,
MMulTranspose transpose) |
INDArray |
BaseNDArray.mmuli(INDArray other,
MMulTranspose transpose) |
| Modifier and Type | Field and Description |
|---|---|
protected MMulTranspose |
TensorMmul.mMulTranspose |
protected MMulTranspose |
MmulBp.mt |
protected MMulTranspose |
Mmul.mt |
| Constructor and Description |
|---|
Mmul(INDArray x,
INDArray y,
INDArray z,
MMulTranspose mt) |
Mmul(SameDiff sameDiff,
SDVariable i_v1,
SDVariable i_v2,
MMulTranspose mt) |
MmulBp(INDArray x,
INDArray y,
INDArray eps,
INDArray dldx,
INDArray dldy,
MMulTranspose mt) |
MmulBp(SameDiff sameDiff,
SDVariable x,
SDVariable y,
SDVariable eps,
MMulTranspose mt) |
TensorMmul(SameDiff sameDiff,
SDVariable i_v1,
SDVariable i_v2,
int[][] dimensions,
MMulTranspose mMulTranspose) |
Copyright © 2019. All rights reserved.