(_: String, _: &Context)
| 134 | #[async_trait] |
| 135 | impl Forwarder for Client { |
| 136 | fn load(_: String, _: &Context) -> Result<Box<Self>> { |
| 137 | Err(anyhow!("load should never be called on cake::Client")) |
| 138 | } |
| 139 | |
| 140 | async fn forward(&self, _: &Tensor, _: usize, _: usize, _: &mut Context) -> Result<Tensor> { |
| 141 | Err(anyhow!( |