2020-02-20 16:00:19 +01:00
|
|
|
/*
|
2023-12-01 08:57:48 +00:00
|
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
2020-02-20 16:00:19 +01:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
2022-04-26 10:09:28 +00:00
|
|
|
#include "shared/source/built_ins/builtinops/built_in_ops.h"
|
2020-02-20 16:00:19 +01:00
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
namespace EBuiltInOps {
|
|
|
|
|
|
|
|
|
|
using Type = uint32_t;
|
|
|
|
|
|
2023-12-01 08:57:48 +00:00
|
|
|
inline constexpr Type vmeBlockMotionEstimateIntel{maxCoreValue + 1};
|
|
|
|
|
inline constexpr Type vmeBlockAdvancedMotionEstimateCheckIntel{maxCoreValue + 2};
|
|
|
|
|
inline constexpr Type vmeBlockAdvancedMotionEstimateBidirectionalCheckIntel{maxCoreValue + 3};
|
2020-02-20 16:00:19 +01:00
|
|
|
} // namespace EBuiltInOps
|
|
|
|
|
} // namespace NEO
|