xinetzone commented on issue #11260:
URL: https://github.com/apache/tvm/issues/11260#issuecomment-1275449937

   `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 attr is None:
                   raise ValueError("Target attribute None is not supported.")
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to