Xinwei Liu
Results
2
comments of
Xinwei Liu
trafficstars
`python/tvm/relay/backend/contrib/uma/backend.py` has a bug: ```python for name, attr in self._target_attrs: if attr is None: raise ValueError("Target attribute None is not supported.") ``` can use: ```python for attr in self._target_attrs.values(): if...
@ezyang @yongsun @alexeyr @schell