We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In benchmarks/python/mem_monitor.py
def get_memory_info(handle): mem_info = pynvml.nvmlDeviceGetMemoryInfo(handle) total = round(mem_info.total / 1024 / 1024 / 1024, 2) used = round(mem_info.used / 1024 / 1024 / 1024, 2) free = round(mem_info.used / 1024 / 1024 / 1024, 2) return total, used, free
For 'free' in line 5, should be 'mem_info.free'
The text was updated successfully, but these errors were encountered:
Thank you for report. We will fix it ASAP.
Sorry, something went wrong.
byshiue
No branches or pull requests
In benchmarks/python/mem_monitor.py
For 'free' in line 5, should be 'mem_info.free'
The text was updated successfully, but these errors were encountered: