Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
philsippl committed Sep 1, 2024
1 parent df65aee commit e09014a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iris-mpc-gpu/src/helpers/device_manager.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ impl DeviceManager {
pub fn init() -> Self {
let mut devices = vec![];
for i in 0..CudaDevice::count().unwrap() {
devices.push(CudaDevice::new(i as usize).unwrap());
devices.push(CudaDevice::new_with_stream(i as usize).unwrap());
}

tracing::info!("Found {} devices", devices.len());
Expand Down

0 comments on commit e09014a

Please sign in to comment.