vvchernov opened a new pull request #8685:
URL: https://github.com/apache/tvm/pull/8685


   WORK IN PROGRESS: frontend tests issue
   Implementation of unbind op in relay and topi sides.
   Unbind splits given tensor along specified axis to sequence of subtensors. 
The number of the subtensors is equal to size of the tensor along the axis. The 
specified axis is squeezed for each subtensor.
   
   Example:
   tensor X
   shape(X) = [3, 5, 7]
   seqs = unbind(X, axis = 1)
   len(seqs) = 5
   shape(seqs[0]) = [3, 7]
   
   Split op is reverse concatenate op
   Unbind op is reverse stack op
   


-- 
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