MLIR 23.0.0git
ShardingExtensions.cpp
Go to the documentation of this file.
1//===- ShardingExtensions.cpp ---------------------------------------------===//
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
13
14using namespace mlir;
15using namespace mlir::bufferization;
16using namespace mlir::shard;
17
19 DialectRegistry &registry) {
20
21 registry.addExtension(+[](MLIRContext *ctx, BufferizationDialect *dialect) {
22 AllocTensorOp::attachInterface<
24 *ctx);
25 DeallocTensorOp::attachInterface<
27 *ctx);
28 MaterializeInDestinationOp::attachInterface<
30 });
31}
The DialectRegistry maps a dialect namespace to a constructor for the matching dialect.
bool addExtension(TypeID extensionID, std::unique_ptr< DialectExtensionBase > extension)
Add the given extension to the registry.
MLIRContext is the top-level object for a collection of MLIR operations.
Definition MLIRContext.h:63
void registerShardingInterfaceExternalModels(DialectRegistry &registry)
Include the generated interface declarations.