GithubHelp home page GithubHelp logo

Comments (16)

BenMac31 avatar BenMac31 commented on August 29, 2024 2

Since I already had cudatoolkit on the host system, simply removing the cudatoolkit package from the impl.nix CUDA variant fixed the issue for me.

from automatic1111-webui-nix.

JeremyKennedy avatar JeremyKennedy commented on August 29, 2024 1

I resolved this by ensuring my NixOS install was using the latest NVIDIA driver. I had to sudo nixos-rebuild switch --upgrade. You can check the version with nvidia-smi. It should match when you do it inside vs outside the nix develop shell.

from automatic1111-webui-nix.

juh9870 avatar juh9870 commented on August 29, 2024 1

I'm using this for now: https://github.com/AbdBarho/stable-diffusion-webui-docker
Had to enable GPU use in docker, but otherwise it's pretty straightforward

from automatic1111-webui-nix.

UlyssesZh avatar UlyssesZh commented on August 29, 2024 1

I solved this by replacing nixos-unstable with nixos-23.11 in flake.nix.

from automatic1111-webui-nix.

RikudouSage avatar RikudouSage commented on August 29, 2024

Seems like you don't have the hardware drivers for your GPU. You need to install those.

from automatic1111-webui-nix.

juh9870 avatar juh9870 commented on August 29, 2024

I have drivers installed via configuration.nix, I'm using 23.05 channel, and other apps (like Blender) work fine with my GPU

from automatic1111-webui-nix.

RikudouSage avatar RikudouSage commented on August 29, 2024

Are you sure you're using the driver by Nvidia?

from automatic1111-webui-nix.

juh9870 avatar juh9870 commented on August 29, 2024

I'm on nixos and I followed the guide on using Nvidia drivers. https://nixos.wiki/wiki/Nvidia
I'm not using a laptop and I don't have other GPUs installed

from automatic1111-webui-nix.

Itrekr avatar Itrekr commented on August 29, 2024

Having the same issue with the same GPU. Inside the develop shell there is a library version mismatch and outside of it it appears to be fine. I'm extremely new to NixOS so I'm not quite sure how to solve such a thing. Did you manage to fix it @juh9870 ?

from automatic1111-webui-nix.

LiquidZulu avatar LiquidZulu commented on August 29, 2024

I am also getting this problem, updating did not work. I am installing the nvidia drivers in my system flake like so:

{ config, lib, pkgs, ... }:

{
  # See https://nixos.wiki/wiki/Nvidia
  services.xserver.videoDrivers = [
    "nvidia" # https://github.com/NixOS/nixpkgs/issues/80936#issuecomment-1003784682
  ];

  hardware = {
    opengl = {
      enable = true;
      driSupport = true;
      driSupport32Bit = true;
    };

    nvidia = {

      # Modesetting is needed for most wayland compositors
      modesetting.enable = true;

      # Use the open source version of the kernel module
      open = true;

      # Enable the nvidia settings menu
      nvidiaSettings = true;

      # Optionally, you may need to select the appropriate driver version for your specific GPU.
      package = config.boot.kernelPackages.nvidiaPackages.stable;
    };
  };
}

You can check the version with nvidia-smi.

@JeremyKennedy is there a specific package which provides this? I do not have it on my system and cannot find it on https://search.nixos.org/packages?channel=23.05&from=0&size=50&sort=relevance&type=packages&query=nvidia-smi

from automatic1111-webui-nix.

jpentland avatar jpentland commented on August 29, 2024

I have the same error, but I get this message when using 'nvidia-smi':

Without the flake enabled:

Thu Jan 11 16:06:09 2024       
+---------------------------------------------------------------------------------------+
| NVIDIA-SMI 545.29.02              Driver Version: 545.29.02    CUDA Version: 12.3     |
|-----------------------------------------+----------------------+----------------------+
| GPU  Name                 Persistence-M | Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp   Perf          Pwr:Usage/Cap |         Memory-Usage | GPU-Util  Compute M. |
|                                         |                      |               MIG M. |
|=========================================+======================+======================|
|   0  NVIDIA GeForce RTX 3060        Off | 00000000:09:00.0  On |                  N/A |
| 53%   42C    P3              37W / 170W |   2568MiB / 12288MiB |     35%      Default |
|                                         |                      |                  N/A |
+-----------------------------------------+----------------------+----------------------+
+---------------------------------------------------------------------------------------+

