lol

tensile: init at 4.34.0-5.3.1

Madoura 12b18173 9acda2f4

+36
+34
pkgs/development/libraries/tensile/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , buildPythonPackage 5 + , pyyaml 6 + , msgpack 7 + , pandas 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "tensile"; 12 + rocmVersion = "5.3.1"; 13 + version = "4.34.0-${rocmVersion}"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "ROCmSoftwarePlatform"; 17 + repo = "Tensile"; 18 + rev = "rocm-${rocmVersion}"; 19 + hash = "sha256-QWt/zzBrZKM8h3MTnbLX4vN3p6cCQvo67U1C2yqAQxw="; 20 + }; 21 + 22 + buildInputs = [ 23 + pyyaml 24 + msgpack 25 + pandas 26 + ]; 27 + 28 + meta = with lib; { 29 + description = "GEMMs and tensor contractions"; 30 + homepage = "https://github.com/ROCmSoftwarePlatform/Tensile"; 31 + license = with licenses; [ mit ]; 32 + maintainers = with maintainers; [ Madouura ]; 33 + }; 34 + }
+2
pkgs/top-level/all-packages.nix
··· 14889 14889 14890 14890 rocfft = callPackage ../development/libraries/rocfft { }; 14891 14891 14892 + tensile = python3Packages.callPackage ../development/libraries/tensile { }; 14893 + 14892 14894 rtags = callPackage ../development/tools/rtags { 14893 14895 inherit (darwin) apple_sdk; 14894 14896 };