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
Update SystemInfo.updateAcceleratorMetrics() to take accelerators_id : ArrayList<Integer> as an argument.
SystemInfo.updateAcceleratorMetrics()
accelerators_id : ArrayList<Integer>
only update the accelerator metrics for the ids in the arguemnts.
If the list is empty or null, update all accelerators.
public void updateAcceleratorMetrics() { if (this.acceleratorUtil != null) { List<Accelerator> updatedAccelerators = this.acceleratorUtil.getUpdatedAcceleratorsUtilization(this.accelerators); updateAccelerators(updatedAccelerators); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Update
SystemInfo.updateAcceleratorMetrics()
to takeaccelerators_id : ArrayList<Integer>
as an argument.only update the accelerator metrics for the ids in the arguemnts.
If the list is empty or null, update all accelerators.
The text was updated successfully, but these errors were encountered: