mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-22 18:25:05 +08:00
17 lines
243 B
C
17 lines
243 B
C
|
|
/*
|
||
|
|
* Copyright (C) 2023 Intel Corporation
|
||
|
|
*
|
||
|
|
* SPDX-License-Identifier: MIT
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
#include "cstdint"
|
||
|
|
|
||
|
|
namespace NEO {
|
||
|
|
|
||
|
|
namespace TimestampPacketSizeControl {
|
||
|
|
constexpr uint32_t preferredPacketCount = 16u;
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace NEO
|