forked from mindspore-Ecosystem/mindspore
!6006 add param check for gradoperation
Merge pull request !6006 from Simson/push-to-opensource
This commit is contained in:
commit
f27be1745c
|
@ -284,6 +284,12 @@ class GradOperation(GradOperation_):
|
|||
"""
|
||||
|
||||
def __init__(self, get_all=False, get_by_list=False, sens_param=False):
|
||||
if not isinstance(get_all, bool):
|
||||
raise TypeError(f'get_all should be bool, but got {type(get_all)}')
|
||||
if not isinstance(get_by_list, bool):
|
||||
raise TypeError(f'get_by_list should be bool, but got {type(get_by_list)}')
|
||||
if not isinstance(sens_param, bool):
|
||||
raise TypeError(f'sens_param should be bool, but got {type(sens_param)}')
|
||||
self.get_all = get_all
|
||||
self.get_by_list = get_by_list
|
||||
self.sens_param = sens_param
|
||||
|
|
Loading…
Reference in New Issue