Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions retinify/src/cuda/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
set(CMAKE_CUDA_ARCHITECTURES 75 80 86 87 89 90)

file(GLOB SRCS_CUDA
common.h
depth.cu
depth.h
occlusion.cu
occlusion.h
reproject.cu
reproject.h
cuda_common.cuh
cuda_depth.cu
cuda_depth.cuh
cuda_occlusion.cu
cuda_occlusion.cuh
cuda_reproject.cu
cuda_reproject.cuh
)

add_library(retinify-cuda STATIC ${SRCS_CUDA})
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// SPDX-FileCopyrightText: Copyright (c) 2025 Sensui Yagi. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

#include "common.h"
#include "depth.h"
#include "cuda_common.cuh"
#include "cuda_depth.cuh"

#include <cmath>
#include <cstddef>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// SPDX-FileCopyrightText: Copyright (c) 2025 Sensui Yagi. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

#include "common.h"
#include "occlusion.h"
#include "cuda_common.cuh"
#include "cuda_occlusion.cuh"

#include <cfloat>
#include <cmath>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// SPDX-FileCopyrightText: Copyright (c) 2025 Sensui Yagi. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

#include "common.h"
#include "reproject.h"
#include "cuda_common.cuh"
#include "cuda_reproject.cuh"

#include <cmath>
#include <cstddef>
Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions retinify/src/imgproc.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
#include "retinify/logging.hpp"

#ifdef BUILD_WITH_TENSORRT
#include "cuda/depth.h"
#include "cuda/occlusion.h"
#include "cuda/reproject.h"
#include "cuda/cuda_depth.cuh"
#include "cuda/cuda_occlusion.cuh"
#include "cuda/cuda_reproject.cuh"
#include <npp.h>
#else
#endif
Expand Down