def forward()

in glide_text2im/xf.py [0:0]


    def forward(self, x: th.Tensor):
        for block in self.resblocks:
            x = block(x)
        return x