utils.py 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. # Copyright (c) 2025 PaddlePaddle Authors. All Rights Reserved.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. import yaml
  15. def load_backend_config(config_path):
  16. with open(config_path, "r", encoding="utf-8") as f:
  17. config = yaml.safe_load(f)
  18. return config
  19. def update_backend_config(config, overrides):
  20. for k, v in overrides.items():
  21. config[k] = v
  22. def set_config_defaults(config, defaults):
  23. for k, v in defaults.items():
  24. if k not in config:
  25. config[k] = v
  26. def backend_config_to_args(config):
  27. # Limited support
  28. args = []
  29. for k, v in config.items():
  30. opt = "--" + k
  31. args.append(opt)
  32. if not isinstance(v, bool):
  33. args.append(str(v))
  34. return args