"examples/rust/git@developer.sourcefind.cn:OpenDAS/dynamo.git" did not exist on "494d56255a94f3546558bfe84c35d38b3ffcfed1"
Unverified Commit 86613a95 authored by Gustaf Ahdritz's avatar Gustaf Ahdritz Committed by GitHub
Browse files

Add contiguous() call just in case

parent 03518fd1
...@@ -96,6 +96,7 @@ def identity_rot_mats( ...@@ -96,6 +96,7 @@ def identity_rot_mats(
) )
rots = rots.view(*((1,) * len(batch_dims)), 3, 3) rots = rots.view(*((1,) * len(batch_dims)), 3, 3)
rots = rots.expand(*batch_dims, -1, -1) rots = rots.expand(*batch_dims, -1, -1)
rots = rots.contiguous()
return rots return rots
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment