mirror of https://github.com/llvm/torch-mlir
32 lines
1.1 KiB
C
32 lines
1.1 KiB
C
/*===-- npcomp-c/Registration.h - Registration functions ---------*- C -*-===*\
|
|
|* *|
|
|
|* 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 *|
|
|
|* *|
|
|
\*===----------------------------------------------------------------------===*/
|
|
|
|
#ifndef NPCOMP_C_REGISTRATION_H
|
|
#define NPCOMP_C_REGISTRATION_H
|
|
|
|
#include "mlir-c/IR.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/** Registers all NPComp dialects with a context.
|
|
* This is needed before creating IR for these Dialects.
|
|
*/
|
|
void npcompRegisterAllDialects(MlirContext context);
|
|
|
|
/** Registers all NPComp passes for symbolic access with the global registry. */
|
|
void npcompRegisterAllPasses();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // NPCOMP_C_REGISTRATION_H
|