device.py 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  1. # copyright (c) 2024 PaddlePaddle Authors. All Rights Reserve.
  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. def constr_device(device_type, device_ids):
  15. device_ids = ",".join(map(str, device_ids))
  16. return f"{device_type}:{device_ids}"
  17. def parse_device(device):
  18. parts = device.split(":")
  19. if len(parts) > 2:
  20. raise ValueError(f"Invalid device: {device}")
  21. if len(parts) == 1:
  22. device_type, device_ids = parts[0], None
  23. else:
  24. device_type, device_ids = parts
  25. device_ids = device_ids.split(",")
  26. for device_id in device_ids:
  27. if not device_id.isdigit():
  28. raise ValueError(f"Invalid device ID: {device_id}")
  29. device_ids = list(map(int, device_ids))
  30. device_type = device_type.lower()
  31. return device_type, device_ids