MCPcopy Create free account
hub / github.com/PaddlePaddle/Paddle / input

Method input

python/paddle/base/framework.py:3732–3745  ·  view source on GitHub ↗

r""" Get the input arguments according to the input parameter name. Args: name(str): The input parameter name. Returns: list, return the list of argument names that associated with \ the specific parameter name.

(self, name)

Source from the content-addressed store, hash-verified

3730 return self.desc.type()
3731
3732 def input(self, name):
3733 r"""
3734
3735 Get the input arguments according to the input parameter name.
3736
3737 Args:
3738 name(str): The input parameter name.
3739
3740 Returns:
3741 list, return the list of argument names that associated with \
3742 the specific parameter name.
3743
3744 """
3745 return self.desc.input(name)
3746
3747 def _rename_input(self, old_name, new_name):
3748 """

Callers 15

_lowerFunction · 0.95
_to_readable_codeMethod · 0.95
_get_op_input_var_namesFunction · 0.45
_get_input_name_indexFunction · 0.45
applyMethod · 0.45
_quant_conv1dMethod · 0.45
applyMethod · 0.45
_replace_opMethod · 0.45
applyMethod · 0.45

Calls

no outgoing calls

Tested by 6

_find_opMethod · 0.36
test_op_desc_creationMethod · 0.36
test_mult_inputMethod · 0.36
test_op_descMethod · 0.36