Home
last modified time | relevance | path

Searched refs:funclist (Results 1 – 3 of 3) sorted by relevance

/third_party/mindspore/tests/st/numpy_native/
Dtest_array_ops.py1569 funclist = [lambda x, offset=0: x - offset, lambda x, offset=0: x, lambda x, offset=0: x*offset]
1570 mnp_res = mnp.piecewise(mnp_x, mnp_condlist, funclist, offset=2)
1571 onp_res = onp.piecewise(x, condlist, funclist, offset=2)
1574 funclist = [-1, 0, 1]
1575 mnp_res = mnp.piecewise(mnp_x, mnp_condlist, funclist)
1576 onp_res = onp.piecewise(x, condlist, funclist)
1582 funclist = [lambda x: x - 2, lambda x: x - 1, lambda x: x*2]
1583 mnp_res = mnp.piecewise(mnp_x, mnp_condlist, funclist)
1584 onp_res = onp.piecewise(x, condlist, funclist)
1589 funclist = [lambda x: x - 1]
[all …]
/third_party/mindspore/mindspore/numpy/
Darray_ops.py2331 def piecewise(x, condlist, funclist, *args, **kw): argument
2375 choicelist = funclist
2376 if isinstance(funclist, (tuple, list)):
2377 if _callable(x, funclist[0]):
2379 for func in funclist:
2386 n2 = len(funclist)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Target/
DTargetItinerary.td152 class ComboFuncData<FuncUnit ComboFunc, list<FuncUnit> funclist> {
154 list<FuncUnit> FuncList = funclist;