Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions nix-builder/pkgs/aotriton/generic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -129,5 +129,9 @@ stdenv.mkDerivation (finalAttrs: {
homepage = "https://github.com/ROCm/aotriton";
license = with licenses; [ mit ];
platforms = platforms.linux;
sourceProvenance = with sourceTypes; [
fromSource
binaryNativeCode # aotriton.images
];
};
})
7 changes: 7 additions & 0 deletions nix-builder/pkgs/python-modules/cuda-bindings/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,11 @@ buildPythonPackage {
dependencies = [ cuda-pathfinder ];

pythonImportsCheck = [ "cuda.bindings" ];

meta = {
description = "Python bindings for CUDA";
homepage = "https://github.com/NVIDIA/cuda-python";
license = lib.licenses.unfreeRedistributable;
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};
}
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@ buildPythonPackage rec {
];

meta = {
description = "NVIDIA CUTLASS Python DSL native libraries";
homepage = "https://github.com/NVIDIA/cutlass";
license = lib.licenses.unfree;
broken = !(cudaPackages.cudaAtLeast "12.8");
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};
}
1 change: 1 addition & 0 deletions nix-builder/pkgs/python-modules/torch/binary/generic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -364,5 +364,6 @@ buildPythonPackage.override { stdenv = effectiveStdenv; } {
description = "PyTorch: Tensors and Dynamic neural networks in Python with strong GPU acceleration";
homepage = "https://pytorch.org/";
license = lib.licenses.bsd3;
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};
}
1 change: 1 addition & 0 deletions nix-builder/pkgs/python-modules/triton-xpu/generic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,6 @@ buildPythonPackage {
description = "Triton XPU backend for PyTorch";
homepage = "https://github.com/intel/intel-xpu-backend-for-triton";
license = lib.licenses.mit;
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
};
}
1 change: 1 addition & 0 deletions nix-builder/pkgs/xpu-packages/generic.nix
Original file line number Diff line number Diff line change
Expand Up @@ -84,5 +84,6 @@ stdenv.mkDerivation rec {
homepage = "https://software.intel.com/oneapi";
platforms = platforms.linux;
license = licenses.unfree;
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
};
}
8 changes: 8 additions & 0 deletions nix-builder/pkgs/xpu-packages/ocloc.nix
Original file line number Diff line number Diff line change
Expand Up @@ -79,4 +79,12 @@ stdenv.mkDerivation (finalAttrs: {
preInstallCheck = ''
patchelf --add-rpath ${placeholder "out"}/lib $out/lib/*.so*
'';

meta = with lib; {
description = "Intel OpenCL Offline Compiler";
homepage = "https://github.com/intel/compute-runtime";
platforms = platforms.linux;
license = licenses.mit;
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
};
})