2019-07-05 16:31:32 +08:00
|
|
|
/*
|
2020-02-19 23:32:00 +08:00
|
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
2019-07-05 16:31:32 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2020-02-20 23:00:19 +08:00
|
|
|
#pragma once
|
2019-07-05 16:31:32 +08:00
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
namespace EBuiltInOps {
|
|
|
|
|
|
|
|
using Type = uint32_t;
|
|
|
|
|
|
|
|
constexpr Type AuxTranslation{0};
|
|
|
|
constexpr Type CopyBufferToBuffer{1};
|
2019-10-10 00:20:12 +08:00
|
|
|
constexpr Type CopyBufferToBufferStateless{2};
|
|
|
|
constexpr Type CopyBufferRect{3};
|
2019-10-16 18:46:34 +08:00
|
|
|
constexpr Type CopyBufferRectStateless{4};
|
|
|
|
constexpr Type FillBuffer{5};
|
2019-10-29 21:23:32 +08:00
|
|
|
constexpr Type FillBufferStateless{6};
|
|
|
|
constexpr Type CopyBufferToImage3d{7};
|
2019-11-14 22:25:38 +08:00
|
|
|
constexpr Type CopyBufferToImage3dStateless{8};
|
|
|
|
constexpr Type CopyImage3dToBuffer{9};
|
2019-11-14 22:48:30 +08:00
|
|
|
constexpr Type CopyImage3dToBufferStateless{10};
|
|
|
|
constexpr Type CopyImageToImage1d{11};
|
|
|
|
constexpr Type CopyImageToImage2d{12};
|
|
|
|
constexpr Type CopyImageToImage3d{13};
|
|
|
|
constexpr Type FillImage1d{14};
|
|
|
|
constexpr Type FillImage2d{15};
|
|
|
|
constexpr Type FillImage3d{16};
|
2020-08-05 19:17:08 +08:00
|
|
|
constexpr Type QueryKernelTimestamps{17};
|
2019-10-10 00:20:12 +08:00
|
|
|
|
2020-08-05 19:17:08 +08:00
|
|
|
constexpr Type MaxBaseValue{17};
|
2020-02-20 23:00:19 +08:00
|
|
|
constexpr Type COUNT{64};
|
2019-07-05 16:31:32 +08:00
|
|
|
} // namespace EBuiltInOps
|
|
|
|
} // namespace NEO
|