Initial support for oneAPI Level Zero

Change-Id: I221df8427b1844237a4d9d900c58512706b0be0f
This commit is contained in:
Brandon Fliflet
2020-03-06 11:09:57 +01:00
committed by ocldev
parent 612f47ced3
commit 27f4bce42f
277 changed files with 27508 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
#
# Copyright (C) 2019-2020 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
set(L0_EXPERIMENTAL_SOURCES
${CMAKE_CURRENT_SOURCE_DIR}/experimental.cpp
)
target_include_directories(${TARGET_NAME_L0}
PUBLIC
${CMAKE_CURRENT_SOURCE_DIR}/
)
target_sources(${TARGET_NAME_L0}
PRIVATE
${L0_EXPERIMENTAL_SOURCES}
${CMAKE_CURRENT_SOURCE_DIR}/CMakeLists.txt
)
# Make our source files visible to parent
set_property(GLOBAL PROPERTY L0_EXPERIMENTAL_SOURCES ${L0_EXPERIMENTAL_SOURCES})

View File

@@ -0,0 +1,9 @@
/*
* Copyright (C) 2019-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
namespace L0 {
} // namespace L0