Skip to content

Commit

Permalink
regenerate
Browse files Browse the repository at this point in the history
  • Loading branch information
Gnimuc committed Apr 7, 2024
1 parent c7b693a commit 8df3d70
Showing 1 changed file with 13 additions and 15 deletions.
28 changes: 13 additions & 15 deletions src/API/16/libMLIR_h.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4663,7 +4663,6 @@ function mlirEnableGlobalDebug(enable)
@ccall mlir_c.mlirEnableGlobalDebug(enable::Bool)::Cvoid
end

# no prototype is found for this function at Debug.h:22:25, please use with caution
"""
mlirIsGlobalDebugEnabled()
Expand All @@ -4688,10 +4687,10 @@ end
Severity of a diagnostic.
"""
@cenum MlirDiagnosticSeverity::UInt32 begin
MlirDiagnosticError = 0
MlirDiagnosticWarning = 1
MlirDiagnosticNote = 2
MlirDiagnosticRemark = 3
MlirDiagnosticError = 0x0000000000000000
MlirDiagnosticWarning = 0x0000000000000001
MlirDiagnosticNote = 0x0000000000000002
MlirDiagnosticRemark = 0x0000000000000003
end

"""
Expand Down Expand Up @@ -5447,15 +5446,15 @@ Dimension level types (and properties) that define sparse tensors. See the docum
These correspond to SparseTensorEncodingAttr::DimLevelType in the C++ API. If updating, keep them in sync and update the static\\_assert in the impl file.
"""
@cenum MlirSparseTensorDimLevelType::UInt32 begin
MLIR_SPARSE_TENSOR_DIM_LEVEL_DENSE = 4
MLIR_SPARSE_TENSOR_DIM_LEVEL_COMPRESSED = 8
MLIR_SPARSE_TENSOR_DIM_LEVEL_COMPRESSED_NU = 9
MLIR_SPARSE_TENSOR_DIM_LEVEL_COMPRESSED_NO = 10
MLIR_SPARSE_TENSOR_DIM_LEVEL_COMPRESSED_NU_NO = 11
MLIR_SPARSE_TENSOR_DIM_LEVEL_SINGLETON = 16
MLIR_SPARSE_TENSOR_DIM_LEVEL_SINGLETON_NU = 17
MLIR_SPARSE_TENSOR_DIM_LEVEL_SINGLETON_NO = 18
MLIR_SPARSE_TENSOR_DIM_LEVEL_SINGLETON_NU_NO = 19
MLIR_SPARSE_TENSOR_DIM_LEVEL_DENSE = 0x0000000000000004
MLIR_SPARSE_TENSOR_DIM_LEVEL_COMPRESSED = 0x0000000000000008
MLIR_SPARSE_TENSOR_DIM_LEVEL_COMPRESSED_NU = 0x0000000000000009
MLIR_SPARSE_TENSOR_DIM_LEVEL_COMPRESSED_NO = 0x000000000000000a
MLIR_SPARSE_TENSOR_DIM_LEVEL_COMPRESSED_NU_NO = 0x000000000000000b
MLIR_SPARSE_TENSOR_DIM_LEVEL_SINGLETON = 0x0000000000000010
MLIR_SPARSE_TENSOR_DIM_LEVEL_SINGLETON_NU = 0x0000000000000011
MLIR_SPARSE_TENSOR_DIM_LEVEL_SINGLETON_NO = 0x0000000000000012
MLIR_SPARSE_TENSOR_DIM_LEVEL_SINGLETON_NU_NO = 0x0000000000000013
end

"""
Expand Down Expand Up @@ -5877,7 +5876,6 @@ function mlirOperationImplementsInterfaceStatic(operationName, context, interfac
@ccall mlir_c.mlirOperationImplementsInterfaceStatic(operationName::MlirStringRef, context::MlirContext, interfaceTypeID::MlirTypeID)::Bool
end

# no prototype is found for this function at Interfaces.h:45:31, please use with caution
"""
mlirInferTypeOpInterfaceTypeID()
Expand Down

0 comments on commit 8df3d70

Please sign in to comment.