Home
last modified time | relevance | path

Searched refs:tril (Results 1 – 10 of 10) sorted by relevance

/third_party/mindspore/tests/ut/python/nn/
Dtest_tril.py34 tril = nn.Tril()
35 return tril(self.value, 0)
49 tril = nn.Tril()
50 return tril(self.value, 1)
64 tril = nn.Tril()
65 return tril(self.value, -1)
78 tril = nn.Tril()
79 return tril(x, 0)
91 tril = nn.Tril()
92 return tril(x, 1)
[all …]
/third_party/flutter/skia/third_party/externals/icu/source/data/locales/
Dro.txt146 few{"0 tril'.' ¤"}
147 one{"0 tril'.' ¤"}
148 other{"0 tril'.' ¤"}
151 few{"00 tril'.' ¤"}
152 one{"00 tril'.' ¤"}
153 other{"00 tril'.' ¤"}
156 few{"000 tril'.' ¤"}
157 one{"000 tril'.' ¤"}
158 other{"000 tril'.' ¤"}
208 few{"0 tril'.'"}
[all …]
/third_party/icu/icu4c/source/data/locales/
Dro.txt147 few{"0 tril'.' ¤"}
148 one{"0 tril'.' ¤"}
149 other{"0 tril'.' ¤"}
152 few{"00 tril'.' ¤"}
153 one{"00 tril'.' ¤"}
154 other{"00 tril'.' ¤"}
157 few{"000 tril'.' ¤"}
158 one{"000 tril'.' ¤"}
159 other{"000 tril'.' ¤"}
209 few{"0 tril'.'"}
[all …]
/third_party/skia/third_party/externals/icu/source/data/locales/
Dro.txt147 few{"0 tril'.' ¤"}
148 one{"0 tril'.' ¤"}
149 other{"0 tril'.' ¤"}
152 few{"00 tril'.' ¤"}
153 one{"00 tril'.' ¤"}
154 other{"00 tril'.' ¤"}
157 few{"000 tril'.' ¤"}
158 one{"000 tril'.' ¤"}
159 other{"000 tril'.' ¤"}
209 few{"0 tril'.'"}
[all …]
/third_party/mindspore/tests/st/numpy_native/
Dtest_array_creations.py528 match_array(mnp.tril(x).asnumpy(), onp.tril(x.asnumpy()))
529 match_array(mnp.tril(x, -1).asnumpy(), onp.tril(x.asnumpy(), -1))
534 match_array(mnp.tril(x).asnumpy(), onp.tril(x.asnumpy()))
535 match_array(mnp.tril(x, 25).asnumpy(), onp.tril(x.asnumpy(), 25))
/third_party/mindspore/mindspore/numpy/
D__init__.py39 ones_like, zeros_like, full_like, diagonal, tril, triu,
Darray_creations.py26 from ..nn.layer.basic import tril as nn_tril
1014 def tril(m, k=0): function
/third_party/mindspore/mindspore/nn/layer/
Dbasic.py999 def tril(x_shape, x_dtype, k): function
1002 mask = np.tril(np.ones(x_shape), k)
1080 assist = tril(x.shape, self.dtype(x), k)
/third_party/mindspore/mindspore/parallel/nn/
Dlayers.py543 self.local_mask_triangle = Tensor(np.tril(local_ones), mstype.float32)
Dtransformer.py444 self.lower_triangle_mask = Tensor(np.tril(ones), mstype.float32)
791 …self.attention_mask = Tensor(np.tril(np.ones(shape=(self.seq_length, self.seq_length))), mstype.in…