nomade-hpc 0.3.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. nomade_hpc-0.3.1/LICENSE +25 -0
  2. nomade_hpc-0.3.1/PKG-INFO +892 -0
  3. nomade_hpc-0.3.1/README.md +841 -0
  4. nomade_hpc-0.3.1/nomade/__init__.py +0 -0
  5. nomade_hpc-0.3.1/nomade/alerts/__init__.py +23 -0
  6. nomade_hpc-0.3.1/nomade/alerts/backends.py +262 -0
  7. nomade_hpc-0.3.1/nomade/alerts/dispatcher.py +249 -0
  8. nomade_hpc-0.3.1/nomade/alerts/thresholds.py +425 -0
  9. nomade_hpc-0.3.1/nomade/analysis/__init__.py +29 -0
  10. nomade_hpc-0.3.1/nomade/analysis/derivatives.py +528 -0
  11. nomade_hpc-0.3.1/nomade/analysis/similarity.py +568 -0
  12. nomade_hpc-0.3.1/nomade/cli.py +1599 -0
  13. nomade_hpc-0.3.1/nomade/collectors/__init__.py +39 -0
  14. nomade_hpc-0.3.1/nomade/collectors/base.py +328 -0
  15. nomade_hpc-0.3.1/nomade/collectors/disk.py +425 -0
  16. nomade_hpc-0.3.1/nomade/collectors/gpu.py +261 -0
  17. nomade_hpc-0.3.1/nomade/collectors/iostat.py +344 -0
  18. nomade_hpc-0.3.1/nomade/collectors/job_metrics.py +562 -0
  19. nomade_hpc-0.3.1/nomade/collectors/mpstat.py +417 -0
  20. nomade_hpc-0.3.1/nomade/collectors/nfs.py +271 -0
  21. nomade_hpc-0.3.1/nomade/collectors/node_state.py +310 -0
  22. nomade_hpc-0.3.1/nomade/collectors/slurm.py +752 -0
  23. nomade_hpc-0.3.1/nomade/collectors/slurm_legacy.py +489 -0
  24. nomade_hpc-0.3.1/nomade/collectors/vmstat.py +257 -0
  25. nomade_hpc-0.3.1/nomade/config/__init__.py +19 -0
  26. nomade_hpc-0.3.1/nomade/config/default.toml +146 -0
  27. nomade_hpc-0.3.1/nomade/db/__init__.py +0 -0
  28. nomade_hpc-0.3.1/nomade/db/schema.sql +638 -0
  29. nomade_hpc-0.3.1/nomade/demo.py +348 -0
  30. nomade_hpc-0.3.1/nomade/hooks/__init__.py +1 -0
  31. nomade_hpc-0.3.1/nomade/hooks/prolog.py +234 -0
  32. nomade_hpc-0.3.1/nomade/install.py +518 -0
  33. nomade_hpc-0.3.1/nomade/ml/__init__.py +56 -0
  34. nomade_hpc-0.3.1/nomade/ml/autoencoder.py +392 -0
  35. nomade_hpc-0.3.1/nomade/ml/continuous.py +331 -0
  36. nomade_hpc-0.3.1/nomade/ml/ensemble.py +454 -0
  37. nomade_hpc-0.3.1/nomade/ml/gnn.py +418 -0
  38. nomade_hpc-0.3.1/nomade/ml/gnn_torch.py +375 -0
  39. nomade_hpc-0.3.1/nomade/ml/lstm.py +422 -0
  40. nomade_hpc-0.3.1/nomade/ml/persistence.py +243 -0
  41. nomade_hpc-0.3.1/nomade/monitors/__init__.py +13 -0
  42. nomade_hpc-0.3.1/nomade/monitors/job_monitor.py +559 -0
  43. nomade_hpc-0.3.1/nomade/prediction/__init__.py +0 -0
  44. nomade_hpc-0.3.1/nomade/viz/__init__.py +6 -0
  45. nomade_hpc-0.3.1/nomade/viz/dashboard.py +3545 -0
  46. nomade_hpc-0.3.1/nomade/viz/server.py +4440 -0
  47. nomade_hpc-0.3.1/nomade_hpc.egg-info/PKG-INFO +892 -0
  48. nomade_hpc-0.3.1/nomade_hpc.egg-info/SOURCES.txt +53 -0
  49. nomade_hpc-0.3.1/nomade_hpc.egg-info/dependency_links.txt +1 -0
  50. nomade_hpc-0.3.1/nomade_hpc.egg-info/entry_points.txt +2 -0
  51. nomade_hpc-0.3.1/nomade_hpc.egg-info/requires.txt +26 -0
  52. nomade_hpc-0.3.1/nomade_hpc.egg-info/top_level.txt +1 -0
  53. nomade_hpc-0.3.1/pyproject.toml +140 -0
  54. nomade_hpc-0.3.1/setup.cfg +4 -0
  55. nomade_hpc-0.3.1/tests/test_disk_and_derivatives.py +316 -0
@@ -0,0 +1,25 @@
1
+ GNU AFFERO GENERAL PUBLIC LICENSE
2
+ Version 3, 19 November 2007
3
+
4
+ Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
5
+ Everyone is permitted to copy and distribute verbatim copies
6
+ of this license document, but changing it is not allowed.
7
+
8
+ Preamble
9
+
10
+ The GNU Affero General Public License is a free, copyleft license for
11
+ software and other kinds of works, specifically designed to ensure
12
+ cooperation with the community in the case of network server software.
13
+
14
+ [Full AGPL v3 text would go here - abbreviated for file size]
15
+
16
+ For the complete license text, see: https://www.gnu.org/licenses/agpl-3.0.txt
17
+
18
+ ---
19
+
20
+ COMMERCIAL LICENSE
21
+
22
+ For proprietary/commercial use of NØMADE without the AGPL v3 requirements,
23
+ a commercial license is available. Contact [email] for details.
24
+
25
+ Academic and educational use is free under the AGPL v3.