MLIR
18.0.0git
|
Go to the source code of this file.
Functions | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirAttributeGetNull (void) |
Returns an empty attribute. More... | |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsALocation (MlirAttribute attr) |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsAAffineMap (MlirAttribute attr) |
Checks whether the given attribute is an affine map attribute. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirAffineMapAttrGet (MlirAffineMap map) |
Creates an affine map attribute wrapping the given map. More... | |
MLIR_CAPI_EXPORTED MlirAffineMap | mlirAffineMapAttrGetValue (MlirAttribute attr) |
Returns the affine map wrapped in the given affine map attribute. More... | |
MLIR_CAPI_EXPORTED MlirTypeID | mlirAffineMapAttrGetTypeID (void) |
Returns the typeID of an AffineMap attribute. More... | |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsAArray (MlirAttribute attr) |
Checks whether the given attribute is an array attribute. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirArrayAttrGet (MlirContext ctx, intptr_t numElements, MlirAttribute const *elements) |
Creates an array element containing the given list of elements in the given context. More... | |
MLIR_CAPI_EXPORTED intptr_t | mlirArrayAttrGetNumElements (MlirAttribute attr) |
Returns the number of elements stored in the given array attribute. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirArrayAttrGetElement (MlirAttribute attr, intptr_t pos) |
Returns pos-th element stored in the given array attribute. More... | |
MLIR_CAPI_EXPORTED MlirTypeID | mlirArrayAttrGetTypeID (void) |
Returns the typeID of an Array attribute. More... | |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsADictionary (MlirAttribute attr) |
Checks whether the given attribute is a dictionary attribute. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDictionaryAttrGet (MlirContext ctx, intptr_t numElements, MlirNamedAttribute const *elements) |
Creates a dictionary attribute containing the given list of elements in the provided context. More... | |
MLIR_CAPI_EXPORTED intptr_t | mlirDictionaryAttrGetNumElements (MlirAttribute attr) |
Returns the number of attributes contained in a dictionary attribute. More... | |
MLIR_CAPI_EXPORTED MlirNamedAttribute | mlirDictionaryAttrGetElement (MlirAttribute attr, intptr_t pos) |
Returns pos-th element of the given dictionary attribute. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDictionaryAttrGetElementByName (MlirAttribute attr, MlirStringRef name) |
Returns the dictionary attribute element with the given name or NULL if the given name does not exist in the dictionary. More... | |
MLIR_CAPI_EXPORTED MlirTypeID | mlirDictionaryAttrGetTypeID (void) |
Returns the typeID of a Dictionary attribute. More... | |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsAFloat (MlirAttribute attr) |
Checks whether the given attribute is a floating point attribute. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirFloatAttrDoubleGet (MlirContext ctx, MlirType type, double value) |
Creates a floating point attribute in the given context with the given double value and double-precision FP semantics. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirFloatAttrDoubleGetChecked (MlirLocation loc, MlirType type, double value) |
Same as "mlirFloatAttrDoubleGet", but if the type is not valid for a construction of a FloatAttr, returns a null MlirAttribute. More... | |
MLIR_CAPI_EXPORTED double | mlirFloatAttrGetValueDouble (MlirAttribute attr) |
Returns the value stored in the given floating point attribute, interpreting the value as double. More... | |
MLIR_CAPI_EXPORTED MlirTypeID | mlirFloatAttrGetTypeID (void) |
Returns the typeID of a Float attribute. More... | |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsAInteger (MlirAttribute attr) |
Checks whether the given attribute is an integer attribute. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirIntegerAttrGet (MlirType type, int64_t value) |
Creates an integer attribute of the given type with the given integer value. More... | |
MLIR_CAPI_EXPORTED int64_t | mlirIntegerAttrGetValueInt (MlirAttribute attr) |
Returns the value stored in the given integer attribute, assuming the value is of signless type and fits into a signed 64-bit integer. More... | |
MLIR_CAPI_EXPORTED int64_t | mlirIntegerAttrGetValueSInt (MlirAttribute attr) |
Returns the value stored in the given integer attribute, assuming the value is of signed type and fits into a signed 64-bit integer. More... | |
MLIR_CAPI_EXPORTED uint64_t | mlirIntegerAttrGetValueUInt (MlirAttribute attr) |
Returns the value stored in the given integer attribute, assuming the value is of unsigned type and fits into an unsigned 64-bit integer. More... | |
MLIR_CAPI_EXPORTED MlirTypeID | mlirIntegerAttrGetTypeID (void) |
Returns the typeID of an Integer attribute. More... | |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsABool (MlirAttribute attr) |
Checks whether the given attribute is a bool attribute. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirBoolAttrGet (MlirContext ctx, int value) |
Creates a bool attribute in the given context with the given value. More... | |
MLIR_CAPI_EXPORTED bool | mlirBoolAttrGetValue (MlirAttribute attr) |
Returns the value stored in the given bool attribute. More... | |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsAIntegerSet (MlirAttribute attr) |
Checks whether the given attribute is an integer set attribute. More... | |
MLIR_CAPI_EXPORTED MlirTypeID | mlirIntegerSetAttrGetTypeID (void) |
Returns the typeID of an IntegerSet attribute. More... | |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsAOpaque (MlirAttribute attr) |
Checks whether the given attribute is an opaque attribute. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirOpaqueAttrGet (MlirContext ctx, MlirStringRef dialectNamespace, intptr_t dataLength, const char *data, MlirType type) |
Creates an opaque attribute in the given context associated with the dialect identified by its namespace. More... | |
MLIR_CAPI_EXPORTED MlirStringRef | mlirOpaqueAttrGetDialectNamespace (MlirAttribute attr) |
Returns the namespace of the dialect with which the given opaque attribute is associated. More... | |
MLIR_CAPI_EXPORTED MlirStringRef | mlirOpaqueAttrGetData (MlirAttribute attr) |
Returns the raw data as a string reference. More... | |
MLIR_CAPI_EXPORTED MlirTypeID | mlirOpaqueAttrGetTypeID (void) |
Returns the typeID of an Opaque attribute. More... | |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsAString (MlirAttribute attr) |
Checks whether the given attribute is a string attribute. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirStringAttrGet (MlirContext ctx, MlirStringRef str) |
Creates a string attribute in the given context containing the given string. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirStringAttrTypedGet (MlirType type, MlirStringRef str) |
Creates a string attribute in the given context containing the given string. More... | |
MLIR_CAPI_EXPORTED MlirStringRef | mlirStringAttrGetValue (MlirAttribute attr) |
Returns the attribute values as a string reference. More... | |
MLIR_CAPI_EXPORTED MlirTypeID | mlirStringAttrGetTypeID (void) |
Returns the typeID of a String attribute. More... | |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsASymbolRef (MlirAttribute attr) |
Checks whether the given attribute is a symbol reference attribute. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirSymbolRefAttrGet (MlirContext ctx, MlirStringRef symbol, intptr_t numReferences, MlirAttribute const *references) |
Creates a symbol reference attribute in the given context referencing a symbol identified by the given string inside a list of nested references. More... | |
MLIR_CAPI_EXPORTED MlirStringRef | mlirSymbolRefAttrGetRootReference (MlirAttribute attr) |
Returns the string reference to the root referenced symbol. More... | |
MLIR_CAPI_EXPORTED MlirStringRef | mlirSymbolRefAttrGetLeafReference (MlirAttribute attr) |
Returns the string reference to the leaf referenced symbol. More... | |
MLIR_CAPI_EXPORTED intptr_t | mlirSymbolRefAttrGetNumNestedReferences (MlirAttribute attr) |
Returns the number of references nested in the given symbol reference attribute. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirSymbolRefAttrGetNestedReference (MlirAttribute attr, intptr_t pos) |
Returns pos-th reference nested in the given symbol reference attribute. More... | |
MLIR_CAPI_EXPORTED MlirTypeID | mlirSymbolRefAttrGetTypeID (void) |
Returns the typeID of an SymbolRef attribute. More... | |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsAFlatSymbolRef (MlirAttribute attr) |
Checks whether the given attribute is a flat symbol reference attribute. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirFlatSymbolRefAttrGet (MlirContext ctx, MlirStringRef symbol) |
Creates a flat symbol reference attribute in the given context referencing a symbol identified by the given string. More... | |
MLIR_CAPI_EXPORTED MlirStringRef | mlirFlatSymbolRefAttrGetValue (MlirAttribute attr) |
Returns the referenced symbol as a string reference. More... | |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsAType (MlirAttribute attr) |
Checks whether the given attribute is a type attribute. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirTypeAttrGet (MlirType type) |
Creates a type attribute wrapping the given type in the same context as the type. More... | |
MLIR_CAPI_EXPORTED MlirType | mlirTypeAttrGetValue (MlirAttribute attr) |
Returns the type stored in the given type attribute. More... | |
MLIR_CAPI_EXPORTED MlirTypeID | mlirTypeAttrGetTypeID (void) |
Returns the typeID of a Type attribute. More... | |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsAUnit (MlirAttribute attr) |
Checks whether the given attribute is a unit attribute. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirUnitAttrGet (MlirContext ctx) |
Creates a unit attribute in the given context. More... | |
MLIR_CAPI_EXPORTED MlirTypeID | mlirUnitAttrGetTypeID (void) |
Returns the typeID of a Unit attribute. More... | |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsAElements (MlirAttribute attr) |
Checks whether the given attribute is an elements attribute. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirElementsAttrGetValue (MlirAttribute attr, intptr_t rank, uint64_t *idxs) |
Returns the element at the given rank-dimensional index. More... | |
MLIR_CAPI_EXPORTED bool | mlirElementsAttrIsValidIndex (MlirAttribute attr, intptr_t rank, uint64_t *idxs) |
Checks whether the given rank-dimensional index is valid in the given elements attribute. More... | |
MLIR_CAPI_EXPORTED int64_t | mlirElementsAttrGetNumElements (MlirAttribute attr) |
Gets the total number of elements in the given elements attribute. More... | |
MLIR_CAPI_EXPORTED MlirTypeID | mlirDenseArrayAttrGetTypeID (void) |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsADenseBoolArray (MlirAttribute attr) |
Checks whether the given attribute is a dense array attribute. More... | |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsADenseI8Array (MlirAttribute attr) |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsADenseI16Array (MlirAttribute attr) |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsADenseI32Array (MlirAttribute attr) |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsADenseI64Array (MlirAttribute attr) |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsADenseF32Array (MlirAttribute attr) |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsADenseF64Array (MlirAttribute attr) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseBoolArrayGet (MlirContext ctx, intptr_t size, int const *values) |
Create a dense array attribute with the given elements. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseI8ArrayGet (MlirContext ctx, intptr_t size, int8_t const *values) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseI16ArrayGet (MlirContext ctx, intptr_t size, int16_t const *values) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseI32ArrayGet (MlirContext ctx, intptr_t size, int32_t const *values) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseI64ArrayGet (MlirContext ctx, intptr_t size, int64_t const *values) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseF32ArrayGet (MlirContext ctx, intptr_t size, float const *values) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseF64ArrayGet (MlirContext ctx, intptr_t size, double const *values) |
MLIR_CAPI_EXPORTED intptr_t | mlirDenseArrayGetNumElements (MlirAttribute attr) |
Get the size of a dense array. More... | |
MLIR_CAPI_EXPORTED bool | mlirDenseBoolArrayGetElement (MlirAttribute attr, intptr_t pos) |
Get an element of a dense array. More... | |
MLIR_CAPI_EXPORTED int8_t | mlirDenseI8ArrayGetElement (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED int16_t | mlirDenseI16ArrayGetElement (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED int32_t | mlirDenseI32ArrayGetElement (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED int64_t | mlirDenseI64ArrayGetElement (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED float | mlirDenseF32ArrayGetElement (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED double | mlirDenseF64ArrayGetElement (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsADenseElements (MlirAttribute attr) |
Checks whether the given attribute is a dense elements attribute. More... | |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsADenseIntElements (MlirAttribute attr) |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsADenseFPElements (MlirAttribute attr) |
MLIR_CAPI_EXPORTED MlirTypeID | mlirDenseIntOrFPElementsAttrGetTypeID (void) |
Returns the typeID of an DenseIntOrFPElements attribute. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrGet (MlirType shapedType, intptr_t numElements, MlirAttribute const *elements) |
Creates a dense elements attribute with the given Shaped type and elements in the same context as the type. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrRawBufferGet (MlirType shapedType, size_t rawBufferSize, const void *rawBuffer) |
Creates a dense elements attribute with the given Shaped type and elements populated from a packed, row-major opaque buffer of contents. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrSplatGet (MlirType shapedType, MlirAttribute element) |
Creates a dense elements attribute with the given Shaped type containing a single replicated element (splat). More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrBoolSplatGet (MlirType shapedType, bool element) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrUInt8SplatGet (MlirType shapedType, uint8_t element) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrInt8SplatGet (MlirType shapedType, int8_t element) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrUInt32SplatGet (MlirType shapedType, uint32_t element) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrInt32SplatGet (MlirType shapedType, int32_t element) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrUInt64SplatGet (MlirType shapedType, uint64_t element) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrInt64SplatGet (MlirType shapedType, int64_t element) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrFloatSplatGet (MlirType shapedType, float element) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrDoubleSplatGet (MlirType shapedType, double element) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrBoolGet (MlirType shapedType, intptr_t numElements, const int *elements) |
Creates a dense elements attribute with the given shaped type from elements of a specific type. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrUInt8Get (MlirType shapedType, intptr_t numElements, const uint8_t *elements) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrInt8Get (MlirType shapedType, intptr_t numElements, const int8_t *elements) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrUInt16Get (MlirType shapedType, intptr_t numElements, const uint16_t *elements) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrInt16Get (MlirType shapedType, intptr_t numElements, const int16_t *elements) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrUInt32Get (MlirType shapedType, intptr_t numElements, const uint32_t *elements) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrInt32Get (MlirType shapedType, intptr_t numElements, const int32_t *elements) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrUInt64Get (MlirType shapedType, intptr_t numElements, const uint64_t *elements) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrInt64Get (MlirType shapedType, intptr_t numElements, const int64_t *elements) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrFloatGet (MlirType shapedType, intptr_t numElements, const float *elements) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrDoubleGet (MlirType shapedType, intptr_t numElements, const double *elements) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrBFloat16Get (MlirType shapedType, intptr_t numElements, const uint16_t *elements) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrFloat16Get (MlirType shapedType, intptr_t numElements, const uint16_t *elements) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrStringGet (MlirType shapedType, intptr_t numElements, MlirStringRef *strs) |
Creates a dense elements attribute with the given shaped type from string elements. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrReshapeGet (MlirAttribute attr, MlirType shapedType) |
Creates a dense elements attribute that has the same data as the given dense elements attribute and a different shaped type. More... | |
MLIR_CAPI_EXPORTED bool | mlirDenseElementsAttrIsSplat (MlirAttribute attr) |
Checks whether the given dense elements attribute contains a single replicated value (splat). More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirDenseElementsAttrGetSplatValue (MlirAttribute attr) |
Returns the single replicated value (splat) of a specific type contained by the given dense elements attribute. More... | |
MLIR_CAPI_EXPORTED int | mlirDenseElementsAttrGetBoolSplatValue (MlirAttribute attr) |
MLIR_CAPI_EXPORTED int8_t | mlirDenseElementsAttrGetInt8SplatValue (MlirAttribute attr) |
MLIR_CAPI_EXPORTED uint8_t | mlirDenseElementsAttrGetUInt8SplatValue (MlirAttribute attr) |
MLIR_CAPI_EXPORTED int32_t | mlirDenseElementsAttrGetInt32SplatValue (MlirAttribute attr) |
MLIR_CAPI_EXPORTED uint32_t | mlirDenseElementsAttrGetUInt32SplatValue (MlirAttribute attr) |
MLIR_CAPI_EXPORTED int64_t | mlirDenseElementsAttrGetInt64SplatValue (MlirAttribute attr) |
MLIR_CAPI_EXPORTED uint64_t | mlirDenseElementsAttrGetUInt64SplatValue (MlirAttribute attr) |
MLIR_CAPI_EXPORTED float | mlirDenseElementsAttrGetFloatSplatValue (MlirAttribute attr) |
MLIR_CAPI_EXPORTED double | mlirDenseElementsAttrGetDoubleSplatValue (MlirAttribute attr) |
MLIR_CAPI_EXPORTED MlirStringRef | mlirDenseElementsAttrGetStringSplatValue (MlirAttribute attr) |
MLIR_CAPI_EXPORTED bool | mlirDenseElementsAttrGetBoolValue (MlirAttribute attr, intptr_t pos) |
Returns the pos-th value (flat contiguous indexing) of a specific type contained by the given dense elements attribute. More... | |
MLIR_CAPI_EXPORTED int8_t | mlirDenseElementsAttrGetInt8Value (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED uint8_t | mlirDenseElementsAttrGetUInt8Value (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED int16_t | mlirDenseElementsAttrGetInt16Value (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED uint16_t | mlirDenseElementsAttrGetUInt16Value (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED int32_t | mlirDenseElementsAttrGetInt32Value (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED uint32_t | mlirDenseElementsAttrGetUInt32Value (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED int64_t | mlirDenseElementsAttrGetInt64Value (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED uint64_t | mlirDenseElementsAttrGetUInt64Value (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED float | mlirDenseElementsAttrGetFloatValue (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED double | mlirDenseElementsAttrGetDoubleValue (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED MlirStringRef | mlirDenseElementsAttrGetStringValue (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED const void * | mlirDenseElementsAttrGetRawData (MlirAttribute attr) |
Returns the raw data of the given dense elements attribute. More... | |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsADenseResourceElements (MlirAttribute attr) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirUnmanagedDenseResourceElementsAttrGet (MlirType shapedType, MlirStringRef name, void *data, size_t dataLength, size_t dataAlignment, bool dataIsMutable, void(*deleter)(void *userData, const void *data, size_t size, size_t align), void *userData) |
Unlike the typed accessors below, constructs the attribute with a raw data buffer and no type/alignment checking. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirUnmanagedDenseBoolResourceElementsAttrGet (MlirType shapedType, MlirStringRef name, intptr_t numElements, const int *elements) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirUnmanagedDenseUInt8ResourceElementsAttrGet (MlirType shapedType, MlirStringRef name, intptr_t numElements, const uint8_t *elements) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirUnmanagedDenseInt8ResourceElementsAttrGet (MlirType shapedType, MlirStringRef name, intptr_t numElements, const int8_t *elements) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirUnmanagedDenseUInt16ResourceElementsAttrGet (MlirType shapedType, MlirStringRef name, intptr_t numElements, const uint16_t *elements) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirUnmanagedDenseInt16ResourceElementsAttrGet (MlirType shapedType, MlirStringRef name, intptr_t numElements, const int16_t *elements) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirUnmanagedDenseUInt32ResourceElementsAttrGet (MlirType shapedType, MlirStringRef name, intptr_t numElements, const uint32_t *elements) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirUnmanagedDenseInt32ResourceElementsAttrGet (MlirType shapedType, MlirStringRef name, intptr_t numElements, const int32_t *elements) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirUnmanagedDenseUInt64ResourceElementsAttrGet (MlirType shapedType, MlirStringRef name, intptr_t numElements, const uint64_t *elements) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirUnmanagedDenseInt64ResourceElementsAttrGet (MlirType shapedType, MlirStringRef name, intptr_t numElements, const int64_t *elements) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirUnmanagedDenseFloatResourceElementsAttrGet (MlirType shapedType, MlirStringRef name, intptr_t numElements, const float *elements) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirUnmanagedDenseDoubleResourceElementsAttrGet (MlirType shapedType, MlirStringRef name, intptr_t numElements, const double *elements) |
MLIR_CAPI_EXPORTED bool | mlirDenseBoolResourceElementsAttrGetValue (MlirAttribute attr, intptr_t pos) |
Returns the pos-th value (flat contiguous indexing) of a specific type contained by the given dense resource elements attribute. More... | |
MLIR_CAPI_EXPORTED int8_t | mlirDenseInt8ResourceElementsAttrGetValue (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED uint8_t | mlirDenseUInt8ResourceElementsAttrGetValue (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED int16_t | mlirDenseInt16ResourceElementsAttrGetValue (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED uint16_t | mlirDenseUInt16ResourceElementsAttrGetValue (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED int32_t | mlirDenseInt32ResourceElementsAttrGetValue (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED uint32_t | mlirDenseUInt32ResourceElementsAttrGetValue (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED int64_t | mlirDenseInt64ResourceElementsAttrGetValue (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED uint64_t | mlirDenseUInt64ResourceElementsAttrGetValue (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED float | mlirDenseFloatResourceElementsAttrGetValue (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED double | mlirDenseDoubleResourceElementsAttrGetValue (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsASparseElements (MlirAttribute attr) |
Checks whether the given attribute is a sparse elements attribute. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirSparseElementsAttribute (MlirType shapedType, MlirAttribute denseIndices, MlirAttribute denseValues) |
Creates a sparse elements attribute of the given shape from a list of indices and a list of associated values. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirSparseElementsAttrGetIndices (MlirAttribute attr) |
Returns the dense elements attribute containing 64-bit integer indices of non-null elements in the given sparse elements attribute. More... | |
MLIR_CAPI_EXPORTED MlirAttribute | mlirSparseElementsAttrGetValues (MlirAttribute attr) |
Returns the dense elements attribute containing the non-null elements in the given sparse elements attribute. More... | |
MLIR_CAPI_EXPORTED MlirTypeID | mlirSparseElementsAttrGetTypeID (void) |
Returns the typeID of a SparseElements attribute. More... | |
MLIR_CAPI_EXPORTED bool | mlirAttributeIsAStridedLayout (MlirAttribute attr) |
MLIR_CAPI_EXPORTED MlirAttribute | mlirStridedLayoutAttrGet (MlirContext ctx, int64_t offset, intptr_t numStrides, const int64_t *strides) |
MLIR_CAPI_EXPORTED int64_t | mlirStridedLayoutAttrGetOffset (MlirAttribute attr) |
MLIR_CAPI_EXPORTED intptr_t | mlirStridedLayoutAttrGetNumStrides (MlirAttribute attr) |
MLIR_CAPI_EXPORTED int64_t | mlirStridedLayoutAttrGetStride (MlirAttribute attr, intptr_t pos) |
MLIR_CAPI_EXPORTED MlirTypeID | mlirStridedLayoutAttrGetTypeID (void) |
Returns the typeID of a StridedLayout attribute. More... | |
MLIR_CAPI_EXPORTED MlirAttribute mlirAffineMapAttrGet | ( | MlirAffineMap | map | ) |
Creates an affine map attribute wrapping the given map.
The attribute belongs to the same context as the affine map.
Definition at line 39 of file BuiltinAttributes.cpp.
References mlir::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirTypeID mlirAffineMapAttrGetTypeID | ( | void | ) |
Returns the typeID of an AffineMap attribute.
Definition at line 47 of file BuiltinAttributes.cpp.
References wrap().
MLIR_CAPI_EXPORTED MlirAffineMap mlirAffineMapAttrGetValue | ( | MlirAttribute | attr | ) |
Returns the affine map wrapped in the given affine map attribute.
Definition at line 43 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirAttribute mlirArrayAttrGet | ( | MlirContext | ctx, |
intptr_t | numElements, | ||
MlirAttribute const * | elements | ||
) |
Creates an array element containing the given list of elements in the given context.
Definition at line 59 of file BuiltinAttributes.cpp.
References mlir::get(), unwrap(), unwrapList(), and wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirArrayAttrGetElement | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Returns pos-th element stored in the given array attribute.
Definition at line 71 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED intptr_t mlirArrayAttrGetNumElements | ( | MlirAttribute | attr | ) |
Returns the number of elements stored in the given array attribute.
Definition at line 67 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED MlirTypeID mlirArrayAttrGetTypeID | ( | void | ) |
Returns the typeID of an Array attribute.
Definition at line 75 of file BuiltinAttributes.cpp.
References wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirAttributeGetNull | ( | void | ) |
Returns an empty attribute.
Definition at line 21 of file BuiltinAttributes.cpp.
Referenced by mlir::python::PyInferShapedTypeOpInterface::inferReturnTypeComponents(), mlir::python::PyInferTypeOpInterface::inferReturnTypes(), and mlirDenseElementsAttrRawBufferGet().
MLIR_CAPI_EXPORTED bool mlirAttributeIsAAffineMap | ( | MlirAttribute | attr | ) |
Checks whether the given attribute is an affine map attribute.
Definition at line 35 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsAArray | ( | MlirAttribute | attr | ) |
Checks whether the given attribute is an array attribute.
Definition at line 55 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsABool | ( | MlirAttribute | attr | ) |
Checks whether the given attribute is a bool attribute.
Definition at line 171 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsADenseBoolArray | ( | MlirAttribute | attr | ) |
Checks whether the given attribute is a dense array attribute.
Definition at line 376 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsADenseElements | ( | MlirAttribute | attr | ) |
Checks whether the given attribute is a dense elements attribute.
Definition at line 480 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsADenseF32Array | ( | MlirAttribute | attr | ) |
Definition at line 391 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsADenseF64Array | ( | MlirAttribute | attr | ) |
Definition at line 394 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsADenseFPElements | ( | MlirAttribute | attr | ) |
Definition at line 488 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsADenseI16Array | ( | MlirAttribute | attr | ) |
Definition at line 382 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsADenseI32Array | ( | MlirAttribute | attr | ) |
Definition at line 385 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsADenseI64Array | ( | MlirAttribute | attr | ) |
Definition at line 388 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsADenseI8Array | ( | MlirAttribute | attr | ) |
Definition at line 379 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsADenseIntElements | ( | MlirAttribute | attr | ) |
Definition at line 484 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsADenseResourceElements | ( | MlirAttribute | attr | ) |
Definition at line 773 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsADictionary | ( | MlirAttribute | attr | ) |
Checks whether the given attribute is a dictionary attribute.
Definition at line 81 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsAElements | ( | MlirAttribute | attr | ) |
Checks whether the given attribute is an elements attribute.
Definition at line 344 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsAFlatSymbolRef | ( | MlirAttribute | attr | ) |
Checks whether the given attribute is a flat symbol reference attribute.
Definition at line 296 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsAFloat | ( | MlirAttribute | attr | ) |
Checks whether the given attribute is a floating point attribute.
Definition at line 119 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsAInteger | ( | MlirAttribute | attr | ) |
Checks whether the given attribute is an integer attribute.
Definition at line 143 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsAIntegerSet | ( | MlirAttribute | attr | ) |
Checks whether the given attribute is an integer set attribute.
Definition at line 187 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsALocation | ( | MlirAttribute | attr | ) |
Definition at line 27 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsAOpaque | ( | MlirAttribute | attr | ) |
Checks whether the given attribute is an opaque attribute.
Definition at line 199 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsASparseElements | ( | MlirAttribute | attr | ) |
Checks whether the given attribute is a sparse elements attribute.
Definition at line 928 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsAStridedLayout | ( | MlirAttribute | attr | ) |
Definition at line 957 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsAString | ( | MlirAttribute | attr | ) |
Checks whether the given attribute is a string attribute.
Definition at line 228 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsASymbolRef | ( | MlirAttribute | attr | ) |
Checks whether the given attribute is a symbol reference attribute.
Definition at line 252 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsAType | ( | MlirAttribute | attr | ) |
Checks whether the given attribute is a type attribute.
Definition at line 312 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirAttributeIsAUnit | ( | MlirAttribute | attr | ) |
Checks whether the given attribute is a unit attribute.
Definition at line 330 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirBoolAttrGet | ( | MlirContext | ctx, |
int | value | ||
) |
Creates a bool attribute in the given context with the given value.
Definition at line 175 of file BuiltinAttributes.cpp.
References mlir::BoolAttr::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED bool mlirBoolAttrGetValue | ( | MlirAttribute | attr | ) |
Returns the value stored in the given bool attribute.
Definition at line 179 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED MlirTypeID mlirDenseArrayAttrGetTypeID | ( | void | ) |
Definition at line 368 of file BuiltinAttributes.cpp.
References wrap().
MLIR_CAPI_EXPORTED intptr_t mlirDenseArrayGetNumElements | ( | MlirAttribute | attr | ) |
Get the size of a dense array.
Definition at line 442 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseBoolArrayGet | ( | MlirContext | ctx, |
intptr_t | size, | ||
int const * | values | ||
) |
Create a dense array attribute with the given elements.
Definition at line 402 of file BuiltinAttributes.cpp.
References mlir::detail::DenseArrayAttrImpl< T >::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED bool mlirDenseBoolArrayGetElement | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Get an element of a dense array.
Definition at line 450 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirDenseBoolResourceElementsAttrGetValue | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Returns the pos-th value (flat contiguous indexing) of a specific type contained by the given dense resource elements attribute.
Definition at line 876 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED double mlirDenseDoubleResourceElementsAttrGetValue | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 919 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrBFloat16Get | ( | MlirType | shapedType, |
intptr_t | numElements, | ||
const uint16_t * | elements | ||
) |
Definition at line 640 of file BuiltinAttributes.cpp.
References mlirDenseElementsAttrRawBufferGet().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrBoolGet | ( | MlirType | shapedType, |
intptr_t | numElements, | ||
const int * | elements | ||
) |
Creates a dense elements attribute with the given shaped type from elements of a specific type.
Expects the element type of the shaped type to match the data element type.
Definition at line 573 of file BuiltinAttributes.cpp.
References mlir::DenseElementsAttr::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrBoolSplatGet | ( | MlirType | shapedType, |
bool | element | ||
) |
Definition at line 527 of file BuiltinAttributes.cpp.
References mlir::DenseElementsAttr::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrDoubleGet | ( | MlirType | shapedType, |
intptr_t | numElements, | ||
const double * | elements | ||
) |
Definition at line 635 of file BuiltinAttributes.cpp.
References getDenseAttribute().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrDoubleSplatGet | ( | MlirType | shapedType, |
double | element | ||
) |
Definition at line 567 of file BuiltinAttributes.cpp.
References mlir::DenseElementsAttr::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrFloat16Get | ( | MlirType | shapedType, |
intptr_t | numElements, | ||
const uint16_t * | elements | ||
) |
Definition at line 647 of file BuiltinAttributes.cpp.
References mlirDenseElementsAttrRawBufferGet().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrFloatGet | ( | MlirType | shapedType, |
intptr_t | numElements, | ||
const float * | elements | ||
) |
Definition at line 630 of file BuiltinAttributes.cpp.
References getDenseAttribute().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrFloatSplatGet | ( | MlirType | shapedType, |
float | element | ||
) |
Definition at line 562 of file BuiltinAttributes.cpp.
References mlir::DenseElementsAttr::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrGet | ( | MlirType | shapedType, |
intptr_t | numElements, | ||
MlirAttribute const * | elements | ||
) |
Creates a dense elements attribute with the given Shaped type and elements in the same context as the type.
Definition at line 500 of file BuiltinAttributes.cpp.
References mlir::DenseElementsAttr::get(), unwrap(), unwrapList(), and wrap().
MLIR_CAPI_EXPORTED int mlirDenseElementsAttrGetBoolSplatValue | ( | MlirAttribute | attr | ) |
Definition at line 685 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED bool mlirDenseElementsAttrGetBoolValue | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Returns the pos-th value (flat contiguous indexing) of a specific type contained by the given dense elements attribute.
Definition at line 721 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED double mlirDenseElementsAttrGetDoubleSplatValue | ( | MlirAttribute | attr | ) |
Definition at line 709 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED double mlirDenseElementsAttrGetDoubleValue | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 751 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED float mlirDenseElementsAttrGetFloatSplatValue | ( | MlirAttribute | attr | ) |
Definition at line 706 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED float mlirDenseElementsAttrGetFloatValue | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 748 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED int16_t mlirDenseElementsAttrGetInt16Value | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 730 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED int32_t mlirDenseElementsAttrGetInt32SplatValue | ( | MlirAttribute | attr | ) |
Definition at line 694 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED int32_t mlirDenseElementsAttrGetInt32Value | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 736 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED int64_t mlirDenseElementsAttrGetInt64SplatValue | ( | MlirAttribute | attr | ) |
Definition at line 700 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED int64_t mlirDenseElementsAttrGetInt64Value | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 742 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED int8_t mlirDenseElementsAttrGetInt8SplatValue | ( | MlirAttribute | attr | ) |
Definition at line 688 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED int8_t mlirDenseElementsAttrGetInt8Value | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 724 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED const void* mlirDenseElementsAttrGetRawData | ( | MlirAttribute | attr | ) |
Returns the raw data of the given dense elements attribute.
Definition at line 764 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrGetSplatValue | ( | MlirAttribute | attr | ) |
Returns the single replicated value (splat) of a specific type contained by the given dense elements attribute.
Definition at line 681 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirStringRef mlirDenseElementsAttrGetStringSplatValue | ( | MlirAttribute | attr | ) |
Definition at line 712 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirStringRef mlirDenseElementsAttrGetStringValue | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 754 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED uint16_t mlirDenseElementsAttrGetUInt16Value | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 733 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED uint32_t mlirDenseElementsAttrGetUInt32SplatValue | ( | MlirAttribute | attr | ) |
Definition at line 697 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED uint32_t mlirDenseElementsAttrGetUInt32Value | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 739 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED uint64_t mlirDenseElementsAttrGetUInt64SplatValue | ( | MlirAttribute | attr | ) |
Definition at line 703 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED uint64_t mlirDenseElementsAttrGetUInt64Value | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 745 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED uint8_t mlirDenseElementsAttrGetUInt8SplatValue | ( | MlirAttribute | attr | ) |
Definition at line 691 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED uint8_t mlirDenseElementsAttrGetUInt8Value | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 727 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrInt16Get | ( | MlirType | shapedType, |
intptr_t | numElements, | ||
const int16_t * | elements | ||
) |
Definition at line 605 of file BuiltinAttributes.cpp.
References getDenseAttribute().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrInt32Get | ( | MlirType | shapedType, |
intptr_t | numElements, | ||
const int32_t * | elements | ||
) |
Definition at line 615 of file BuiltinAttributes.cpp.
References getDenseAttribute().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrInt32SplatGet | ( | MlirType | shapedType, |
int32_t | element | ||
) |
Definition at line 547 of file BuiltinAttributes.cpp.
References mlir::DenseElementsAttr::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrInt64Get | ( | MlirType | shapedType, |
intptr_t | numElements, | ||
const int64_t * | elements | ||
) |
Definition at line 625 of file BuiltinAttributes.cpp.
References getDenseAttribute().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrInt64SplatGet | ( | MlirType | shapedType, |
int64_t | element | ||
) |
Definition at line 557 of file BuiltinAttributes.cpp.
References mlir::DenseElementsAttr::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrInt8Get | ( | MlirType | shapedType, |
intptr_t | numElements, | ||
const int8_t * | elements | ||
) |
Definition at line 595 of file BuiltinAttributes.cpp.
References getDenseAttribute().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrInt8SplatGet | ( | MlirType | shapedType, |
int8_t | element | ||
) |
Definition at line 537 of file BuiltinAttributes.cpp.
References mlir::DenseElementsAttr::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED bool mlirDenseElementsAttrIsSplat | ( | MlirAttribute | attr | ) |
Checks whether the given dense elements attribute contains a single replicated value (splat).
Definition at line 677 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrRawBufferGet | ( | MlirType | shapedType, |
size_t | rawBufferSize, | ||
const void * | rawBuffer | ||
) |
Creates a dense elements attribute with the given Shaped type and elements populated from a packed, row-major opaque buffer of contents.
The format of the raw buffer is a densely packed array of values that can be bitcast to the storage format of the element type specified. Types that are not byte aligned will be:
A raw buffer of a single element (or for 1-bit, a byte of value 0 or 255) will be interpreted as a splat. User code should be prepared for additional, conformant patterns to be identified as splats in the future.
Definition at line 509 of file BuiltinAttributes.cpp.
References mlir::DenseElementsAttr::getFromRawBuffer(), mlir::DenseElementsAttr::isValidRawBuffer(), mlirAttributeGetNull(), unwrap(), and wrap().
Referenced by mlirDenseElementsAttrBFloat16Get(), and mlirDenseElementsAttrFloat16Get().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrReshapeGet | ( | MlirAttribute | attr, |
MlirType | shapedType | ||
) |
Creates a dense elements attribute that has the same data as the given dense elements attribute and a different shaped type.
The new type must have the same total number of elements.
Definition at line 667 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrSplatGet | ( | MlirType | shapedType, |
MlirAttribute | element | ||
) |
Creates a dense elements attribute with the given Shaped type containing a single replicated element (splat).
Definition at line 522 of file BuiltinAttributes.cpp.
References mlir::DenseElementsAttr::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrStringGet | ( | MlirType | shapedType, |
intptr_t | numElements, | ||
MlirStringRef * | strs | ||
) |
Creates a dense elements attribute with the given shaped type from string elements.
Definition at line 655 of file BuiltinAttributes.cpp.
References mlir::DenseElementsAttr::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrUInt16Get | ( | MlirType | shapedType, |
intptr_t | numElements, | ||
const uint16_t * | elements | ||
) |
Definition at line 600 of file BuiltinAttributes.cpp.
References getDenseAttribute().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrUInt32Get | ( | MlirType | shapedType, |
intptr_t | numElements, | ||
const uint32_t * | elements | ||
) |
Definition at line 610 of file BuiltinAttributes.cpp.
References getDenseAttribute().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrUInt32SplatGet | ( | MlirType | shapedType, |
uint32_t | element | ||
) |
Definition at line 542 of file BuiltinAttributes.cpp.
References mlir::DenseElementsAttr::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrUInt64Get | ( | MlirType | shapedType, |
intptr_t | numElements, | ||
const uint64_t * | elements | ||
) |
Definition at line 620 of file BuiltinAttributes.cpp.
References getDenseAttribute().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrUInt64SplatGet | ( | MlirType | shapedType, |
uint64_t | element | ||
) |
Definition at line 552 of file BuiltinAttributes.cpp.
References mlir::DenseElementsAttr::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrUInt8Get | ( | MlirType | shapedType, |
intptr_t | numElements, | ||
const uint8_t * | elements | ||
) |
Definition at line 590 of file BuiltinAttributes.cpp.
References getDenseAttribute().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseElementsAttrUInt8SplatGet | ( | MlirType | shapedType, |
uint8_t | element | ||
) |
Definition at line 532 of file BuiltinAttributes.cpp.
References mlir::DenseElementsAttr::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseF32ArrayGet | ( | MlirContext | ctx, |
intptr_t | size, | ||
float const * | values | ||
) |
Definition at line 427 of file BuiltinAttributes.cpp.
References mlir::detail::DenseArrayAttrImpl< T >::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED float mlirDenseF32ArrayGetElement | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 465 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseF64ArrayGet | ( | MlirContext | ctx, |
intptr_t | size, | ||
double const * | values | ||
) |
Definition at line 432 of file BuiltinAttributes.cpp.
References mlir::detail::DenseArrayAttrImpl< T >::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED double mlirDenseF64ArrayGetElement | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 468 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED float mlirDenseFloatResourceElementsAttrGetValue | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 915 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseI16ArrayGet | ( | MlirContext | ctx, |
intptr_t | size, | ||
int16_t const * | values | ||
) |
Definition at line 412 of file BuiltinAttributes.cpp.
References mlir::detail::DenseArrayAttrImpl< T >::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED int16_t mlirDenseI16ArrayGetElement | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 456 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseI32ArrayGet | ( | MlirContext | ctx, |
intptr_t | size, | ||
int32_t const * | values | ||
) |
Definition at line 417 of file BuiltinAttributes.cpp.
References mlir::detail::DenseArrayAttrImpl< int32_t >::get(), unwrap(), and wrap().
Referenced by mlir::python::PyOpView::buildGeneric().
MLIR_CAPI_EXPORTED int32_t mlirDenseI32ArrayGetElement | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 459 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseI64ArrayGet | ( | MlirContext | ctx, |
intptr_t | size, | ||
int64_t const * | values | ||
) |
Definition at line 422 of file BuiltinAttributes.cpp.
References mlir::detail::DenseArrayAttrImpl< T >::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED int64_t mlirDenseI64ArrayGetElement | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 462 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirDenseI8ArrayGet | ( | MlirContext | ctx, |
intptr_t | size, | ||
int8_t const * | values | ||
) |
Definition at line 407 of file BuiltinAttributes.cpp.
References mlir::detail::DenseArrayAttrImpl< T >::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED int8_t mlirDenseI8ArrayGetElement | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 453 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED int16_t mlirDenseInt16ResourceElementsAttrGetValue | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 903 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED int32_t mlirDenseInt32ResourceElementsAttrGetValue | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 907 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED int64_t mlirDenseInt64ResourceElementsAttrGetValue | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 911 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED int8_t mlirDenseInt8ResourceElementsAttrGetValue | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 899 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirTypeID mlirDenseIntOrFPElementsAttrGetTypeID | ( | void | ) |
Returns the typeID of an DenseIntOrFPElements attribute.
Definition at line 492 of file BuiltinAttributes.cpp.
References wrap().
MLIR_CAPI_EXPORTED uint16_t mlirDenseUInt16ResourceElementsAttrGetValue | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 884 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED uint32_t mlirDenseUInt32ResourceElementsAttrGetValue | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 889 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED uint64_t mlirDenseUInt64ResourceElementsAttrGetValue | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 894 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED uint8_t mlirDenseUInt8ResourceElementsAttrGetValue | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 880 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirAttribute mlirDictionaryAttrGet | ( | MlirContext | ctx, |
intptr_t | numElements, | ||
MlirNamedAttribute const * | elements | ||
) |
Creates a dictionary attribute containing the given list of elements in the provided context.
Definition at line 85 of file BuiltinAttributes.cpp.
References mlir::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirNamedAttribute mlirDictionaryAttrGetElement | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Returns pos-th element of the given dictionary attribute.
Definition at line 99 of file BuiltinAttributes.cpp.
References mlir::NamedAttribute::getName(), mlir::NamedAttribute::getValue(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirDictionaryAttrGetElementByName | ( | MlirAttribute | attr, |
MlirStringRef | name | ||
) |
Returns the dictionary attribute element with the given name or NULL if the given name does not exist in the dictionary.
Definition at line 106 of file BuiltinAttributes.cpp.
References mlir::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED intptr_t mlirDictionaryAttrGetNumElements | ( | MlirAttribute | attr | ) |
Returns the number of attributes contained in a dictionary attribute.
Definition at line 95 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED MlirTypeID mlirDictionaryAttrGetTypeID | ( | void | ) |
Returns the typeID of a Dictionary attribute.
Definition at line 111 of file BuiltinAttributes.cpp.
References wrap().
MLIR_CAPI_EXPORTED int64_t mlirElementsAttrGetNumElements | ( | MlirAttribute | attr | ) |
Gets the total number of elements in the given elements attribute.
In order to iterate over the attribute, obtain its type, which must be a statically shaped type and use its sizes to build a multi-dimensional index.
Definition at line 360 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirElementsAttrGetValue | ( | MlirAttribute | attr, |
intptr_t | rank, | ||
uint64_t * | idxs | ||
) |
Returns the element at the given rank-dimensional index.
Definition at line 348 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED bool mlirElementsAttrIsValidIndex | ( | MlirAttribute | attr, |
intptr_t | rank, | ||
uint64_t * | idxs | ||
) |
Checks whether the given rank-dimensional index is valid in the given elements attribute.
Definition at line 354 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirFlatSymbolRefAttrGet | ( | MlirContext | ctx, |
MlirStringRef | symbol | ||
) |
Creates a flat symbol reference attribute in the given context referencing a symbol identified by the given string.
Definition at line 300 of file BuiltinAttributes.cpp.
References mlir::FlatSymbolRefAttr::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirStringRef mlirFlatSymbolRefAttrGetValue | ( | MlirAttribute | attr | ) |
Returns the referenced symbol as a string reference.
The data remains live as long as the context in which the attribute lives.
Definition at line 304 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirAttribute mlirFloatAttrDoubleGet | ( | MlirContext | ctx, |
MlirType | type, | ||
double | value | ||
) |
Creates a floating point attribute in the given context with the given double value and double-precision FP semantics.
Definition at line 123 of file BuiltinAttributes.cpp.
References mlir::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirFloatAttrDoubleGetChecked | ( | MlirLocation | loc, |
MlirType | type, | ||
double | value | ||
) |
Same as "mlirFloatAttrDoubleGet", but if the type is not valid for a construction of a FloatAttr, returns a null MlirAttribute.
Definition at line 128 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirTypeID mlirFloatAttrGetTypeID | ( | void | ) |
Returns the typeID of a Float attribute.
Definition at line 137 of file BuiltinAttributes.cpp.
References wrap().
MLIR_CAPI_EXPORTED double mlirFloatAttrGetValueDouble | ( | MlirAttribute | attr | ) |
Returns the value stored in the given floating point attribute, interpreting the value as double.
Definition at line 133 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirIntegerAttrGet | ( | MlirType | type, |
int64_t | value | ||
) |
Creates an integer attribute of the given type with the given integer value.
Definition at line 147 of file BuiltinAttributes.cpp.
References mlir::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirTypeID mlirIntegerAttrGetTypeID | ( | void | ) |
Returns the typeID of an Integer attribute.
Definition at line 163 of file BuiltinAttributes.cpp.
References wrap().
MLIR_CAPI_EXPORTED int64_t mlirIntegerAttrGetValueInt | ( | MlirAttribute | attr | ) |
Returns the value stored in the given integer attribute, assuming the value is of signless type and fits into a signed 64-bit integer.
Definition at line 151 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED int64_t mlirIntegerAttrGetValueSInt | ( | MlirAttribute | attr | ) |
Returns the value stored in the given integer attribute, assuming the value is of signed type and fits into a signed 64-bit integer.
Definition at line 155 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED uint64_t mlirIntegerAttrGetValueUInt | ( | MlirAttribute | attr | ) |
Returns the value stored in the given integer attribute, assuming the value is of unsigned type and fits into an unsigned 64-bit integer.
Definition at line 159 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED MlirTypeID mlirIntegerSetAttrGetTypeID | ( | void | ) |
Returns the typeID of an IntegerSet attribute.
Definition at line 191 of file BuiltinAttributes.cpp.
References wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirOpaqueAttrGet | ( | MlirContext | ctx, |
MlirStringRef | dialectNamespace, | ||
intptr_t | dataLength, | ||
const char * | data, | ||
MlirType | type | ||
) |
Creates an opaque attribute in the given context associated with the dialect identified by its namespace.
The attribute contains opaque byte data of the specified length (data need not be null-terminated).
Definition at line 203 of file BuiltinAttributes.cpp.
References mlir::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirStringRef mlirOpaqueAttrGetData | ( | MlirAttribute | attr | ) |
Returns the raw data as a string reference.
The data remains live as long as the context in which the attribute lives.
Definition at line 216 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirStringRef mlirOpaqueAttrGetDialectNamespace | ( | MlirAttribute | attr | ) |
Returns the namespace of the dialect with which the given opaque attribute is associated.
The namespace string is owned by the context.
Definition at line 211 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirTypeID mlirOpaqueAttrGetTypeID | ( | void | ) |
Returns the typeID of an Opaque attribute.
Definition at line 220 of file BuiltinAttributes.cpp.
References wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirSparseElementsAttrGetIndices | ( | MlirAttribute | attr | ) |
Returns the dense elements attribute containing 64-bit integer indices of non-null elements in the given sparse elements attribute.
Definition at line 941 of file BuiltinAttributes.cpp.
References mlir::nvgpu::getIndices(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirTypeID mlirSparseElementsAttrGetTypeID | ( | void | ) |
Returns the typeID of a SparseElements attribute.
Definition at line 949 of file BuiltinAttributes.cpp.
References wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirSparseElementsAttrGetValues | ( | MlirAttribute | attr | ) |
Returns the dense elements attribute containing the non-null elements in the given sparse elements attribute.
Definition at line 945 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirAttribute mlirSparseElementsAttribute | ( | MlirType | shapedType, |
MlirAttribute | denseIndices, | ||
MlirAttribute | denseValues | ||
) |
Creates a sparse elements attribute of the given shape from a list of indices and a list of associated values.
Both lists are expected to be dense elements attributes with the same number of elements. The list of indices is expected to contain 64-bit integers. The attribute is created in the same context as the type.
Definition at line 932 of file BuiltinAttributes.cpp.
References mlir::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirStridedLayoutAttrGet | ( | MlirContext | ctx, |
int64_t | offset, | ||
intptr_t | numStrides, | ||
const int64_t * | strides | ||
) |
Definition at line 961 of file BuiltinAttributes.cpp.
References mlir::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED intptr_t mlirStridedLayoutAttrGetNumStrides | ( | MlirAttribute | attr | ) |
Definition at line 972 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED int64_t mlirStridedLayoutAttrGetOffset | ( | MlirAttribute | attr | ) |
Definition at line 968 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED int64_t mlirStridedLayoutAttrGetStride | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Definition at line 977 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED MlirTypeID mlirStridedLayoutAttrGetTypeID | ( | void | ) |
Returns the typeID of a StridedLayout attribute.
Definition at line 981 of file BuiltinAttributes.cpp.
References wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirStringAttrGet | ( | MlirContext | ctx, |
MlirStringRef | str | ||
) |
Creates a string attribute in the given context containing the given string.
Definition at line 232 of file BuiltinAttributes.cpp.
References mlir::get(), unwrap(), and wrap().
Referenced by mlir::python::PySymbolTable::setSymbolName(), and mlir::python::PySymbolTable::setVisibility().
MLIR_CAPI_EXPORTED MlirTypeID mlirStringAttrGetTypeID | ( | void | ) |
Returns the typeID of a String attribute.
Definition at line 244 of file BuiltinAttributes.cpp.
References wrap().
MLIR_CAPI_EXPORTED MlirStringRef mlirStringAttrGetValue | ( | MlirAttribute | attr | ) |
Returns the attribute values as a string reference.
The data remains live as long as the context in which the attribute lives.
Definition at line 240 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirAttribute mlirStringAttrTypedGet | ( | MlirType | type, |
MlirStringRef | str | ||
) |
Creates a string attribute in the given context containing the given string.
Additionally, the attribute has the given type.
Definition at line 236 of file BuiltinAttributes.cpp.
References mlir::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirSymbolRefAttrGet | ( | MlirContext | ctx, |
MlirStringRef | symbol, | ||
intptr_t | numReferences, | ||
MlirAttribute const * | references | ||
) |
Creates a symbol reference attribute in the given context referencing a symbol identified by the given string inside a list of nested references.
Each of the references in the list must not be nested.
Definition at line 256 of file BuiltinAttributes.cpp.
References mlir::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirStringRef mlirSymbolRefAttrGetLeafReference | ( | MlirAttribute | attr | ) |
Returns the string reference to the leaf referenced symbol.
The data remains live as long as the context in which the attribute lives.
Definition at line 272 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirAttribute mlirSymbolRefAttrGetNestedReference | ( | MlirAttribute | attr, |
intptr_t | pos | ||
) |
Returns pos-th reference nested in the given symbol reference attribute.
Definition at line 282 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED intptr_t mlirSymbolRefAttrGetNumNestedReferences | ( | MlirAttribute | attr | ) |
Returns the number of references nested in the given symbol reference attribute.
Definition at line 277 of file BuiltinAttributes.cpp.
References unwrap().
MLIR_CAPI_EXPORTED MlirStringRef mlirSymbolRefAttrGetRootReference | ( | MlirAttribute | attr | ) |
Returns the string reference to the root referenced symbol.
The data remains live as long as the context in which the attribute lives.
Definition at line 267 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirTypeID mlirSymbolRefAttrGetTypeID | ( | void | ) |
Returns the typeID of an SymbolRef attribute.
Definition at line 288 of file BuiltinAttributes.cpp.
References wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirTypeAttrGet | ( | MlirType | type | ) |
Creates a type attribute wrapping the given type in the same context as the type.
Definition at line 316 of file BuiltinAttributes.cpp.
References mlir::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirTypeID mlirTypeAttrGetTypeID | ( | void | ) |
Returns the typeID of a Type attribute.
Definition at line 324 of file BuiltinAttributes.cpp.
References wrap().
MLIR_CAPI_EXPORTED MlirType mlirTypeAttrGetValue | ( | MlirAttribute | attr | ) |
Returns the type stored in the given type attribute.
Definition at line 320 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirAttribute mlirUnitAttrGet | ( | MlirContext | ctx | ) |
Creates a unit attribute in the given context.
Definition at line 334 of file BuiltinAttributes.cpp.
References mlir::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirTypeID mlirUnitAttrGetTypeID | ( | void | ) |
Returns the typeID of a Unit attribute.
Definition at line 338 of file BuiltinAttributes.cpp.
References wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirUnmanagedDenseBoolResourceElementsAttrGet | ( | MlirType | shapedType, |
MlirStringRef | name, | ||
intptr_t | numElements, | ||
const int * | elements | ||
) |
Definition at line 805 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirAttribute mlirUnmanagedDenseDoubleResourceElementsAttrGet | ( | MlirType | shapedType, |
MlirStringRef | name, | ||
intptr_t | numElements, | ||
const double * | elements | ||
) |
Definition at line 865 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirAttribute mlirUnmanagedDenseFloatResourceElementsAttrGet | ( | MlirType | shapedType, |
MlirStringRef | name, | ||
intptr_t | numElements, | ||
const float * | elements | ||
) |
Definition at line 859 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirAttribute mlirUnmanagedDenseInt16ResourceElementsAttrGet | ( | MlirType | shapedType, |
MlirStringRef | name, | ||
intptr_t | numElements, | ||
const int16_t * | elements | ||
) |
Definition at line 841 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirAttribute mlirUnmanagedDenseInt32ResourceElementsAttrGet | ( | MlirType | shapedType, |
MlirStringRef | name, | ||
intptr_t | numElements, | ||
const int32_t * | elements | ||
) |
Definition at line 847 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirAttribute mlirUnmanagedDenseInt64ResourceElementsAttrGet | ( | MlirType | shapedType, |
MlirStringRef | name, | ||
intptr_t | numElements, | ||
const int64_t * | elements | ||
) |
Definition at line 853 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirAttribute mlirUnmanagedDenseInt8ResourceElementsAttrGet | ( | MlirType | shapedType, |
MlirStringRef | name, | ||
intptr_t | numElements, | ||
const int8_t * | elements | ||
) |
Definition at line 835 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirAttribute mlirUnmanagedDenseResourceElementsAttrGet | ( | MlirType | shapedType, |
MlirStringRef | name, | ||
void * | data, | ||
size_t | dataLength, | ||
size_t | dataAlignment, | ||
bool | dataIsMutable, | ||
void(*)(void *userData, const void *data, size_t size, size_t align) | deleter, | ||
void * | userData | ||
) |
Unlike the typed accessors below, constructs the attribute with a raw data buffer and no type/alignment checking.
Use a more strongly typed accessor if possible. If dataIsMutable is false, then an immutable AsmResourceBlob will be created and that passed data contents will be treated as const. If the deleter is non NULL, then it will be called when the data buffer can no longer be accessed (passing userData to it).
Definition at line 777 of file BuiltinAttributes.cpp.
References mlir::get(), unwrap(), and wrap().
MLIR_CAPI_EXPORTED MlirAttribute mlirUnmanagedDenseUInt16ResourceElementsAttrGet | ( | MlirType | shapedType, |
MlirStringRef | name, | ||
intptr_t | numElements, | ||
const uint16_t * | elements | ||
) |
Definition at line 817 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirAttribute mlirUnmanagedDenseUInt32ResourceElementsAttrGet | ( | MlirType | shapedType, |
MlirStringRef | name, | ||
intptr_t | numElements, | ||
const uint32_t * | elements | ||
) |
Definition at line 823 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirAttribute mlirUnmanagedDenseUInt64ResourceElementsAttrGet | ( | MlirType | shapedType, |
MlirStringRef | name, | ||
intptr_t | numElements, | ||
const uint64_t * | elements | ||
) |
Definition at line 829 of file BuiltinAttributes.cpp.
MLIR_CAPI_EXPORTED MlirAttribute mlirUnmanagedDenseUInt8ResourceElementsAttrGet | ( | MlirType | shapedType, |
MlirStringRef | name, | ||
intptr_t | numElements, | ||
const uint8_t * | elements | ||
) |
Definition at line 811 of file BuiltinAttributes.cpp.