Skip to content

from . import deform_conv_cuda,ImportError: /home/user/repos/mmdetection/mmdet/ops/dcn/deform_conv_cuda.cpython-37m-x86_64-linux-gnu..so: undefined symbol: _ZN6caffe26detail37_typeMetaDataInstance_preallocated_32EI want to know the problem with this mmdet installation, my CUDA version is 10.1, pytorch version is 1.7.0, mmcv-full1.7.1 installed, mmdet2.10.0, if there is no other than the version is correct, but there is still this problem, it really crashes #5597

from . import deform_conv_cuda,ImportError: /home/user/repos/mmdetection/mmdet/ops/dcn/deform_conv_cuda.cpython-37m-x86_64-linux-gnu..so: undefined symbol: _ZN6caffe26detail37_typeMetaDataInstance_preallocated_32EI want to know the problem with this mmdet installation, my CUDA version is 10.1, pytorch version is 1.7.0, mmcv-full1.7.1 installed, mmdet2.10.0, if there is no other than the version is correct, but there is still this problem, it really crashes

from . import deform_conv_cuda,ImportError: /home/user/repos/mmdetection/mmdet/ops/dcn/deform_conv_cuda.cpython-37m-x86_64-linux-gnu..so: undefined symbol: _ZN6caffe26detail37_typeMetaDataInstance_preallocated_32EI want to know the problem with this mmdet installation, my CUDA version is 10.1, pytorch version is 1.7.0, mmcv-full1.7.1 installed, mmdet2.10.0, if there is no other than the version is correct, but there is still this problem, it really crashes #5597

name: Remove needs-more-info label
on:
issue_comment:
types: [created]
issues:
types: [edited]
jobs:
remove-needs-more-info-label:
runs-on: ubuntu-latest
# 1. issue_comment events could include PR comment, filter them out
# 2. Only trigger action if event was produced by the original author
if: ${{ !github.event.issue.pull_request && github.event.sender.login == github.event.issue.user.login }}
steps:
- name: Remove needs-more-info label
uses: octokit/request-action@v2.x
continue-on-error: true
with:
route: DELETE /repos/:repository/issues/:issue/labels/:label
repository: ${{ github.repository }}
issue: ${{ github.event.issue.number }}
label: needs-more-info
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}