You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
p.add_argument(f"--{f.name}", action="store", nargs='?', const=gpuConfigOptions.ACC.value,default=gpuConfigOptions.ACC.value, dest=f.name, choices=[e.valueforeingpuConfigOptions], help=f"Turn the {f.name} option to OpenACC or OpenMP.")
62
+
p.add_argument(f"--{f.name}", action="store", nargs='?', const=gpuConfigOptions.ACC.value,default=gpuConfigOptions.NONE.value, dest=f.name, choices=[e.valueforeingpuConfigOptions], help=f"Turn the {f.name} option to OpenACC or OpenMP.")
63
63
p.add_argument(f"--no-{f.name}", action="store_const", const=gpuConfigOptions.NONE.value, dest=f.name, help=f"Turn the {f.name} option OFF.")
64
64
continue
65
65
p.add_argument( f"--{f.name}", action="store_true", help=f"Turn the {f.name} option ON.")
0 commit comments