compute-runtime/third_party/aub_stream/headers/engine_node.h

23 lines
308 B
C
Raw Normal View History

/*
* Copyright (C) 2017-2019 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,
NUM_ENGINES
};
} // namespace aub_stream