1 /*
2  * Copyright (C) 2019-2021 Intel Corporation
3  *
4  * SPDX-License-Identifier: MIT
5  *
6  */
7 
8 #pragma once
9 #include <cstdint>
10 
11 namespace NEO {
12 namespace EngineLimits {
13 
14 constexpr uint32_t maxHandleCount = 4u;
15 
16 }; // namespace EngineLimits
17 } // namespace NEO
18