[Mlir-commits] [mlir] [mlir] Use custom mlir::Complex type for non-float complex numbers (PR #191821)
Rahul Joshi
llvmlistbot at llvm.org
Wed Apr 29 05:20:06 PDT 2026
================
@@ -0,0 +1,251 @@
+//===- ComplexTest.cpp - mlir::complex Tests ------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+#include "mlir/Support/Complex.h"
+#include "gtest/gtest.h"
+
+namespace mlir {
----------------
jurahul wrote:
nit: why do we need namespace mlir here? I'd expect the test to have "using namespace mlir"
https://github.com/llvm/llvm-project/pull/191821
More information about the Mlir-commits
mailing list