Files
clang-p2996/mlir/include/mlir-c/Dialect/OpenMP.h
max 2b664d678d [mlir][python bindings] turn on openmp
Just as in https://reviews.llvm.org/D157820, dialect registration is independent of any vendor specific libs having been linked/built/etc.

Reviewed By: rkayaith

Differential Revision: https://reviews.llvm.org/D158670
2023-08-23 18:17:04 -05:00

26 lines
616 B
C

//===-- mlir-c/Dialect/OpenMP.h - C API for OpenMP Dialect --------*- 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 MLIR_C_DIALECT_OPENM_H
#define MLIR_C_DIALECT_OPENM_H
#include "mlir-c/IR.h"
#ifdef __cplusplus
extern "C" {
#endif
MLIR_DECLARE_CAPI_DIALECT_REGISTRATION(OpenMP, omp);
#ifdef __cplusplus
}
#endif
#endif // MLIR_C_DIALECT_OPENM_H