Files
compute-runtime/shared/source/helpers/completion_stamp.h
Bartosz Dunajski 257b1de14e Remove redundant cpp file
Signed-off-by: Bartosz Dunajski <bartosz.dunajski@intel.com>
2021-10-22 17:15:45 +02:00

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