/* * Copyright (C) 2018-2021 Intel Corporation * * SPDX-License-Identifier: MIT * */ #pragma once #include namespace NEO { typedef uint64_t FlushStamp; struct CompletionStamp { uint32_t taskCount; uint32_t taskLevel; FlushStamp flushStamp; static constexpr uint32_t notReady = 0xFFFFFFF0; }; } // namespace NEO