Home
last modified time | relevance | path

Searched refs:allow_negative_index (Results 1 – 4 of 4) sorted by relevance

/third_party/mindspore/mindspore/numpy/
Darray_ops.py1807 def _check_indices(dims, indices, mode, allow_negative_index=True): argument
1811 if not allow_negative_index:
2183 a = _check_indices(F.shape(choices)[0], a, mode, allow_negative_index=False)
/third_party/mindspore/mindspore/ops/composite/multitype_ops/
D_compile_utils.py992 def check_indices(dims, indices, mode, allow_negative_index=True): argument
996 if not allow_negative_index:
/third_party/mindspore/mindspore/_extends/parse/
Dstandard_method.py971 a = compile_utils.check_indices(choices.shape[0], a, mode, allow_negative_index=False)
/third_party/mindspore/mindspore/common/
Dtensor.py1599 …ensor_operator_registry.get('check_indices')(choices.shape[0], a, mode, allow_negative_index=False)