Augmented calls to yaml.load to use the safe loader.

pull/3817/head
TimAtGoogle 2024-10-29 17:37:17 -05:00
parent 6f34294dc9
commit 7fd98efca8
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ if not TORCH_INCLUDE_DIR.is_dir():
TORCHGEN_DIR = Path(torchgen.__path__[0]).resolve() TORCHGEN_DIR = Path(torchgen.__path__[0]).resolve()
TORCH_MLIR_DIR = Path(__file__).resolve().parent.parent TORCH_MLIR_DIR = Path(__file__).resolve().parent.parent
# Safely load fast C Yaml loader/dumper if they are available # Safely load fast C Yaml loader if it is are available
try: try:
from yaml import CSafeLoader as Loader from yaml import CSafeLoader as Loader
except ImportError: except ImportError: