RepUX-Net / data /lib /extensions /dcn /src /deform_conv_cuda.h
introvoyz041's picture
Migrated from GitHub
daa42e3 verified
Raw
History Blame Contribute Delete
1.19 kB
int deform_conv_forward_cuda(THCudaTensor *input,
THCudaTensor *weight, /*THCudaTensor * bias, */
THCudaTensor *offset, THCudaTensor *output,
THCudaTensor *columns, THCudaTensor *ones, int kW,
int kH, int dW, int dH, int padW, int padH,
int dilationW, int dilationH,
int deformable_group, int im2col_step);
int deform_conv_backward_input_cuda(
THCudaTensor *input, THCudaTensor *offset, THCudaTensor *gradOutput,
THCudaTensor *gradInput, THCudaTensor *gradOffset, THCudaTensor *weight,
THCudaTensor *columns, int kW, int kH, int dW, int dH, int padW, int padH,
int dilationW, int dilationH, int deformable_group, int im2col_step);
int deform_conv_backward_parameters_cuda(
THCudaTensor *input, THCudaTensor *offset, THCudaTensor *gradOutput,
THCudaTensor *gradWeight, /*THCudaTensor *gradBias, */
THCudaTensor *columns, THCudaTensor *ones, int kW, int kH, int dW, int dH,
int padW, int padH, int dilationW, int dilationH, int deformable_group,
float scale, int im2col_step);