/third_party/mindspore/mindspore/_extends/parallel_compile/tbe_compiler/ |
D | helper.py | 19 from .tbe_common import get_args, get_built_in_impl_path, TBEException 59 inputs_args = get_args(kernel_info['op_info'], 'inputs') 60 outputs_args = get_args(kernel_info['op_info'], 'outputs') 61 attrs_args = get_args(kernel_info['op_info'], 'attrs') 112 inputs_args = get_args(kernel_info['op_info'], 'inputs') 113 outputs_args = get_args(kernel_info['op_info'], 'outputs') 114 attrs_args = get_args(kernel_info['op_info'], 'attrs')
|
D | compiler.py | 25 from tbe_common import check_kernel_info, get_args, get_built_in_impl_path 93 inputs_args = get_args(kernel_info['op_info'], 'inputs') 94 outputs_args = get_args(kernel_info['op_info'], 'outputs') 95 attrs_args = get_args(kernel_info['op_info'], 'attrs')
|
D | tbe_common.py | 124 def get_args(op_info, arg_type): function
|
/third_party/mindspore/mindspore/nn/probability/transforms/ |
D | transform_bnn.py | 143 def transform_to_bnn_layer(self, dnn_layer_type, bnn_layer_type, get_args=None, add_args=None): argument 185 if not get_args: 187 get_args = self._get_dense_args 189 get_args = self._get_conv_args 194 …self._replace_specified_dnn_layers(self.backbone, dnn_layer_type, bnn_layer_type, get_args, add_ar… 254 def _replace_specified_dnn_layers(self, backbone, dnn_layer, bnn_layer, get_args, add_args): argument 258 args = get_args(cell) 262 self._replace_specified_dnn_layers(cell, dnn_layer, bnn_layer, get_args, add_args)
|
/third_party/boost/boost/hof/ |
D | arg.hpp | 86 constexpr auto get_args(Ts&&... xs) BOOST_HOF_RETURNS 97 boost::hof::detail::get_args<N>(BOOST_HOF_FORWARD(Ts)(xs)...) 118 boost::hof::detail::get_args<N>(BOOST_HOF_FORWARD(Ts)(xs)...)
|
/third_party/glib/gobject/ |
D | glib-genmarshal.in | 640 get_args = [x for x in params if IN_ARGS[x].get('getter', None) is not None] 653 for idx, in_arg in enumerate(get_args): 667 for idx, arg in enumerate(get_args): 670 if get_args: 676 for idx, arg in enumerate(get_args): 702 body += [' g_return_if_fail (n_param_values == {:d});'.format(len(get_args) + 1)] 737 for idx, arg in enumerate(get_args): 740 for idx, arg in enumerate(get_args): 747 boxed_args = [x for x in get_args if IN_ARGS[x].get('box', None) is not None] 751 for idx, arg in enumerate(get_args):
|
/third_party/mesa3d/src/util/ |
D | xxd.py | 30 def get_args(): function 94 args = get_args()
|
/third_party/boost/libs/hof/doc/html/_sources/include/boost/hof/ |
D | arg.hpp.txt | 86 constexpr auto get_args(Ts&&... xs) BOOST_HOF_RETURNS 97 boost::hof::detail::get_args<N>(BOOST_HOF_FORWARD(Ts)(xs)...) 118 boost::hof::detail::get_args<N>(BOOST_HOF_FORWARD(Ts)(xs)...)
|
/third_party/jerryscript/tools/ |
D | heaplimit_measure.py | 37 def get_args(): function 119 main(get_args())
|
/third_party/boost/boost/type_erasure/ |
D | check_match.hpp | 164 struct get_args; 167 struct get_args<R(T...)> { typedef ::boost::mp11::mp_list<T...> type; }; struct 170 using get_args_t = typename get_args<Sig>::type;
|
/third_party/mindspore/mindspore/_extends/parse/ |
D | __init__.py | 23 … get_args, get_args_default_values, get_ast_namespace_symbol, get_operation_namespace_symbol,
|
D | parser.py | 483 def get_args(node): function
|
/third_party/curl/src/ |
D | tool_paramhlp.h | 46 CURLcode get_args(struct OperationConfig *config, const size_t i);
|
D | tool_paramhlp.c | 552 CURLcode get_args(struct OperationConfig *config, const size_t i) in get_args() function
|
/third_party/python/Lib/test/ |
D | test_typing.py | 18 from typing import get_origin, get_args 198 self.assertEqual(get_args(X | "x"), (X, ForwardRef("x"))) 199 self.assertEqual(get_args("x" | X), (ForwardRef("x"), X)) 3310 self.assertEqual(get_args(C[int]), (int,)) 3311 self.assertEqual(get_args(C[T]), (T,)) 3312 self.assertEqual(get_args(int), ()) 3313 self.assertEqual(get_args(ClassVar[int]), (int,)) 3314 self.assertEqual(get_args(Union[int, str]), (int, str)) 3315 self.assertEqual(get_args(Literal[42, 43]), (42, 43)) 3316 self.assertEqual(get_args(Final[List[int]]), (List[int],)) [all …]
|
D | test_getargs2.py | 551 from _testcapi import get_args 553 ret = get_args(1, 2) 557 ret = get_args(1, *(2, 3)) 561 ret = get_args(*[1, 2]) 565 ret = get_args(*TupleSubclass([1, 2])) 569 ret = get_args() 573 ret = get_args(*())
|
D | test_types.py | 838 assert typing.get_args(typing.get_type_hints(forward_after)['x']) == (int, Forward) 839 assert typing.get_args(typing.get_type_hints(forward_before)['x']) == (int, Forward)
|
/third_party/musl/tools/api_cmp_tool/ |
D | compare.py | 14 def get_args(): function 323 get_args()
|
/third_party/python/Parser/ |
D | asdl_c.py | 289 def get_args(self, fields): member in PrototypeVisitor 317 args = self.get_args(cons.fields) 318 attrs = self.get_args(attrs) 334 self.get_args(prod.fields), 335 self.get_args(prod.attributes),
|
/third_party/mindspore/mindspore/nn/probability/ |
D | README.md | 410 def transform_to_bnn_layer(self, dnn_layer, bnn_layer, get_args=None, add_args=None): 419 get_args (dict): The arguments gotten from the DNN layer. Default: None. 427 …er to be transformed to. The value should correspond to dnn_layer. Arg `get_args` and `add_args` s…
|
/third_party/boost/tools/build/src/tools/ |
D | doxproc.py | 36 def get_args( argv = sys.argv[1:] ): function 859 main( **get_args() )
|
/third_party/python/Misc/NEWS.d/ |
D | 3.9.0a6.rst | 291 :func:`typing.get_args` now always returns an empty tuple for special 301 Functions :func:`typing.get_origin`, :func:`typing.get_args` and
|
D | 3.10.0a4.rst | 256 :func:`typing.get_args` and :func:`typing.get_origin` now support :pep:`604`
|
/third_party/python/Doc/library/ |
D | typing.rst | 2062 .. function:: get_args(tp) 2077 assert get_args(Dict[int, str]) == (int, str) 2080 assert get_args(Union[int, str]) == (int, str)
|
/third_party/python/Lib/ |
D | typing.py | 1907 def get_args(tp): function
|