With the flake enabled:

Failed to initialize NVML: Driver/library version mismatch

I also tried copying the sha256 revision from the 'flake.lock' of my system config flake to the flake.lock used by this project, in order to try to make the versions match, but I still seem to get the same error.

edit: And yes, I have rebooted since the last time running "nixos-rebuild switch"

from automatic1111-webui-nix.

wyndon avatar wyndon commented on August 29, 2024

This error is because the driver version isn't the same between the one you use on your system config and the one pulled up from the devShell. NVIDIA is very strict regarding versions, it should be the exact same.

It either means you're using a different variant (if you're using the beta drivers for example, by default the devShell from this flake pulls up the regular version), or it could also mean the flake.lock from the repo is outdated, but it shouldn't, because in the README you're not supposed to copy the flake.lock anyways, so nix generates a new one with the latest versions available. It could also come from the fact that you're using a release channel (e.g. 23.11) instead of unstable, which could also causes versions mismatch.

To fix it you just need to use the drivers from unstable, or edit the flake to use a release channel. And if you're using a variant (e.g. the beta one) you need to edit the devShell.

linuxPackages.nvidia_x11_beta

from automatic1111-webui-nix.

jpentland avatar jpentland commented on August 29, 2024

I have this in my system configuration:

  services.xserver.videoDrivers = [ "nvidia" ];
  hardware.nvidia = {
    modesetting.enable = true;
    powerManagement.enable = false;
    powerManagement.finegrained = false;
    open = false;
    nvidiaSettings = true;
    package = config.boot.kernelPackages.nvidiaPackages.stable;
  };

I'm not sure which underlying package that corresponds to.

edit: I have managed to solve the issue, by doing what I already mentioned above and copying my systems nixpkgs section of flake.lock into the projects flake.lock. Not sure why it wasn't working before.

from automatic1111-webui-nix.

jasper-at-windswept avatar jasper-at-windswept commented on August 29, 2024

Can anyone help me with this, I"m on unstable 24.05 and I use a custom nvidia package, but I'm not sure how to port it to the flake.nix!

hardware.nvidia.package = let
  rcu_patch = pkgs.fetchpatch {
    url = "https://github.com/gentoo/gentoo/raw/c64caf53/x11-drivers/nvidia-drivers/files/nvidia-drivers-470.223.02-gpl-pfn_valid.patch";
    hash = "sha256-eZiQQp2S/asE7MfGvfe6dA/kdCvek9SYa/FFGp24dVg=";
  };
  in config.boot.kernelPackages.nvidiaPackages.mkDriver {
    version = "535.154.05";
    sha256_64bit = "sha256-fpUGXKprgt6SYRDxSCemGXLrEsIA6GOinp+0eGbqqJg=";
    sha256_aarch64 = "sha256-G0/GiObf/BZMkzzET8HQjdIcvCSqB1uhsinro2HLK9k=";
    openSha256 = "sha256-wvRdHguGLxS0mR06P5Qi++pDJBCF8pJ8hr4T8O6TJIo=";
    settingsSha256 = "sha256-9wqoDEWY4I7weWW05F4igj1Gj9wjHsREFMztfEmqm10=";
    persistencedSha256 = "sha256-d0Q3Lk80JqkS1B54Mahu2yY/WocOqFFbZVBh+ToGhaE=";
    patches = [ rcu_patch ];
  };

*Edit
I ended up just using the docker version with virtualization.docker.enableNvidia

from automatic1111-webui-nix.

Rexcrazy804 avatar Rexcrazy804 commented on August 29, 2024

Since I already had cudatoolkit on the host system, simply removing the cudatoolkit package from the impl.nix CUDA variant fixed the issue for me.

this worked for me as well, additionally you can run nvidia-smi inside the shell and it would report a cuda version error
from the looks of it the current cuda version is 12.4 but the the latest manifest at nixpkgs is 12.3 so its an upstream issue.
for the time being this workaround works like a charm 😄

from automatic1111-webui-nix.

natervader avatar natervader commented on August 29, 2024

I solved this by replacing nixos-unstable with nixos-23.11 in flake.nix.

This did the trick for me. Thanks!

from automatic1111-webui-nix.

Related Issues (6)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.