We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfe243e commit 33484dbCopy full SHA for 33484db
crates/cubecl-runtime/src/channel/base.rs
@@ -10,7 +10,7 @@ use alloc::vec::Vec;
10
11
/// The ComputeChannel trait links the ComputeClient to the ComputeServer
12
/// while ensuring thread-safety
13
-pub trait ComputeChannel<Server: ComputeServer>: Send + Clone + core::fmt::Debug {
+pub trait ComputeChannel<Server: ComputeServer>: Sync + Send + Clone + core::fmt::Debug {
14
/// Given a binding, returns owned resource as bytes
15
fn read(&self, binding: Binding) -> impl Future<Output = Vec<u8>>;
16
0 commit comments