Home
last modified time | relevance | path

Searched defs:full_matrices (Results 1 – 11 of 11) sorted by relevance

/third_party/mindspore/mindspore-src/source/tests/st/dyn_shape_dev/
Dtest_qr_dyn_shape.py24 def qr_forward_func(x, full_matrices): argument
29 def qr_backward_func(x, full_matrices): argument
74 def qr_(x, full_matrices): argument
/third_party/mindspore/mindspore-src/source/mindspore/core/ops/
Dsvd.cc52 auto full_matrices = GetValue<bool>(prim->GetAttr(kAttrFullMatrices)); in SvdInferShape() local
108 void Svd::Init(const bool full_matrices, const bool compute_uv) { in Init()
113 void Svd::set_full_matrices(const bool full_matrices) { in set_full_matrices()
119 bool Svd::full_matrices() const { return GetValue<bool>(GetAttr(kAttrFullMatrices)); } in full_matrices() function in mindspore::ops::Svd
/third_party/mindspore/mindspore-src/source/tests/ut/cpp/ops/
Dtest_ops_qr.cc36 ValuePtr full_matrices; member
60 auto full_matrices = shape_param.full_matrices->ToAbstract(); in TEST_P() local
/third_party/mindspore/mindspore-src/source/mindspore/python/mindspore/ops/operations/
Dlinalg_ops.py72 def __init__(self, full_matrices=False, compute_uv=True): argument
/third_party/mindspore/mindspore-src/source/tests/st/ops/gpu/
Dtest_svd_op.py43 def __init__(self, full_matrices=False, compute_uv=True): argument
/third_party/mindspore/mindspore-src/source/tests/st/ops/cpu/
Dtest_svd_op.py44 def __init__(self, full_matrices=False, compute_uv=True): argument
/third_party/mindspore/mindspore-src/source/mindspore/python/mindspore/ops/function/
Dlinalg_func.py184 def svd(input, full_matrices=False, compute_uv=True): argument
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/plugin/device/ascend/kernel/aicpu/aicpu_ops/cpu_kernel/ms_kernel/
Dqr.cc87 bool full_matrices = attr_full_matrices->GetBool(); in QrCompute() local
/third_party/mindspore/mindspore-src/source/mindspore/ccsrc/plugin/device/ascend/kernel/aicpu/aicpu_ops/customize/op_proto/
Dlinalg_ops_proto.cc427 auto full_matrices = op.get_attr_full_matrices(); in IMPLEMT_INFERFUNC() local
/third_party/mindspore/mindspore-src/source/mindspore/core/ops/auto_generate/
Dgen_lite_ops.cc1517 void Qr::set_full_matrices(const bool &full_matrices) { (void)this->AddAttr("full_matri… in set_full_matrices()
/third_party/mindspore/mindspore-src/source/mindspore/python/mindspore/common/
Dtensor.py3548 def svd(self, full_matrices=False, compute_uv=True): argument