Skip to content

Commit

Permalink
Add tracing output before initializig NVML
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywonchung committed May 29, 2024
1 parent 146019e commit cf90f03
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions zeusd/src/startup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ pub fn get_unix_listener(

/// Initialize NVML and start GPU management tasks.
pub fn start_device_tasks() -> anyhow::Result<GpuManagementTasks> {
tracing::info!("Starting NVML and GPU management tasks.");
let num_gpus = NvmlGpu::device_count()?;
let mut gpus = Vec::with_capacity(num_gpus as usize);
for gpu_id in 0..num_gpus {
Expand Down

0 comments on commit cf90f03

Please sign in to comment.