mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-08 22:12:59 +08:00
Change-Id: I30c82d2b0007d745d54c3bbc160e17b420193f3b Signed-off-by: Jablonski, Mateusz <mateusz.jablonski@intel.com>
20 lines
417 B
C++
20 lines
417 B
C++
/*
|
|
* Copyright (C) 2017-2020 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "opencl/source/program/block_kernel_manager.h"
|
|
|
|
namespace NEO {
|
|
|
|
class MockBlockKernelManager : public BlockKernelManager {
|
|
public:
|
|
MockBlockKernelManager() = default;
|
|
using BlockKernelManager::blockKernelInfoArray;
|
|
using BlockKernelManager::blockPrivateSurfaceArray;
|
|
};
|
|
} // namespace NEO
|