We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea720f9 commit fa7c952Copy full SHA for fa7c952
tools/AutoTuner/src/autotuner/distributed.py
@@ -397,10 +397,13 @@ def parse_config(config, path=os.getcwd()):
397
)
398
# Default case is VAR=VALUE
399
else:
400
+ # FIXME there is no robust way to get this metainformation from
401
+ # ORFS about the variables, so disable this code for now.
402
+
403
# Sanity check: ignore all flow variables that are not tunable
- if key not in flow_variables:
- print(f"[ERROR TUN-0017] Variable {key} is not tunable.")
- sys.exit(1)
404
+ # if key not in flow_variables:
405
+ # print(f"[ERROR TUN-0017] Variable {key} is not tunable.")
406
+ # sys.exit(1)
407
options += f" {key}={value}"
408
if bool(sdc):
409
write_sdc(sdc, path)
0 commit comments