Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
f08d574
admi_smi folder
alexandraBara Aug 20, 2025
1eac292
need to fix collect_data call
alexandraBara Aug 20, 2025
b6be391
updated
alexandraBara Aug 21, 2025
dc62a1f
added sudo for all subcmds
alexandraBara Aug 21, 2025
6d03cd2
fixed utils
alexandraBara Aug 21, 2025
058da99
moved utesdt
alexandraBara Aug 22, 2025
93541ab
updates
alexandraBara Aug 26, 2025
cfc9ca4
update
alexandraBara Sep 3, 2025
6294315
update
alexandraBara Sep 3, 2025
38884ae
cleanup
alexandraBara Sep 13, 2025
a8c39df
merged development
alexandraBara Sep 13, 2025
b3b6352
removed extra utest
alexandraBara Sep 13, 2025
0d86d3f
utest + import check
alexandraBara Sep 15, 2025
c7b3344
adding analyzer
alexandraBara Sep 15, 2025
359a36d
updates
alexandraBara Sep 16, 2025
d1e73a0
cleanup
alexandraBara Sep 16, 2025
7094979
mypy
alexandraBara Sep 16, 2025
08ed3f0
filled in data for AmdSmiStatic, clock is left
alexandraBara Sep 17, 2025
a8437e4
added clock and fixed try for API that doesnt exist in this version
alexandraBara Sep 18, 2025
c3be354
updated partition, and other calls that look slightly differnt
alexandraBara Sep 18, 2025
7faf0f3
fixed partition(compute,gpu), static needs work
alexandraBara Sep 19, 2025
f4a4064
fixed measuring units, mypy
alexandraBara Sep 22, 2025
315c7d4
added more analyzer parts
alexandraBara Sep 22, 2025
f652fe3
fixed payload for static data mismatch
alexandraBara Sep 23, 2025
b217c24
temporarily removed the pytest + some cleanup
alexandraBara Sep 23, 2025
1e456c3
updates
alexandraBara Sep 26, 2025
6406994
docstring + mypy
alexandraBara Sep 29, 2025
a9b3ed3
pytest
alexandraBara Sep 30, 2025
6613ded
fixed some tpos
alexandraBara Sep 30, 2025
9669bbf
Merge branch 'development' into alex_amdsmi
alexandraBara Oct 16, 2025
e13889b
Merge branch 'development' into alex_amdsmi
alexandraBara Nov 11, 2025
0eec9f7
addressed reviews
alexandraBara Nov 11, 2025
05b4772
moved check outside static if else
alexandraBara Nov 11, 2025
84f24f2
fixed utest for py3.9
alexandraBara Nov 11, 2025
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
28 changes: 28 additions & 0 deletions nodescraper/plugins/inband/amdsmi/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
###############################################################################
#
# MIT License
#
# Copyright (c) 2025 Advanced Micro Devices, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
###############################################################################
from .amdsmi_plugin import AmdSmiPlugin

__all__ = ["AmdSmiPlugin"]
Loading