mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-20 13:11:34 +08:00
23 lines
347 B
C++
23 lines
347 B
C++
/*
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
typedef uint64_t FlushStamp;
|
|
struct CompletionStamp {
|
|
uint32_t taskCount;
|
|
uint32_t taskLevel;
|
|
FlushStamp flushStamp;
|
|
|
|
static constexpr uint32_t notReady = 0xFFFFFFF0;
|
|
};
|
|
|
|
} // namespace NEO
|