feature: Ray Tracing Acceleration Structure (RTAS) Support

Related-To: LOCI-3419

Signed-off-by: Latif, Raiyan <raiyan.latif@intel.com>
This commit is contained in:
Latif, Raiyan
2023-09-13 06:16:16 +00:00
committed by Compute-Runtime-Automation
parent 0538f0524a
commit 179abf00de
24 changed files with 1411 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
#
# Copyright (C) 2023 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
if(UNIX)
target_sources(${L0_STATIC_LIB_NAME}
PRIVATE
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
${CMAKE_CURRENT_SOURCE_DIR}/os_rtas_enumeration.cpp
)
endif()

View File

@@ -0,0 +1,12 @@
/*
* Copyright (C) 2023 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "level_zero/core/source/rtas/rtas.h"
namespace L0 {
std::string RTASBuilder::rtasLibraryName = "libze_intel_gpu_raytracing.so";
} // namespace L0