(
&mut self,
x: &Tensor,
index_pos: usize,
block_idx: usize,
ctx: &mut Context,
)
| 70 | } |
| 71 | |
| 72 | async fn forward_mut( |
| 73 | &mut self, |
| 74 | x: &Tensor, |
| 75 | index_pos: usize, |
| 76 | block_idx: usize, |
| 77 | ctx: &mut Context, |
| 78 | ) -> anyhow::Result<Tensor> { |
| 79 | self.forward(x, index_pos, block_idx, ctx).await |
| 80 | } |
| 81 | |
| 82 | fn layer_name(&self) -> &str { |
| 83 | "vae" |
no test coverage detected