MLIR  19.0.0git
DialectNVGPU.cpp
Go to the documentation of this file.
1 //===--- DialectNvgpu.cpp - Pybind module for Nvgpu dialect API support ---===//
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-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #include "mlir-c/Dialect/NVGPU.h"
10 #include "mlir-c/IR.h"
12 #include <pybind11/pybind11.h>
13 
14 namespace py = pybind11;
15 using namespace llvm;
16 using namespace mlir;
17 using namespace mlir::python;
18 using namespace mlir::python::adaptors;
19 
20 static void populateDialectNvgpuSubmodule(const pybind11::module &m) {
21  auto nvgpuTensorMapDescriptorType = mlir_type_subclass(
22  m, "TensorMapDescriptorType", mlirTypeIsANVGPUTensorMapDescriptorType);
23 
24  nvgpuTensorMapDescriptorType.def_classmethod(
25  "get",
26  [](py::object cls, MlirType tensorMemrefType, int swizzle, int l2promo,
27  int oobFill, int interleave, MlirContext ctx) {
29  ctx, tensorMemrefType, swizzle, l2promo, oobFill, interleave));
30  },
31  "Gets an instance of TensorMapDescriptorType in the same context",
32  py::arg("cls"), py::arg("tensor_type"), py::arg("swizzle"),
33  py::arg("l2promo"), py::arg("oob_fill"), py::arg("interleave"),
34  py::arg("ctx") = py::none());
35 }
36 
37 PYBIND11_MODULE(_mlirDialectsNvgpu, m) {
38  m.doc() = "MLIR NVGPU dialect.";
39 
41 }
static void populateDialectNvgpuSubmodule(const pybind11::module &m)
PYBIND11_MODULE(_mlirDialectsNvgpu, m)
MLIR_CAPI_EXPORTED bool mlirTypeIsANVGPUTensorMapDescriptorType(MlirType type)
Definition: NVGPU.cpp:19
MLIR_CAPI_EXPORTED MlirType mlirNVGPUTensorMapDescriptorTypeGet(MlirContext ctx, MlirType tensorMemrefType, int swizzle, int l2promo, int oobFill, int interleave)
Definition: NVGPU.cpp:23
Creates a custom subclass of mlir.ir.Type, implementing a casting constructor and type checking metho...
Include the generated interface declarations.
Definition: CallGraph.h:229
Include the generated interface declarations.