(
&mut self,
x: &Tensor,
index_pos: usize,
block_idx: usize,
ctx: &mut Context,
)
| 95 | } |
| 96 | |
| 97 | async fn forward_mut( |
| 98 | &mut self, |
| 99 | x: &Tensor, |
| 100 | index_pos: usize, |
| 101 | block_idx: usize, |
| 102 | ctx: &mut Context, |
| 103 | ) -> anyhow::Result<Tensor> { |
| 104 | self.forward(x, index_pos, block_idx, ctx).await |
| 105 | } |
| 106 | |
| 107 | fn layer_name(&self) -> &str { |
| 108 | "flux_vae" |
no test coverage detected