compute-runtime/shared/source/command_stream/thread_arbitration_policy.h

22 lines
299 B
C++

/*
* Copyright (C) 2018-2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <cstdint>
namespace NEO {
enum ThreadArbitrationPolicy : int32_t {
AgeBased = 0,
RoundRobin = 1,
RoundRobinAfterDependency = 2,
NotPresent = -1
};
} // namespace NEO