mirror of https://github.com/open-mmlab/mmcv.git
fix the npu deform roi pool param name error (#3235)
parent
1c11e0c004
commit
53e6b94ca7
|
@ -53,7 +53,7 @@ void deform_roi_pool_backward_npu(Tensor grad_output, Tensor input, Tensor rois,
|
||||||
.Output(grad_offset)
|
.Output(grad_offset)
|
||||||
.Attr("output_size", output_size)
|
.Attr("output_size", output_size)
|
||||||
.Attr("spatial_scale", spatial_scale)
|
.Attr("spatial_scale", spatial_scale)
|
||||||
.Attr("sample_ratio", sampling_ratio_)
|
.Attr("sampling_ratio", sampling_ratio_)
|
||||||
.Attr("gamma", gamma)
|
.Attr("gamma", gamma)
|
||||||
.Run();
|
.Run();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue