1//===-- Dialect.td -----------------------------------------*- tablegen -*-===//
3// Part of the LLZK Project, under the Apache License v2.0.
4// See LICENSE.txt for license information.
5// Copyright 2025 Veridise Inc.
6// SPDX-License-Identifier: Apache-2.0
8//===----------------------------------------------------------------------===//
10#ifndef LLZK_FELT_DIALECT
11#define LLZK_FELT_DIALECT
13include "mlir/IR/DialectBase.td"
15def FeltDialect : Dialect {
17 let summary = "LLZK felt (Field ELemenT) type and operations.";
19 let cppNamespace = "::llzk::felt";
21 let useDefaultTypePrinterParser = true;
22 let useDefaultAttributePrinterParser = true;
25#endif // LLZK_FELT_DIALECT