mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-05 17:20:26 +08:00
Clean obsolete code.
Change-Id: I9551f7217924c7ea8f44a3322fc3096252c4d6f7
This commit is contained in:
committed by
sys_ocldev
parent
df1d4a76f1
commit
f90ebac12a
@@ -44,9 +44,6 @@ set(RUNTIME_SRCS_BUILT_IN_KERNELS
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/kernels/vme_block_motion_estimate_intel.igdrcl_built_in
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/kernels/vme_block_advanced_motion_estimate_check_intel.igdrcl_built_in
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/kernels/vme_block_advanced_motion_estimate_bidirectional_check_intel.igdrcl_built_in
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/kernels/vebox_ve_enhance_intel.igdrcl_built_in
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/kernels/vebox_ve_dn_enhance_intel.igdrcl_built_in
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/kernels/vebox_ve_dn_di_enhance_intel.igdrcl_built_in
|
||||
PARENT_SCOPE
|
||||
)
|
||||
|
||||
|
||||
@@ -167,26 +167,10 @@ static const char *blockAdvancedMotionEstimateBidirectionalCheckIntelSrc = {
|
||||
#include "kernels/vme_block_advanced_motion_estimate_bidirectional_check_intel_frontend.igdrcl_built_in"
|
||||
};
|
||||
|
||||
// VEBOX:
|
||||
static const char *veEnhanceIntelSrc = {
|
||||
#include "kernels/vebox_ve_enhance_intel.igdrcl_built_in"
|
||||
};
|
||||
|
||||
static const char *veDnEnhanceIntelSrc = {
|
||||
#include "kernels/vebox_ve_dn_enhance_intel.igdrcl_built_in"
|
||||
};
|
||||
|
||||
static const char *veDnDiEnhanceIntelSrc = {
|
||||
#include "kernels/vebox_ve_dn_di_enhance_intel.igdrcl_built_in"
|
||||
};
|
||||
|
||||
static const std::tuple<const char *, const char *> mediaBuiltIns[] = {
|
||||
std::make_tuple("block_motion_estimate_intel", blockMotionEstimateIntelSrc),
|
||||
std::make_tuple("block_advanced_motion_estimate_check_intel", blockAdvancedMotionEstimateCheckIntelSrc),
|
||||
std::make_tuple("block_advanced_motion_estimate_bidirectional_check_intel", blockAdvancedMotionEstimateBidirectionalCheckIntelSrc),
|
||||
std::make_tuple("ve_enhance_intel", veEnhanceIntelSrc),
|
||||
std::make_tuple("ve_dn_enhance_intel", veDnEnhanceIntelSrc),
|
||||
std::make_tuple("ve_dn_di_enhance_intel", veDnDiEnhanceIntelSrc),
|
||||
};
|
||||
|
||||
// Unlike other built-ins media kernels are not stored in BuiltIns object.
|
||||
|
||||
@@ -1,32 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2017, Intel Corporation
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included
|
||||
* in all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
||||
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
||||
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
* OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
R"===(
|
||||
__kernel void ve_dn_di_enhance_intel(sampler_t accelerator,
|
||||
int flags,
|
||||
__read_only image2d_t current_input,
|
||||
__read_only image2d_t ref_input,
|
||||
__write_only image2d_t current_output,
|
||||
__write_only image2d_t ref_output,
|
||||
__write_only image2d_t dndi_output) {
|
||||
}
|
||||
)==="
|
||||
@@ -1,30 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2017, Intel Corporation
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included
|
||||
* in all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
||||
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
||||
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
* OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
R"===(
|
||||
__kernel void ve_dn_enhance_intel(sampler_t accelerator,
|
||||
int flags,
|
||||
__read_only image2d_t ref_input,
|
||||
__read_only image2d_t current_input,
|
||||
__write_only image2d_t current_output) {
|
||||
}
|
||||
)==="
|
||||
@@ -1,29 +0,0 @@
|
||||
/*
|
||||
* Copyright (c) 2017, Intel Corporation
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included
|
||||
* in all copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
||||
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
||||
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
||||
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
* OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
R"===(
|
||||
__kernel void ve_enhance_intel(sampler_t accelerator,
|
||||
int flags,
|
||||
__read_only image2d_t current_input,
|
||||
__write_only image2d_t current_output) {
|
||||
}
|
||||
)==="
|
||||
Reference in New Issue
Block a user