LLZK 2.1.1
An open-source IR for Zero Knowledge (ZK) circuits
Loading...
Searching...
No Matches
Dialect.td
Go to the documentation of this file.
1//===-- Dialect.td -----------------------------------------*- tablegen -*-===//
2//
3// Part of the LLZK Project, under the Apache License v2.0.
4// See LICENSE.txt for license information.
5// Copyright 2026 Project LLZK
6// SPDX-License-Identifier: Apache-2.0
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLZK_VERIF_DIALECT
11#define LLZK_VERIF_DIALECT
12
13include "mlir/IR/DialectBase.td"
14
15def VerifDialect : Dialect {
16 let name = "verif";
17 let summary = "LLZK verification dialect for encoding specifications for "
18 "functions and structs.";
19
20 let cppNamespace = "::llzk::verif";
21}
22
23#endif // LLZK_VERIF_DIALECT