My Project
Public Member Functions | Static Public Member Functions | List of all members
mlir::VectorType Class Reference

#include <StandardTypes.h>

Inheritance diagram for mlir::VectorType:
Inheritance graph
[legend]
Collaboration diagram for mlir::VectorType:
Collaboration graph
[legend]

Public Member Functions

ArrayRef< int64_t > getShape () const
 

Static Public Member Functions

static VectorType get (ArrayRef< int64_t > shape, Type elementType)
 
static VectorType getChecked (ArrayRef< int64_t > shape, Type elementType, Location location)
 
static LogicalResult verifyConstructionInvariants (Optional< Location > loc, MLIRContext *context, ArrayRef< int64_t > shape, Type elementType)
 Verify the construction of a vector type. More...
 
static bool isValidElementType (Type t)
 
static bool kindof (unsigned kind)
 Methods for support type inquiry through isa, cast, and dyn_cast. More...
 
- Static Public Member Functions inherited from mlir::detail::StorageUserBase< ConcreteT, BaseT, StorageT, UniquerT >
static ClassIDgetClassID ()
 Return a unique identifier for the concrete type. More...
 
template<typename T >
static bool classof (T val)
 

Additional Inherited Members

- Public Types inherited from mlir::detail::StorageUserBase< ConcreteT, BaseT, StorageT, UniquerT >
using Base = StorageUserBase< ConcreteT, BaseT, StorageT, UniquerT >
 Utility declarations for the concrete attribute class. More...
 
using ImplType = StorageT
 
- Protected Member Functions inherited from mlir::detail::StorageUserBase< ConcreteT, BaseT, StorageT, UniquerT >
ImplTypegetImpl () const
 Utility for easy access to the storage instance. More...
 
- Static Protected Member Functions inherited from mlir::detail::StorageUserBase< ConcreteT, BaseT, StorageT, UniquerT >
template<typename... Args>
static ConcreteT get (MLIRContext *ctx, unsigned kind, Args... args)
 
template<typename... Args>
static ConcreteT getChecked (const Location &loc, MLIRContext *ctx, unsigned kind, Args... args)
 
template<typename... Args>
static LogicalResult verifyConstructionInvariants (Args... args)
 Default implementation that just returns success. More...
 

Detailed Description

Vector types represent multi-dimensional SIMD vectors, and have a fixed known constant shape with one or more dimension.

Member Function Documentation

◆ get()

VectorType VectorType::get ( ArrayRef< int64_t >  shape,
Type  elementType 
)
static

Get or create a new VectorType of the provided shape and element type. Assumes the arguments define a well-formed VectorType.

◆ getChecked()

VectorType VectorType::getChecked ( ArrayRef< int64_t >  shape,
Type  elementType,
Location  location 
)
static

Get or create a new VectorType of the provided shape and element type declared at the given, potentially unknown, location. If the VectorType defined by the arguments would be ill-formed, emit errors and return nullptr-wrapping type.

◆ getShape()

ArrayRef< int64_t > VectorType::getShape ( ) const

◆ isValidElementType()

static bool mlir::VectorType::isValidElementType ( Type  t)
inlinestatic

Returns true of the given type can be used as an element of a vector type. In particular, vectors can consist of integer or float primitives.

◆ kindof()

static bool mlir::VectorType::kindof ( unsigned  kind)
inlinestatic

Methods for support type inquiry through isa, cast, and dyn_cast.

◆ verifyConstructionInvariants()

LogicalResult VectorType::verifyConstructionInvariants ( Optional< Location loc,
MLIRContext context,
ArrayRef< int64_t >  shape,
Type  elementType 
)
static

Verify the construction of a vector type.


The documentation for this class was generated from the following files: