Files
compute-runtime/opencl/source/context/context_extra.cpp
Mateusz Jablonski 7df9945ebe Add absolute include paths
Change-Id: I67a6919bbbff1d30c7d6cdb257b41c87bad51e7f
Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2020-02-23 23:49:12 +01:00

22 lines
608 B
C++

/*
* Copyright (C) 2018-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#include "shared/source/command_stream/command_stream_receiver.h"
#include "opencl/source/context/context.h"
#include "opencl/source/mem_obj/mem_obj.h"
namespace NEO {
cl_int Context::processExtraProperties(cl_context_properties propertyType, cl_context_properties propertyValue) {
return CL_INVALID_PROPERTY;
}
BlitOperationResult Context::blitMemoryToAllocation(MemObj &memObj, GraphicsAllocation *memory, void *hostPtr, size_t size) const {
return BlitOperationResult::Unsupported;
}
} // namespace NEO