Class AccessPath#
Defined in File access_path.h
Inheritance Relationships#
Base Type#
public tvm::ffi::ObjectRef
(Class ObjectRef)
Class Documentation#
-
class AccessPath : public tvm::ffi::ObjectRef#
ObjectRef class of AccessPath.
See also
Public Static Functions
-
template<typename Iter>
static inline AccessPath FromSteps(Iter begin, Iter end)# Create an access path from an iterator range of steps.
- Parameters:
begin – The beginning of the iterator range.
end – The end of the iterator range.
- Returns:
The access path.
-
static inline AccessPath FromSteps(Array<AccessStep> steps)#
Create an access path from an array of steps.
- Parameters:
steps – The array of steps.
- Returns:
The access path.
-
static inline AccessPath Root()#
Create a root access path.
- Returns:
The root access path.
-
template<typename Iter>