(
&mut self,
x: &Tensor,
index_pos: usize,
block_idx: usize,
ctx: &mut Context,
)
| 64 | } |
| 65 | |
| 66 | async fn forward_mut( |
| 67 | &mut self, |
| 68 | x: &Tensor, |
| 69 | index_pos: usize, |
| 70 | block_idx: usize, |
| 71 | ctx: &mut Context, |
| 72 | ) -> anyhow::Result<Tensor> { |
| 73 | self.forward(x, index_pos, block_idx, ctx).await |
| 74 | } |
| 75 | |
| 76 | fn layer_name(&self) -> &str { |
| 77 | "unet" |
no test coverage detected