(self, x, emb)
| 164 | """ |
| 165 | |
| 166 | def forward(self, x, emb): |
| 167 | for layer in self: |
| 168 | if isinstance(layer, TimestepBlock): |
| 169 | x = layer(x, emb) |
| 170 | else: |
| 171 | x = layer(x) |
| 172 | return x |
| 173 | |
| 174 | |
| 175 | class TriplaneResBlock(TimestepBlock): |
nothing calls this directly
no outgoing calls
no test coverage detected