You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add i2 (signed 2-bit integer) element type to core registration
- Add Type_t::i2 to the enum in element_type.hpp
- Add inline constexpr Type i2(Type_t::i2) constant
- Add i2_aliases and type_info entry (2-bit, signed, quantized)
- Add i2 to the EnumNames string lookup map
- Add i2 element type iterator and template backend support
- element_type_traits.hpp: add element_type_traits<i2> with value_type int8_t
- element_iterator.hpp: add i2 to is_bit_type(), bit_width<i2>() = 2
specialization, sign-extension in operator value_type() for i2 alongside i4,
and exclude i2 from the unsigned raw-cast operator
- template backend convert.cpp: add i2 cases to evaluate_by_input_type and
evaluate_by_output_type dispatch switches
- template backend evaluate_node.hpp: add Type_t::i2 case to generic dispatch
- template backend subtract.cpp: add evaluate<i2> specialization (unpack i2->i8,
subtract, repack i8->i2) and dispatch case, matching u2 pattern
- Changes related to int2 unpacking in python bindings
- Add support for in tflite FE
- Updated schema.fbs for int2
Signed-off-by: Anisha Kulkarni <anisha.dattatraya.kulkarni@intel.com>
0 commit comments