From f6174881ad2165a3748d2117987e659015af4063 Mon Sep 17 00:00:00 2001 From: stephen Date: Wed, 17 May 2023 10:43:40 -0400 Subject: [PATCH] Removing compute_86 requirement allows the jetson nano (with cuda 10.2) to compile and run this code --- csrc/jetson/detect/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csrc/jetson/detect/CMakeLists.txt b/csrc/jetson/detect/CMakeLists.txt index 69eb3cc..b85f76c 100644 --- a/csrc/jetson/detect/CMakeLists.txt +++ b/csrc/jetson/detect/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 2.8.12) -set(CMAKE_CUDA_ARCHITECTURES 60 61 62 70 72 75 86) +set(CMAKE_CUDA_ARCHITECTURES 60 61 62 70 72 75) set(CMAKE_CUDA_COMPILER /usr/local/cuda/bin/nvcc) project(yolov8 LANGUAGES CXX CUDA)