Skip to content
This repository was archived by the owner on Oct 11, 2025. It is now read-only.

Commit 29c36c5

Browse files
authored
[NFC] Make NVGPU casing consistent (#91903)
1 parent 29a582b commit 29c36c5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

DialectNVGPU.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//===--- DialectNvgpu.cpp - Pybind module for Nvgpu dialect API support ---===//
1+
//===--- DialectNVGPU.cpp - Pybind module for NVGPU dialect API support ---===//
22
//
33
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
44
// See https://llvm.org/LICENSE.txt for license information.
@@ -17,7 +17,7 @@ using namespace mlir;
1717
using namespace mlir::python;
1818
using namespace mlir::python::adaptors;
1919

20-
static void populateDialectNvgpuSubmodule(const pybind11::module &m) {
20+
static void populateDialectNVGPUSubmodule(const pybind11::module &m) {
2121
auto nvgpuTensorMapDescriptorType = mlir_type_subclass(
2222
m, "TensorMapDescriptorType", mlirTypeIsANVGPUTensorMapDescriptorType);
2323

@@ -34,8 +34,8 @@ static void populateDialectNvgpuSubmodule(const pybind11::module &m) {
3434
py::arg("ctx") = py::none());
3535
}
3636

37-
PYBIND11_MODULE(_mlirDialectsNvgpu, m) {
37+
PYBIND11_MODULE(_mlirDialectsNVGPU, m) {
3838
m.doc() = "MLIR NVGPU dialect.";
3939

40-
populateDialectNvgpuSubmodule(m);
40+
populateDialectNVGPUSubmodule(m);
4141
}

0 commit comments

Comments
 (0)