!7073 modify context args to ascend

Merge pull request !7073 from caozhou/modify_context
pull/7073/MERGE
mindspore-ci-bot 4 years ago committed by Gitee
commit eb7f1fde2a

@ -465,7 +465,11 @@ def _check_target_specific_cfgs(device, arg_key):
device_cfgs = { device_cfgs = {
'enable_auto_mixed_precision': ['Ascend'], 'enable_auto_mixed_precision': ['Ascend'],
'enable_dump': ['Ascend'], 'enable_dump': ['Ascend'],
'save_dump_path': ['Ascend'],
'enable_graph_kernel': ['Ascend', 'GPU'],
'enable_reduce_precision': ['Ascend'],
'enable_profiling': ['Ascend'], 'enable_profiling': ['Ascend'],
'profiling_options': ['Ascend'],
'print_file_path': ['Ascend'], 'print_file_path': ['Ascend'],
'variable_memory_max_size': ['Ascend'], 'variable_memory_max_size': ['Ascend'],
'max_device_memory': ['GPU'] 'max_device_memory': ['GPU']
@ -512,18 +516,14 @@ def set_context(**kwargs):
Common(CPU/GPU/Ascend) Ascend GPU Common(CPU/GPU/Ascend) Ascend GPU
=========================== =========================== ================= =========================== =========================== =================
check_bprop enable_auto_mixed_precision max_device_memory check_bprop enable_auto_mixed_precision max_device_memory
device_id enable_dump device_id enable_dump enable_graph_kernel
device_target enable_profiling device_target save_dump_path
enable_graph_kernel variable_memory_max_size enable_sparse enable_graph_kernel
enable_reduce_precision print_file_path max_call_depth enable_reduce_precision
enable_sparse mode enable_profiling
max_call_depth reserve_class_name_in_scope profiling_options
mode save_graphs variable_memory_max_size
profiling_options save_graphs_path print_file_path
reserve_class_name_in_scope
save_dump_path
save_graphs
save_graphs_path
=========================== =========================== ================= =========================== =========================== =================
Args: Args:

Loading…
Cancel
Save