for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
# -*- coding: utf-8 -*-
#
# This file is part of Glances.
# SPDX-FileCopyrightText: 2024 Nicolas Hennion <[email protected]>
# SPDX-License-Identifier: LGPL-3.0-only
"""AMD Extension unit for Glances' GPU plugin."""
class AmdGPU:
"""GPU card class."""
def __init__(self):
"""Init AMD GPU card class."""
pass
def exit(self):
"""Close AMD GPU class."""
def get_device_stats(self):
"""Get AMD GPU stats."""
stats = []
return stats