23 lines · cpp
1//===- SPIRVOpAvailability.cpp - MLIR SPIR-V Availability Implementation --===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8//9// Defines the SPIR-V operation availability in the SPIR-V dialect.10//11//===----------------------------------------------------------------------===//12 13#include "mlir/Dialect/SPIRV/IR/SPIRVOps.h"14 15// TableGen'erated operation interfaces for querying versions, extensions, and16// capabilities.17#include "mlir/Dialect/SPIRV/IR/SPIRVAvailability.cpp.inc"18 19namespace mlir::spirv {20// TableGen'erated operation availability interface implementations.21#include "mlir/Dialect/SPIRV/IR/SPIRVOpAvailabilityImpl.inc"22} // namespace mlir::spirv23