2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2019-02-27 11:39:32 +01:00
|
|
|
* Copyright (C) 2017-2019 Intel Corporation
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
2018-10-27 14:46:29 -07:00
|
|
|
#include "engine_node.h"
|
2019-02-27 11:39:32 +01:00
|
|
|
|
2017-12-21 00:45:38 +01:00
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
|
|
namespace OCLRT {
|
2018-02-02 10:33:31 +01:00
|
|
|
typedef uint64_t FlushStamp;
|
2017-12-21 00:45:38 +01:00
|
|
|
struct CompletionStamp {
|
|
|
|
|
uint32_t taskCount;
|
|
|
|
|
uint32_t taskLevel;
|
|
|
|
|
FlushStamp flushStamp;
|
|
|
|
|
};
|
|
|
|
|
} // namespace OCLRT
|