ultralytics 8.2.24 set ENV OMP_NUM_THREADS=1 (#13158)

Signed-off-by: Glenn Jocher <glenn.jocher@ultralytics.com>
Co-authored-by: UltralyticsAssistant <web@ultralytics.com>
This commit is contained in:
Glenn Jocher 2024-05-28 16:06:09 +02:00 committed by GitHub
parent 15975e4702
commit 8caa1c96d5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 16 additions and 16 deletions

View file

@ -1,7 +1,9 @@
# Ultralytics YOLO 🚀, AGPL-3.0 license
from .fastsam import FastSAM
from .nas import NAS
from .rtdetr import RTDETR
from .sam import SAM
from .yolo import YOLO, YOLOWorld
__all__ = "YOLO", "RTDETR", "SAM", "YOLOWorld" # allow simpler import
__all__ = "YOLO", "RTDETR", "SAM", "FastSAM", "NAS", "YOLOWorld" # allow simpler import