This is an automated email from the ASF dual-hosted git repository.
ptrendx pushed a commit to branch v1.7.x
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git
The following commit(s) were added to refs/heads/v1.7.x by this push:
new 80baab8 [1.7] Pass args fix3 (#18237)
80baab8 is described below
commit 80baab83775d54b1805a72254992a0fa87bd2f49
Author: Sam Skalicky <[email protected]>
AuthorDate: Wed May 6 12:15:56 2020 -0700
[1.7] Pass args fix3 (#18237)
* fixed overwrite of args/aux variables
* fixed spacing
---
python/mxnet/symbol/symbol.py | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/python/mxnet/symbol/symbol.py b/python/mxnet/symbol/symbol.py
index 37b9186..e90fb9b 100644
--- a/python/mxnet/symbol/symbol.py
+++ b/python/mxnet/symbol/symbol.py
@@ -1484,18 +1484,18 @@ class Symbol(SymbolBase):
assert isinstance(backend, str)
if args is None or len(args) == 0:
- args = []
+ args_ = []
args_handle = c_array(NDArrayHandle, [])
else:
- args_handle, args = self._get_ndarray_inputs('args', args,
-
self.list_arguments(), False)
+ args_handle, args_ = self._get_ndarray_inputs('args', args,
+
self.list_arguments(), False)
if aux is None or len(aux) == 0:
- aux = []
+ aux_ = []
aux_handle = c_array(NDArrayHandle, [])
else:
- aux_handle, aux = self._get_ndarray_inputs('aux_states', aux,
-
self.list_auxiliary_states(), False)
+ aux_handle, aux_ = self._get_ndarray_inputs('aux_states', aux,
+
self.list_auxiliary_states(), False)
if ctx is None:
ctx = current_context()
assert isinstance(ctx, Context)
@@ -1516,9 +1516,9 @@ class Symbol(SymbolBase):
c_str(backend),
ctypes.c_int(ctx.device_typeid),
ctypes.byref(out),
- mx_uint(len(args)),
+ mx_uint(len(args_)),
args_handle,
- mx_uint(len(aux)),
+ mx_uint(len(aux_)),
aux_handle,
mx_uint(len(key_list)),
c_str_array(key_list),