-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6eceeef
commit 24714e7
Showing
18 changed files
with
4,687 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
78 changes: 78 additions & 0 deletions
78
thirdparty/OpenImageDenoise/include/OpenImageDenoise/config.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
// Copyright 2018 Intel Corporation | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
#pragma once | ||
|
||
#define OIDN_VERSION_MAJOR 2 | ||
#define OIDN_VERSION_MINOR 1 | ||
#define OIDN_VERSION_PATCH 0 | ||
#define OIDN_VERSION 20100 | ||
#define OIDN_VERSION_STRING "2.1.0" | ||
|
||
/* #undef OIDN_API_NAMESPACE */ | ||
/* #undef OIDN_STATIC_LIB */ | ||
|
||
#if defined(OIDN_API_NAMESPACE) | ||
#define OIDN_API_NAMESPACE_BEGIN namespace { | ||
#define OIDN_API_NAMESPACE_END } | ||
#define OIDN_API_NAMESPACE_USING using namespace ; | ||
#define OIDN_API_EXTERN_C | ||
#define OIDN_NAMESPACE ::oidn | ||
#define OIDN_NAMESPACE_C _oidn | ||
#define OIDN_NAMESPACE_BEGIN namespace { namespace oidn { | ||
#define OIDN_NAMESPACE_END }} | ||
#else | ||
#define OIDN_API_NAMESPACE_BEGIN | ||
#define OIDN_API_NAMESPACE_END | ||
#define OIDN_API_NAMESPACE_USING | ||
#if defined(__cplusplus) | ||
#define OIDN_API_EXTERN_C extern "C" | ||
#else | ||
#define OIDN_API_EXTERN_C | ||
#endif | ||
#define OIDN_NAMESPACE oidn | ||
#define OIDN_NAMESPACE_C oidn | ||
#define OIDN_NAMESPACE_BEGIN namespace oidn { | ||
#define OIDN_NAMESPACE_END } | ||
#endif | ||
|
||
#define OIDN_NAMESPACE_USING using namespace OIDN_NAMESPACE; | ||
|
||
#if defined(OIDN_STATIC_LIB) | ||
#define OIDN_API_IMPORT OIDN_API_EXTERN_C | ||
#define OIDN_API_EXPORT OIDN_API_EXTERN_C | ||
#elif defined(_WIN32) | ||
#define OIDN_API_IMPORT OIDN_API_EXTERN_C __declspec(dllimport) | ||
#define OIDN_API_EXPORT OIDN_API_EXTERN_C __declspec(dllexport) | ||
#else | ||
#define OIDN_API_IMPORT OIDN_API_EXTERN_C | ||
#define OIDN_API_EXPORT OIDN_API_EXTERN_C __attribute__((visibility ("default"))) | ||
#endif | ||
|
||
#if defined(OpenImageDenoise_EXPORTS) | ||
#define OIDN_API OIDN_API_EXPORT | ||
#else | ||
#define OIDN_API OIDN_API_IMPORT | ||
#endif | ||
|
||
#if defined(_WIN32) | ||
#define OIDN_DEPRECATED(msg) __declspec(deprecated(msg)) | ||
#else | ||
#define OIDN_DEPRECATED(msg) __attribute__((deprecated(msg))) | ||
#endif | ||
|
||
#if !defined(OIDN_DEVICE_CPU) | ||
#define OIDN_DEVICE_CPU | ||
#endif | ||
#if !defined(OIDN_DEVICE_SYCL) | ||
/* #undef OIDN_DEVICE_SYCL */ | ||
#endif | ||
#if !defined(OIDN_DEVICE_CUDA) | ||
#define OIDN_DEVICE_CUDA | ||
#endif | ||
#if !defined(OIDN_DEVICE_HIP) | ||
/* #undef OIDN_DEVICE_HIP */ | ||
#endif | ||
|
||
#define OIDN_FILTER_RT | ||
#define OIDN_FILTER_RTLIGHTMAP |
Binary file not shown.
47 changes: 47 additions & 0 deletions
47
thirdparty/OpenImageDenoise/lib/cmake/OpenImageDenoise-2.1.0/OpenImageDenoiseConfig.cmake
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
## Copyright 2023 Intel Corporation | ||
## SPDX-License-Identifier: Apache-2.0 | ||
|
||
|
||
####### Expanded from @PACKAGE_INIT@ by configure_package_config_file() ####### | ||
####### Any changes to this file will be overwritten by the next CMake run #### | ||
####### The input file was Config.cmake.in ######## | ||
|
||
get_filename_component(PACKAGE_PREFIX_DIR "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) | ||
|
||
macro(set_and_check _var _file) | ||
set(${_var} "${_file}") | ||
if(NOT EXISTS "${_file}") | ||
message(FATAL_ERROR "File or directory ${_file} referenced by variable ${_var} does not exist !") | ||
endif() | ||
endmacro() | ||
|
||
macro(check_required_components _NAME) | ||
foreach(comp ${${_NAME}_FIND_COMPONENTS}) | ||
if(NOT ${_NAME}_${comp}_FOUND) | ||
if(${_NAME}_FIND_REQUIRED_${comp}) | ||
set(${_NAME}_FOUND FALSE) | ||
endif() | ||
endif() | ||
endforeach() | ||
endmacro() | ||
|
||
#################################################################################### | ||
|
||
set(OIDN_DEVICE_CPU ON) | ||
set(OIDN_DEVICE_SYCL OFF) | ||
set(OIDN_DEVICE_CUDA ON) | ||
set(OIDN_DEVICE_HIP OFF) | ||
|
||
set(OIDN_FILTER_RT ON) | ||
set(OIDN_FILTER_RTLIGHTMAP ON) | ||
|
||
set(OIDN_STATIC_LIB OFF) | ||
|
||
if(OIDN_STATIC_LIB AND OIDN_DEVICE_CPU) | ||
include(CMakeFindDependencyMacro) | ||
find_dependency(TBB) | ||
endif() | ||
|
||
include("${CMAKE_CURRENT_LIST_DIR}/OpenImageDenoiseTargets.cmake") | ||
|
||
check_required_components(OpenImageDenoise) |
65 changes: 65 additions & 0 deletions
65
...rty/OpenImageDenoise/lib/cmake/OpenImageDenoise-2.1.0/OpenImageDenoiseConfigVersion.cmake
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# This is a basic version file for the Config-mode of find_package(). | ||
# It is used by write_basic_package_version_file() as input file for configure_file() | ||
# to create a version-file which can be installed along a config.cmake file. | ||
# | ||
# The created file sets PACKAGE_VERSION_EXACT if the current version string and | ||
# the requested version string are exactly the same and it sets | ||
# PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version, | ||
# but only if the requested major version is the same as the current one. | ||
# The variable CVF_VERSION must be set before calling configure_file(). | ||
|
||
|
||
set(PACKAGE_VERSION "2.1.0") | ||
|
||
if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION) | ||
set(PACKAGE_VERSION_COMPATIBLE FALSE) | ||
else() | ||
|
||
if("2.1.0" MATCHES "^([0-9]+)\\.") | ||
set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}") | ||
if(NOT CVF_VERSION_MAJOR VERSION_EQUAL 0) | ||
string(REGEX REPLACE "^0+" "" CVF_VERSION_MAJOR "${CVF_VERSION_MAJOR}") | ||
endif() | ||
else() | ||
set(CVF_VERSION_MAJOR "2.1.0") | ||
endif() | ||
|
||
if(PACKAGE_FIND_VERSION_RANGE) | ||
# both endpoints of the range must have the expected major version | ||
math (EXPR CVF_VERSION_MAJOR_NEXT "${CVF_VERSION_MAJOR} + 1") | ||
if (NOT PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR | ||
OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX_MAJOR STREQUAL CVF_VERSION_MAJOR) | ||
OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX VERSION_LESS_EQUAL CVF_VERSION_MAJOR_NEXT))) | ||
set(PACKAGE_VERSION_COMPATIBLE FALSE) | ||
elseif(PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR | ||
AND ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS_EQUAL PACKAGE_FIND_VERSION_MAX) | ||
OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MAX))) | ||
set(PACKAGE_VERSION_COMPATIBLE TRUE) | ||
else() | ||
set(PACKAGE_VERSION_COMPATIBLE FALSE) | ||
endif() | ||
else() | ||
if(PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR) | ||
set(PACKAGE_VERSION_COMPATIBLE TRUE) | ||
else() | ||
set(PACKAGE_VERSION_COMPATIBLE FALSE) | ||
endif() | ||
|
||
if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION) | ||
set(PACKAGE_VERSION_EXACT TRUE) | ||
endif() | ||
endif() | ||
endif() | ||
|
||
|
||
# if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it: | ||
if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "") | ||
return() | ||
endif() | ||
|
||
# check that the installed version has the same 32/64bit-ness as the one which is currently searching: | ||
if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8") | ||
math(EXPR installedBits "8 * 8") | ||
set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)") | ||
set(PACKAGE_VERSION_UNSUITABLE TRUE) | ||
endif() |
30 changes: 30 additions & 0 deletions
30
...y/OpenImageDenoise/lib/cmake/OpenImageDenoise-2.1.0/OpenImageDenoiseTargets-release.cmake
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#---------------------------------------------------------------- | ||
# Generated CMake target import file for configuration "Release". | ||
#---------------------------------------------------------------- | ||
|
||
# Commands may need to know the format version. | ||
set(CMAKE_IMPORT_FILE_VERSION 1) | ||
|
||
# Import target "OpenImageDenoise_core" for configuration "Release" | ||
set_property(TARGET OpenImageDenoise_core APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) | ||
set_target_properties(OpenImageDenoise_core PROPERTIES | ||
IMPORTED_IMPLIB_RELEASE "${_IMPORT_PREFIX}/lib/OpenImageDenoise_core.lib" | ||
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/OpenImageDenoise_core.dll" | ||
) | ||
|
||
list(APPEND _cmake_import_check_targets OpenImageDenoise_core ) | ||
list(APPEND _cmake_import_check_files_for_OpenImageDenoise_core "${_IMPORT_PREFIX}/lib/OpenImageDenoise_core.lib" "${_IMPORT_PREFIX}/bin/OpenImageDenoise_core.dll" ) | ||
|
||
# Import target "OpenImageDenoise" for configuration "Release" | ||
set_property(TARGET OpenImageDenoise APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE) | ||
set_target_properties(OpenImageDenoise PROPERTIES | ||
IMPORTED_IMPLIB_RELEASE "${_IMPORT_PREFIX}/lib/OpenImageDenoise.lib" | ||
IMPORTED_LINK_DEPENDENT_LIBRARIES_RELEASE "OpenImageDenoise_core" | ||
IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/bin/OpenImageDenoise.dll" | ||
) | ||
|
||
list(APPEND _cmake_import_check_targets OpenImageDenoise ) | ||
list(APPEND _cmake_import_check_files_for_OpenImageDenoise "${_IMPORT_PREFIX}/lib/OpenImageDenoise.lib" "${_IMPORT_PREFIX}/bin/OpenImageDenoise.dll" ) | ||
|
||
# Commands beyond this point should not need to know the version. | ||
set(CMAKE_IMPORT_FILE_VERSION) |
119 changes: 119 additions & 0 deletions
119
thirdparty/OpenImageDenoise/lib/cmake/OpenImageDenoise-2.1.0/OpenImageDenoiseTargets.cmake
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
# Generated by CMake | ||
|
||
if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8) | ||
message(FATAL_ERROR "CMake >= 2.8.0 required") | ||
endif() | ||
if(CMAKE_VERSION VERSION_LESS "2.8.3") | ||
message(FATAL_ERROR "CMake >= 2.8.3 required") | ||
endif() | ||
cmake_policy(PUSH) | ||
cmake_policy(VERSION 2.8.3...3.25) | ||
#---------------------------------------------------------------- | ||
# Generated CMake target import file. | ||
#---------------------------------------------------------------- | ||
|
||
# Commands may need to know the format version. | ||
set(CMAKE_IMPORT_FILE_VERSION 1) | ||
|
||
# Protect against multiple inclusion, which would fail when already imported targets are added once more. | ||
set(_cmake_targets_defined "") | ||
set(_cmake_targets_not_defined "") | ||
set(_cmake_expected_targets "") | ||
foreach(_cmake_expected_target IN ITEMS OpenImageDenoise_weights OpenImageDenoise_common OpenImageDenoise_core OpenImageDenoise) | ||
list(APPEND _cmake_expected_targets "${_cmake_expected_target}") | ||
if(TARGET "${_cmake_expected_target}") | ||
list(APPEND _cmake_targets_defined "${_cmake_expected_target}") | ||
else() | ||
list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}") | ||
endif() | ||
endforeach() | ||
unset(_cmake_expected_target) | ||
if(_cmake_targets_defined STREQUAL _cmake_expected_targets) | ||
unset(_cmake_targets_defined) | ||
unset(_cmake_targets_not_defined) | ||
unset(_cmake_expected_targets) | ||
unset(CMAKE_IMPORT_FILE_VERSION) | ||
cmake_policy(POP) | ||
return() | ||
endif() | ||
if(NOT _cmake_targets_defined STREQUAL "") | ||
string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}") | ||
string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}") | ||
message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n") | ||
endif() | ||
unset(_cmake_targets_defined) | ||
unset(_cmake_targets_not_defined) | ||
unset(_cmake_expected_targets) | ||
|
||
|
||
# Compute the installation prefix relative to this file. | ||
get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH) | ||
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) | ||
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) | ||
get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH) | ||
if(_IMPORT_PREFIX STREQUAL "/") | ||
set(_IMPORT_PREFIX "") | ||
endif() | ||
|
||
# Create imported target OpenImageDenoise_weights | ||
add_library(OpenImageDenoise_weights INTERFACE IMPORTED) | ||
|
||
# Create imported target OpenImageDenoise_common | ||
add_library(OpenImageDenoise_common INTERFACE IMPORTED) | ||
|
||
# Create imported target OpenImageDenoise_core | ||
add_library(OpenImageDenoise_core SHARED IMPORTED) | ||
|
||
set_target_properties(OpenImageDenoise_core PROPERTIES | ||
INTERFACE_LINK_LIBRARIES "OpenImageDenoise_common" | ||
) | ||
|
||
# Create imported target OpenImageDenoise | ||
add_library(OpenImageDenoise SHARED IMPORTED) | ||
|
||
set_target_properties(OpenImageDenoise PROPERTIES | ||
INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include" | ||
) | ||
|
||
if(CMAKE_VERSION VERSION_LESS 3.0.0) | ||
message(FATAL_ERROR "This file relies on consumers using CMake 3.0.0 or greater.") | ||
endif() | ||
|
||
# Load information for each installed configuration. | ||
file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/OpenImageDenoiseTargets-*.cmake") | ||
foreach(_cmake_config_file IN LISTS _cmake_config_files) | ||
include("${_cmake_config_file}") | ||
endforeach() | ||
unset(_cmake_config_file) | ||
unset(_cmake_config_files) | ||
|
||
# Cleanup temporary variables. | ||
set(_IMPORT_PREFIX) | ||
|
||
# Loop over all imported files and verify that they actually exist | ||
foreach(_cmake_target IN LISTS _cmake_import_check_targets) | ||
foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}") | ||
if(NOT EXISTS "${_cmake_file}") | ||
message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file | ||
\"${_cmake_file}\" | ||
but this file does not exist. Possible reasons include: | ||
* The file was deleted, renamed, or moved to another location. | ||
* An install or uninstall procedure did not complete successfully. | ||
* The installation package was faulty and contained | ||
\"${CMAKE_CURRENT_LIST_FILE}\" | ||
but not all the files it references. | ||
") | ||
endif() | ||
endforeach() | ||
unset(_cmake_file) | ||
unset("_cmake_import_check_files_for_${_cmake_target}") | ||
endforeach() | ||
unset(_cmake_target) | ||
unset(_cmake_import_check_targets) | ||
|
||
# This file does not depend on other imported targets which have | ||
# been exported from the same project but in a separate export set. | ||
|
||
# Commands beyond this point should not need to know the version. | ||
set(CMAKE_IMPORT_FILE_VERSION) | ||
cmake_policy(POP) |
Oops, something went wrong.