2020-02-25 05:07:46 +08:00
|
|
|
/*
|
2021-02-27 06:02:57 +08:00
|
|
|
* Copyright (C) 2020-2021 Intel Corporation
|
2020-02-25 05:07:46 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "shared/source/kernel/kernel_descriptor.h"
|
|
|
|
|
|
|
|
namespace NEO {
|
2021-02-27 06:02:57 +08:00
|
|
|
bool KernelDescriptor::hasRTCalls() const {
|
|
|
|
return false;
|
2020-02-25 05:07:46 +08:00
|
|
|
}
|
2021-02-27 06:02:57 +08:00
|
|
|
} // namespace NEO
|