Skip to content

Commit

Permalink
chore: fix a warning for gpu strings
Browse files Browse the repository at this point in the history
- we don't currently have strings on GPU and so don't run clippy for them
  • Loading branch information
IceTDrinker committed Mar 3, 2025
1 parent 9d8289e commit c9ef0c9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tfhe/src/high_level_api/strings/ascii/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,7 @@ impl crate::integer::gpu::ciphertext::compressed_ciphertext_list::CudaExpandable
blocks: crate::integer::gpu::ciphertext::CudaRadixCiphertext,
kind: DataKind,
) -> crate::Result<Self> {
let _ = (blocks, kind);
Err(crate::error!("GPU does not supports strings yet"))
}
}
Expand Down

0 comments on commit c9ef0c9

Please sign in to comment.