mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-18 18:14:42 +00:00
python312Packages.triton: rename from openai-triton
To match the github and PyPi names and the org name
This commit is contained in:
parent
eb846f47bd
commit
1b23dc7dc2
@ -197,7 +197,7 @@ buildPythonPackage rec {
|
||||
# and pythonImportsCheck is commented back.
|
||||
import-triton =
|
||||
runCommand "import-triton"
|
||||
{ nativeBuildInputs = [ (python.withPackages (ps: [ ps.openai-triton ])) ]; }
|
||||
{ nativeBuildInputs = [ (python.withPackages (ps: [ ps.triton ])) ]; }
|
||||
''
|
||||
python << \EOF
|
||||
import triton
|
@ -1026,6 +1026,7 @@ mapAliases ({
|
||||
onevpl-intel-gpu = lib.warn "onevpl-intel-gpu has been renamed to vpl-gpu-rt" vpl-gpu-rt; # Added 2024-06-04
|
||||
opa = throw "opa has been removed from nixpkgs as upstream has abandoned the project"; # Added 2023-03-21
|
||||
opam_1_2 = throw "'opam_1_2' has been renamed to/replaced by 'opam'"; # Added 2023-03-08
|
||||
openai-triton-llvm = triton-llvm;
|
||||
openafs_1_8 = openafs; # Added 2022-08-22
|
||||
openapi-generator-cli-unstable = throw "openapi-generator-cli-unstable was removed as it was not being updated; consider openapi-generator-cli instead"; # Added 2024-01-02
|
||||
openbangla-keyboard = throw "openbangla-keyboard has been replaced by ibus-engines.openbangla-keyboard and fcitx5-openbangla-keyboard"; # added 2023-10-10
|
||||
|
@ -339,6 +339,10 @@ mapAliases ({
|
||||
notifymuch = throw "notifymuch has been promoted to a top-level attribute name: `pkgs.notifymuch`"; # added 2022-10-02
|
||||
Nuitka = nuitka; # added 2023-02-19
|
||||
ntlm-auth = throw "ntlm-auth has been removed, because it relies on the md4 implementation provided by openssl. Use pyspnego instead.";
|
||||
openai-triton = triton;
|
||||
openai-triton-cuda = triton-cuda;
|
||||
openai-triton-no-cuda = triton-no-cuda;
|
||||
openai-triton-bin = triton-bin;
|
||||
openapi-schema-pydantic = throw "openapi-schema-pydantic has been removed, since it is no longer maintained"; # added 2023-10-30
|
||||
opencv3 = throw "opencv3 has been removed as it is obsolete"; # added 2023-10-12
|
||||
opsdroid_get_image_size = opsdroid-get-image-size; # added 2023-10-16
|
||||
|
@ -9367,20 +9367,6 @@ self: super: with self; {
|
||||
|
||||
open-meteo = callPackage ../development/python-modules/open-meteo { };
|
||||
|
||||
openai-triton = callPackage ../development/python-modules/openai-triton {
|
||||
llvm = pkgs.openai-triton-llvm;
|
||||
};
|
||||
|
||||
openai-triton-cuda = self.openai-triton.override {
|
||||
cudaSupport = true;
|
||||
};
|
||||
|
||||
openai-triton-no-cuda = self.openai-triton.override {
|
||||
cudaSupport = false;
|
||||
};
|
||||
|
||||
openai-triton-bin = callPackage ../development/python-modules/openai-triton/bin.nix { };
|
||||
|
||||
openai-whisper = callPackage ../development/python-modules/openai-whisper { };
|
||||
|
||||
openant = callPackage ../development/python-modules/openant { };
|
||||
@ -15755,6 +15741,20 @@ self: super: with self; {
|
||||
|
||||
trio-websocket = callPackage ../development/python-modules/trio-websocket { };
|
||||
|
||||
triton = callPackage ../development/python-modules/triton {
|
||||
llvm = pkgs.triton-llvm;
|
||||
};
|
||||
|
||||
triton-cuda = self.triton.override {
|
||||
cudaSupport = true;
|
||||
};
|
||||
|
||||
triton-no-cuda = self.triton.override {
|
||||
cudaSupport = false;
|
||||
};
|
||||
|
||||
triton-bin = callPackage ../development/python-modules/triton/bin.nix { };
|
||||
|
||||
tritonclient = callPackage ../development/python-modules/tritonclient { };
|
||||
|
||||
troposphere = callPackage ../development/python-modules/troposphere { };
|
||||
|
Loading…
Reference in New Issue
Block a user