Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • N nvidia-patch
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 26
    • Issues 26
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Keylase
  • nvidia-patch
  • Issues
  • #267
Closed
Open
Issue created May 13, 2020 by Administrator@rootContributor

Sometimes happens "Something went wrong. Check nvidia driver" inside docker

Created by: vBLFTePebWNi6c

Describe the bug Sometimes patch failed to apply inside docker container with error message "Something went wrong. Check nvidia driver".

To Reproduce I wrote simple bash script to check if problem exists and run in on two different machines. Bash script:

#!/bin/bash
COUNTER=0
for i in {1..25}
do
   CATCH=$(docker run --gpus all --rm nvidia-patch:latest | grep "Something went wrong.")
   if [ -z "$CATCH" ]
    then
        COUNTER=$COUNTER
    else
        COUNTER=$(($COUNTER + 1))
    fi
done

echo "Catched $COUNTER/25"

There is almost always about 3-5/25 cases of failure.

Expected behavior I expect that the patch script will work always correctly or at least will raise more descriptive error message that can help understand the problem.

Environment (please complete the following information):

  • OS: Ubuntu 16.04
  • GPU model: GTX 1080Ti
  • Patch commit used: aed35c39
  • Nvidia driver version: 418.67, 418.87.00
Assignee
Assign to
Time tracking