Files
compute-runtime/third_party/aub_stream/aubstream/engine_node.h
Mateusz Jablonski bb308c04ed Refactor aubstream include interface
set include path to third_party/aub_stream
rename third_party/aub_stream/headers -> third_party/aub_stream/aubstream

Signed-off-by: Mateusz Jablonski <mateusz.jablonski@intel.com>
2022-11-23 10:30:13 +01:00

35 lines
507 B
C++

/*
* Copyright (C) 2022 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <cstdint>
namespace aub_stream {
enum EngineType : uint32_t {
ENGINE_RCS = 0,
ENGINE_BCS,
ENGINE_VCS,
ENGINE_VECS,
ENGINE_CCS,
ENGINE_CCS1,
ENGINE_CCS2,
ENGINE_CCS3,
ENGINE_CCCS,
ENGINE_BCS1,
ENGINE_BCS2,
ENGINE_BCS3,
ENGINE_BCS4,
ENGINE_BCS5,
ENGINE_BCS6,
ENGINE_BCS7,
ENGINE_BCS8,
NUM_ENGINES
};
} // namespace aub_stream