Add absolute path to include

Change-Id: Ib0782b4ab8d9a26ec358ecfb57721f4fe8d51b06
This commit is contained in:
kamdiedrich
2020-02-22 22:50:57 +01:00
committed by sys_ocldev
parent a48b50c554
commit d015d3633f
1377 changed files with 5386 additions and 5464 deletions

View File

@@ -52,7 +52,7 @@ function(compile_kernel target gen_type platform_type kernel)
set(SCHEDULER_CPP ${SCHEDULER_CPP} PARENT_SCOPE)
add_custom_target(${target} DEPENDS ${OUTPUTPATH})
set_target_properties(${target} PROPERTIES FOLDER "scheduler/${gen_type_lower}")
set_target_properties(${target} PROPERTIES FOLDER "opencl/source/scheduler/${gen_type_lower}")
endfunction()
macro(macro_for_each_gen)

View File

@@ -5,12 +5,11 @@
*
*/
#include "scheduler/scheduler_kernel.h"
#include "opencl/source/scheduler/scheduler_kernel.h"
#include "core/device/device.h"
#include "core/helpers/hw_helper.h"
#include "device/cl_device.h"
#include "opencl/source/device/cl_device.h"
#include <cinttypes>

View File

@@ -6,8 +6,8 @@
*/
#pragma once
#include "built_ins/built_ins.h"
#include "kernel/kernel.h"
#include "opencl/source/built_ins/built_ins.h"
#include "opencl/source/kernel/kernel.h"
#include <algorithm>