mirror of
https://github.com/intel/compute-runtime.git
synced 2026-01-03 06:49:52 +08:00
21 lines
523 B
C++
21 lines
523 B
C++
/*
|
|
* Copyright (C) 2020-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
#include "shared/source/built_ins/builtinops/built_in_ops.h"
|
|
|
|
namespace NEO {
|
|
namespace EBuiltInOps {
|
|
|
|
using Type = uint32_t;
|
|
|
|
inline constexpr Type vmeBlockMotionEstimateIntel{maxCoreValue + 1};
|
|
inline constexpr Type vmeBlockAdvancedMotionEstimateCheckIntel{maxCoreValue + 2};
|
|
inline constexpr Type vmeBlockAdvancedMotionEstimateBidirectionalCheckIntel{maxCoreValue + 3};
|
|
} // namespace EBuiltInOps
|
|
} // namespace NEO
|