Closed bryanwong17 closed 10 months ago
Hi, I am facing the same issue. Did you manage to solve it? Thank you in advance
Hi, I managed to solve the problem by changing manually this line of code inside of the package
q *= self. scale
to
q = q * self.scale
RuntimeError: Output 0 of PermuteBackward0 is a view and is being modified inplace. This view is the output of a function that returns multiple views. Such functions do not allow the output views to be modified inplace. You should replace the inplace operation by an out-of-place one.
Hi, I was wondering if you have ever encountered this issue. If so, how did you solve it? Thank you!