Maya 2022 UPDATE2 crash on move snap (v)

Maya 2022 UPDATE2 crash on move snap (v)

Anonymous
Not applicable
691 Views
5 Replies
Message 1 of 6

Maya 2022 UPDATE2 crash on move snap (v)

Anonymous
Not applicable

We are getting an instant crash on attached scene when doing the following:

1) Create a locator

2) Switch to move tool

3) Hold down 'v' and drag locator towards camera:

snapshot.png

 

Centos 7.9, nvidia 460.73.01

//last tool: Move
//====================================================
//panel with focus: modelPanel4
//visible panels:
// modelPanel4 outlinerPanel1 
//====================================================
  /lib64/libGL.so.1(+0x445e9) [0x7fa7b915c5e9]

 

 

0 Likes
692 Views
5 Replies
Replies (5)
Message 2 of 6

kolja.huebschmann
Explorer
Explorer

My Matchmove Department ran into this as well and it gets a show breaker!

 

System Specs: (happend on other hardware specs as well with same CentOS)

Operating System: CentOS Linux release 7.7.1908 (Core)

processor: Intel(R) Xeon(R) W-2133 CPU @ 3.60GHz
display: GeForce GTX 1070 Ti

 

Issue:
if you run this scrip and then try to snap one locator to an other, the scene will Crash

 

Script:

 

from maya import cmds

count = 3

for x in range(0, count):
    for z in range(0, count):
        x_val = x
        z_val = z
        item = cmds.spaceLocator()[0]
        cmds.setAttr(item + '.tx', x_val)
        cmds.setAttr(item + '.tz', z_val)

cmds.camera()

 

If the locator gets created without code, it will not crash! (or at least i was not able to reproduce the issue, wth a hand made scene)


Workaround:
Hide the camera,and the scene will not crash as well.

Or Work on windows 10

 

 

Attached a file with GDB and strace log

0 Likes
Message 3 of 6

johan8CZ8M
Contributor
Contributor

Hi Kolja

 

I believe you can bypass some of these crashes by setting the following environment variable:

export MAYA_DISABLE_PARALLEL_SELECT_TEST=1

 

Message 4 of 6

kolja.huebschmann
Explorer
Explorer
Hi Johan,
thanks a lot for this fast and helpfull reply - it worked so far! (We had crashes with UV move, extrude, bevel ... lets see if it helps with these as welll)

Did you find any documentation/info about the MAYA_DISABLE_PARALLEL_SELECT_TEST env var?
0 Likes
Message 5 of 6

johan8CZ8M
Contributor
Contributor

Haven't seen any.. If you search for the env var in this forum you will see the thread were this comes up.

Not sure if it's best to remove it once these bugs have been fixed in update 3?...

0 Likes
Message 6 of 6

kolja.huebschmann
Explorer
Explorer
yes did see it in the forum with the isolate selection and now in this forum (google).
Properly its worth a test removing it with update 3 - sounds like a speed improvement in general, not turning it off.
0 Likes