Compare commits

...

2 commits

Author SHA1 Message Date
Artturin 65d7bef16d {smi,tools-common}: pin textual 2025-01-29 20:07:04 +02:00
Artturin 2245c9c5ea smi: Add test 2025-01-29 19:41:49 +02:00
2 changed files with 33 additions and 8 deletions

View file

@ -39,7 +39,6 @@ buildPythonPackage rec {
propagatedBuildInputs = [
setuptools
requests
textual
black
distro
elasticsearch
@ -51,7 +50,14 @@ buildPythonPackage rec {
importlib-resources
pkgs.pre-commit
tools-common
tools-common.textual
];
dontUsePytestCheck = true; # no tests
installCheckPhase = ''
output=$($out/bin/tt-smi || true)
echo "tt-smi output: $output"
echo $output | grep -q "No Tenstorrent driver detected"
'';
}

View file

@ -1,13 +1,28 @@
{ pkgs }:
{ fetchFromGitHub, python3Packages }:
with pkgs.python3Packages;
let
# Can be unpinned once https://github.com/tenstorrent/tt-tools-common/blob/main/pyproject.toml#L32
# is v1
textual_0_82 = python3Packages.textual.overridePythonAttrs (old: rec {
version = "0.82.0";
src = fetchFromGitHub {
owner = "Textualize";
repo = "textual";
rev = "refs/tags/v${version}";
hash = "sha256-belpoXQ+CkTchK+FjI/Ur8v4cNgzX39xLdNfPCwaU6E=";
};
disabledTests = old.disabledTests ++ [
"test_selection"
];
});
in
buildPythonPackage rec {
python3Packages.buildPythonPackage rec {
pname = "tools-common";
# https://github.com/tenstorrent/tt-smi/blob/main/pyproject.toml#L31
version = "1.4.11";
src = pkgs.fetchFromGitHub {
src = fetchFromGitHub {
owner = "tenstorrent";
repo = "tt-tools-common";
rev = "refs/tags/v${version}";
@ -16,7 +31,7 @@ buildPythonPackage rec {
format = "pyproject";
nativeBuildInputs = [ pythonRelaxDepsHook ];
nativeBuildInputs = with python3Packages; [ pythonRelaxDepsHook ];
pythonRelaxDeps = [
"distro"
@ -29,14 +44,14 @@ buildPythonPackage rec {
"tqdm"
];
propagatedBuildInputs = [
propagatedBuildInputs = with python3Packages; [
setuptools
distro
elasticsearch
psutil
pyyaml
rich
textual
textual_0_82
requests
jsons
tqdm
@ -46,4 +61,8 @@ buildPythonPackage rec {
pythonImportsCheck = [
"tt_tools_common"
];
passthru = {
textual = textual_0_82;
};
}