Skip to content

Commit

Permalink
Correctly report emulated wave32 CUDA device (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
vosen committed Apr 29, 2024
1 parent 995bc95 commit bdc652f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion xtask/src/main.rs
Expand Up @@ -322,7 +322,7 @@ mod os {
}
}

pub fn zip(workspace: Workspace) -> i32 {
pub(crate) fn zip(workspace: Workspace) -> i32 {
let mut target_file = workspace.target_directory.clone();
target_file.push("zluda.tar.gz");
let gz_file = File::create(target_file).unwrap();
Expand Down
4 changes: 4 additions & 0 deletions zluda/src/impl/device.rs
Expand Up @@ -109,6 +109,10 @@ pub(crate) unsafe fn get_attribute(
return Err(CUresult::CUDA_ERROR_INVALID_VALUE);
}
let hip_attrib = match attrib {
CUdevice_attribute::CU_DEVICE_ATTRIBUTE_WARP_SIZE => {
*pi = 32;
return Ok(());
}
CUdevice_attribute::CU_DEVICE_ATTRIBUTE_ASYNC_ENGINE_COUNT => {
*pi = 1;
return Ok(());
Expand Down

0 comments on commit bdc652f

Please sign in to comment.