mirror of
https://github.com/intel/compute-runtime.git
synced 2025-12-19 16:24:18 +08:00
EngineGroupType BlitDirection PostBlitMode WaitStatus Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
27 lines
359 B
C++
27 lines
359 B
C++
/*
|
|
* Copyright (C) 2018-2023 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
namespace NEO {
|
|
|
|
enum class WaitStatus {
|
|
notReady = 0,
|
|
ready = 1,
|
|
gpuHang = 2,
|
|
};
|
|
|
|
struct WaitParams {
|
|
bool indefinitelyPoll = false;
|
|
bool enableTimeout = false;
|
|
int64_t waitTimeout = 0;
|
|
};
|
|
|
|
} // namespace NEO
|