mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
python3Packages.tt-perf-report: init at 1.2.4 (#533431)
This commit is contained in:
commit
ee6ca4145b
3 changed files with 58 additions and 0 deletions
|
|
@ -17878,6 +17878,12 @@
|
|||
github = "merrkry";
|
||||
githubId = 124278440;
|
||||
};
|
||||
mert-kurttutan = {
|
||||
email = "mert-kurttutan@gmail.com";
|
||||
name = "Mert Kurttutan";
|
||||
github = "mert-kurttutan";
|
||||
githubId = 88637659;
|
||||
};
|
||||
messemar = {
|
||||
email = "martin.messer@cyberus-technology.de";
|
||||
name = "messemar";
|
||||
|
|
|
|||
50
pkgs/development/python-modules/tt-perf-report/default.nix
Normal file
50
pkgs/development/python-modules/tt-perf-report/default.nix
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
|
||||
# build-system
|
||||
setuptools,
|
||||
wheel,
|
||||
|
||||
# dependencies
|
||||
matplotlib,
|
||||
pandas,
|
||||
}:
|
||||
|
||||
buildPythonPackage (finalAttrs: {
|
||||
pname = "tt-perf-report";
|
||||
version = "1.2.4";
|
||||
pyproject = true;
|
||||
__structuredAttrs = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tenstorrent";
|
||||
repo = "tt-perf-report";
|
||||
tag = "v${finalAttrs.version}";
|
||||
hash = "sha256-cSlQ9Byv9LzKc4gS3QLeq3bHdmIVpl8AeK3Gh0mNDAQ=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
setuptools
|
||||
wheel
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
matplotlib
|
||||
pandas
|
||||
];
|
||||
|
||||
pythonRelaxDeps = [ "matplotlib" ];
|
||||
|
||||
pythonImportsCheck = [ "tt_perf_report" ];
|
||||
|
||||
meta = {
|
||||
description = "Tool for analyzing performance traces from Metal operations";
|
||||
homepage = "https://github.com/tenstorrent/tt-perf-report";
|
||||
changelog = "https://github.com/tenstorrent/tt-perf-report/releases/tag/${finalAttrs.src.tag}";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ mert-kurttutan ];
|
||||
mainProgram = "tt-perf-report";
|
||||
};
|
||||
})
|
||||
|
|
@ -20423,6 +20423,8 @@ self: super: with self; {
|
|||
|
||||
tt-flash = callPackage ../development/python-modules/tt-flash { };
|
||||
|
||||
tt-perf-report = callPackage ../development/python-modules/tt-perf-report { };
|
||||
|
||||
tt-tools-common = callPackage ../development/python-modules/tt-tools-common { };
|
||||
|
||||
ttach = callPackage ../development/python-modules/ttach { };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue