반응형
pip install -e .
detectron2 install 중 error 발생.
detectron2/layers/csrc/nms_rotated/nms_rotated_cuda.cu
를 열어 아래와 같이 수정 후 다시 install 하면 해결 된다.
<수정 전>
// Copyright (c) Facebook, Inc. and its affiliates.
#include <ATen/ATen.h>
#include <ATen/cuda/CUDAContext.h>
#include <c10/cuda/CUDAGuard.h>
#include <ATen/cuda/CUDAApplyUtils.cuh>
#ifdef WITH_CUDA
#include "../box_iou_rotated/box_iou_rotated_utils.h"
#endif
// TODO avoid this when pytorch supports "same directory" hipification
#ifdef WITH_HIP
#include "box_iou_rotated/box_iou_rotated_utils.h"
#endif
<수정 후>
// Copyright (c) Facebook, Inc. and its affiliates.
#include <ATen/ATen.h>
#include <ATen/cuda/CUDAContext.h>
#include <c10/cuda/CUDAGuard.h>
#include <ATen/cuda/CUDAApplyUtils.cuh>
// #ifdef WITH_CUDA
// #include "../box_iou_rotated/box_iou_rotated_utils.h"
// #endif
// // TODO avoid this when pytorch supports "same directory" hipification
// #ifdef WITH_HIP
// #include "box_iou_rotated/box_iou_rotated_utils.h"
// #endif
#include "box_iou_rotated/box_iou_rotated_utils.h"
반응형
'기타' 카테고리의 다른 글
Moving Average Filter, 이동 평균 필터 (0) | 2023.09.15 |
---|---|
Average Filter, 평균 필터 (0) | 2023.09.14 |
[GitLab] 접속 시 연결을 거부했습니다. (ERR_CONNECTION_REFUSED) (0) | 2023.03.07 |
cuda 10.x/11.x props not found (0) | 2022.10.11 |
C# WinForm에 ocx(x32/x64) 등록할 때 문제 (0) | 2022.09.19 |