Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
MMCV
Commits
6e9ce183
Unverified
Commit
6e9ce183
authored
Feb 24, 2022
by
Zaida Zhou
Committed by
GitHub
Feb 24, 2022
Browse files
Add copyright pre-commit-hook (#1742)
* first commit * Add copyright pre-commit-hook
parent
0a8e67f7
Changes
119
Hide whitespace changes
Inline
Side-by-side
Showing
20 changed files
with
20 additions
and
0 deletions
+20
-0
tests/test_ops/test_nms_rotated.py
tests/test_ops/test_nms_rotated.py
+1
-0
tests/test_ops/test_onnx.py
tests/test_ops/test_onnx.py
+1
-0
tests/test_ops/test_pixel_group.py
tests/test_ops/test_pixel_group.py
+1
-0
tests/test_ops/test_points_in_polygons.py
tests/test_ops/test_points_in_polygons.py
+1
-0
tests/test_ops/test_psa_mask.py
tests/test_ops/test_psa_mask.py
+1
-0
tests/test_ops/test_riroi_align_rotated.py
tests/test_ops/test_riroi_align_rotated.py
+1
-0
tests/test_ops/test_roi_align.py
tests/test_ops/test_roi_align.py
+1
-0
tests/test_ops/test_roi_align_rotated.py
tests/test_ops/test_roi_align_rotated.py
+1
-0
tests/test_ops/test_roi_pool.py
tests/test_ops/test_roi_pool.py
+1
-0
tests/test_ops/test_roipoint_pool3d.py
tests/test_ops/test_roipoint_pool3d.py
+1
-0
tests/test_ops/test_rotated_feature_align.py
tests/test_ops/test_rotated_feature_align.py
+1
-0
tests/test_ops/test_saconv.py
tests/test_ops/test_saconv.py
+1
-0
tests/test_ops/test_scatter_points.py
tests/test_ops/test_scatter_points.py
+1
-0
tests/test_ops/test_spconv.py
tests/test_ops/test_spconv.py
+1
-0
tests/test_ops/test_syncbn.py
tests/test_ops/test_syncbn.py
+1
-0
tests/test_ops/test_tensorrt.py
tests/test_ops/test_tensorrt.py
+1
-0
tests/test_ops/test_tensorrt_preprocess.py
tests/test_ops/test_tensorrt_preprocess.py
+1
-0
tests/test_ops/test_three_interpolate.py
tests/test_ops/test_three_interpolate.py
+1
-0
tests/test_ops/test_three_nn.py
tests/test_ops/test_three_nn.py
+1
-0
tests/test_ops/test_tin_shift.py
tests/test_ops/test_tin_shift.py
+1
-0
No files found.
tests/test_ops/test_nms_rotated.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
numpy
as
np
import
numpy
as
np
import
pytest
import
pytest
import
torch
import
torch
...
...
tests/test_ops/test_onnx.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
os
import
os
import
warnings
import
warnings
from
functools
import
partial
from
functools
import
partial
...
...
tests/test_ops/test_pixel_group.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
numpy
as
np
import
numpy
as
np
import
torch
import
torch
...
...
tests/test_ops/test_points_in_polygons.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
numpy
as
np
import
numpy
as
np
import
pytest
import
pytest
import
torch
import
torch
...
...
tests/test_ops/test_psa_mask.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
numpy
as
np
import
numpy
as
np
import
torch
import
torch
import
torch.nn
as
nn
import
torch.nn
as
nn
...
...
tests/test_ops/test_riroi_align_rotated.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
numpy
as
np
import
numpy
as
np
import
pytest
import
pytest
import
torch
import
torch
...
...
tests/test_ops/test_roi_align.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
numpy
as
np
import
numpy
as
np
import
pytest
import
pytest
import
torch
import
torch
...
...
tests/test_ops/test_roi_align_rotated.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
numpy
as
np
import
numpy
as
np
import
pytest
import
pytest
import
torch
import
torch
...
...
tests/test_ops/test_roi_pool.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
os
import
os
import
numpy
as
np
import
numpy
as
np
...
...
tests/test_ops/test_roipoint_pool3d.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
pytest
import
pytest
import
torch
import
torch
...
...
tests/test_ops/test_rotated_feature_align.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
pytest
import
pytest
import
torch
import
torch
...
...
tests/test_ops/test_saconv.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
torch
import
torch
import
torch.nn
as
nn
import
torch.nn
as
nn
...
...
tests/test_ops/test_scatter_points.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
pytest
import
pytest
import
torch
import
torch
from
torch.autograd
import
gradcheck
from
torch.autograd
import
gradcheck
...
...
tests/test_ops/test_spconv.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
pytest
import
pytest
import
torch
import
torch
from
torch
import
nn
from
torch
import
nn
...
...
tests/test_ops/test_syncbn.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
os
import
os
import
platform
import
platform
...
...
tests/test_ops/test_tensorrt.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
os
import
os
from
functools
import
partial
from
functools
import
partial
from
typing
import
Callable
from
typing
import
Callable
...
...
tests/test_ops/test_tensorrt_preprocess.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
os
import
os
from
functools
import
wraps
from
functools
import
wraps
...
...
tests/test_ops/test_three_interpolate.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
pytest
import
pytest
import
torch
import
torch
...
...
tests/test_ops/test_three_nn.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
pytest
import
pytest
import
torch
import
torch
...
...
tests/test_ops/test_tin_shift.py
View file @
6e9ce183
# Copyright (c) OpenMMLab. All rights reserved.
import
os
import
os
import
numpy
as
np
import
numpy
as
np
...
...
Prev
1
2
3
4
5
6
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment