(
&self,
_x: &Tensor,
_index_pos: usize,
_block_idx: usize,
_ctx: &mut Context,
)
| 349 | } |
| 350 | |
| 351 | async fn forward( |
| 352 | &self, |
| 353 | _x: &Tensor, |
| 354 | _index_pos: usize, |
| 355 | _block_idx: usize, |
| 356 | _ctx: &mut Context, |
| 357 | ) -> Result<Tensor> { |
| 358 | anyhow::bail!("NoAudioBlock cannot forward") |
| 359 | } |
| 360 | |
| 361 | async fn forward_mut( |
| 362 | &mut self, |
nothing calls this directly
no outgoing calls
no test coverage detected