|
AI Engine API User Guide (AIE-API) 2025.2
|
Loading...
Searching...
No Matches
aie::UnpackableFrom Concept Reference
Detailed Description
The concept UnpackableFrom is satisfied when all the following requirements are met:
- Both
FromandTotypes are valid vector element types. Fromtype is complex if and only ifTois a complex type.- Both
FromandToare integer types. Fromtype has a narrower bit representation thanTo.
Concept definition
template<typename To, typename From>
detail::type_bits_v<To> > detail::type_bits_v<From> &&
detail::is_complex_v<To> == detail::is_complex_v<From> &&
!detail::is_floating_point_v<To> &&
!detail::is_floating_point_v<From>
Concept for all the basic types that can be used in operations and as vector element type.
Definition concepts.hpp:185
The concept UnpackableFrom is satisfied when all the following requirements are met:
Definition concepts.hpp:456