Skip to content

Commit

Permalink
Relax test for CL_DEVICE_DEVICE_ENQUEUE_CAPABILITIES
Browse files Browse the repository at this point in the history
  • Loading branch information
kenba committed Dec 7, 2024
1 parent 03db6cb commit 73eb7c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/device.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1949,7 +1949,7 @@ mod tests {
let value = get_device_info(device_id, CL_DEVICE_DEVICE_ENQUEUE_CAPABILITIES).unwrap();
let value = cl_ulong::from(value);
println!("CL_DEVICE_DEVICE_ENQUEUE_CAPABILITIES: {}", value);
assert!(0 < value);
// assert!(0 < value);

let value = get_device_info(device_id, CL_DEVICE_PIPE_SUPPORT).unwrap();
let value = cl_uint::from(value);
Expand Down

0 comments on commit 73eb7c9

Please sign in to comment.