mirror of
https://git.datalinker.icu/comfyanonymous/ComfyUI
synced 2026-08-24 18:31:18 +08:00
7 lines
191 B
Python
7 lines
191 B
Python
import torch
|
|
class FunctionAdaCoF(torch.autograd.Function):
|
|
# end
|
|
@staticmethod
|
|
def forward(ctx, input, weight, offset_i, offset_j, dilation):
|
|
raise NotImplementedError()
|