Conversation
I have written basically the same code yesterday and it did compile! But I could not run all tests successfully. |
|
OK,great that the compilation pass works. The status code 6 means: Which is not really useful lol Do you have more info from the output ? We try to output the compilation log if the compilation of the kernel failed. |
|
Test with |
|
Here is the error log: Error logI tried to google the phrase |
|
for note, I have a 7900xtx (RDNA3) I wanted to do a true test with burn bench, but we'll have to update that before. Looks good |
|
@Redhawk18 interesting. What packages do you have in your shell? Maybe I'm missing something |
|
Ehh, I guess I didn't set my |
You might not need all of it nixpkgs = {
config.rocmSupport = true;
localSystem = {
system = "x86_64-linux";
};
system = lib.mkDefault "x86_64-linux";
};
hardware = {
amdgpu.opencl.enable = true;
graphics.extraPackages = with pkgs; [
rocmPackages.clr.icd
rocmPackages.hip-common
rocmPackages.rocm-runtime
];
opengl = {
enable = true;
# driSupport = true;
driSupport32Bit = true;
};
};
services.xserver.videoDrivers = [ "amdgpu" ];
environment.systemPackages = with pkgs; [
corectrl
kdePackages.partitionmanager
clinfo
nvtopPackages.amd
rocmPackages.rocm-smi
rocmPackages.rocminfo
rocmPackages.clr
rocmPackages.hipcc
];
systemd.tmpfiles.rules = [
"L+ /opt/rocm - - - - ${pkgs.rocmPackages.rocm-runtime}" # Might not be needed.
]; |
|
Awesome, going to release a patch with this. Thank you for your patience and investigation 😄 |
No description provided.