From ba81720463c0caaedc01ce7e23c30d0ff0bf1325 Mon Sep 17 00:00:00 2001 From: Dan McGarry Date: Thu, 5 Dec 2024 14:13:51 -0800 Subject: [PATCH 1/4] Explicitly add required export arg --- test/lib/ufe/testContextOps.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/lib/ufe/testContextOps.py b/test/lib/ufe/testContextOps.py index 07c97d671c..44e35a520b 100644 --- a/test/lib/ufe/testContextOps.py +++ b/test/lib/ufe/testContextOps.py @@ -1901,7 +1901,9 @@ def testGeomCoponentAssignment(self): dagPath.extendToShape() with mayaUsd.lib.OpUndoItemList(): - mayaUsd.lib.PrimUpdaterManager.duplicate(cmds.ls(cubeXForm, long=True)[0], psPathStr) + mayaUsd.lib.PrimUpdaterManager.duplicate( + cmds.ls(cubeXForm, long=True)[0], psPathStr, + {'exportComponentTags': True}) topPath = ufe.PathString.path(psPathStr + ',/' + cubeXForm + "/" + "top") topItem = ufe.Hierarchy.createItem(topPath) From 708063c5fd838693d16e02864901af196fbd5027 Mon Sep 17 00:00:00 2001 From: Dan McGarry Date: Thu, 5 Dec 2024 14:22:42 -0800 Subject: [PATCH 2/4] Removing deprecated renderman attributes from test .ma file --- .../usd/translators/UsdExportRfMLightTest/RfMLightsTest.ma | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/lib/usd/translators/UsdExportRfMLightTest/RfMLightsTest.ma b/test/lib/usd/translators/UsdExportRfMLightTest/RfMLightsTest.ma index 5b7317b370..af8e28364e 100644 --- a/test/lib/usd/translators/UsdExportRfMLightTest/RfMLightsTest.ma +++ b/test/lib/usd/translators/UsdExportRfMLightTest/RfMLightsTest.ma @@ -1387,7 +1387,6 @@ createNode rmanGlobals -s -n "rmanGlobals"; setAttr ".ri_maxDiffuseDepth" 1; setAttr ".ri_displayFilter" -type "string" "gaussian"; setAttr ".ri_displayFilterSize" -type "float2" 2 2 ; - setAttr ".pixelFilterMode" -type "string" "importance"; setAttr ".renderVariant" -type "string" "ris"; setAttr ".xpuMode" -type "long2" 1 1 ; setAttr ".motionBlur" 0; @@ -1565,7 +1564,6 @@ createNode rmanDisplayChannel -n "diffuse"; setAttr ".channelSource" -type "string" "lpe:C(D[DS]*[LO])|[LO]"; setAttr ".lpeLightGroup" -type "string" ""; setAttr ".filter" -type "string" "inherit from display"; - setAttr ".filterwidth" -type "float2" -1 -1 ; setAttr ".statistics" -type "string" ""; setAttr ".relativepixelvariance" -1; setAttr ".shadowthreshold" 0.0099999997764825821; @@ -1584,7 +1582,6 @@ createNode rmanDisplayChannel -n "a"; setAttr ".channelSource" -type "string" "a"; setAttr ".lpeLightGroup" -type "string" ""; setAttr ".filter" -type "string" "inherit from display"; - setAttr ".filterwidth" -type "float2" -1 -1 ; setAttr ".statistics" -type "string" ""; setAttr ".relativepixelvariance" -1; setAttr ".shadowthreshold" 0.0099999997764825821; @@ -2058,7 +2055,6 @@ createNode rmanDisplayChannel -n "Ci"; setAttr ".channelSource" -type "string" "Ci"; setAttr ".lpeLightGroup" -type "string" ""; setAttr ".filter" -type "string" "inherit from display"; - setAttr ".filterwidth" -type "float2" -1 -1 ; setAttr ".statistics" -type "string" ""; setAttr ".relativepixelvariance" 1; setAttr ".shadowthreshold" 0.0099999997764825821; @@ -2077,7 +2073,6 @@ createNode rmanDisplayChannel -n "a1"; setAttr ".channelSource" -type "string" "a"; setAttr ".lpeLightGroup" -type "string" ""; setAttr ".filter" -type "string" "inherit from display"; - setAttr ".filterwidth" -type "float2" -1 -1 ; setAttr ".statistics" -type "string" ""; setAttr ".relativepixelvariance" -1; setAttr ".shadowthreshold" 0.0099999997764825821; From 48123950a0c72391303510beb914ec36d068a4d6 Mon Sep 17 00:00:00 2001 From: Aram Azhari Date: Tue, 10 Dec 2024 14:23:58 -0500 Subject: [PATCH 3/4] EMSUSD-1692 - Ignore ClangFormat for LookdevXUsd folder --- .clang-format-ignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.clang-format-ignore b/.clang-format-ignore index e69de29bb2..a25e343498 100644 --- a/.clang-format-ignore +++ b/.clang-format-ignore @@ -0,0 +1,2 @@ +# Skip clang-format of LookdevXUsd for now +lib/lookdevXUsd/* \ No newline at end of file From 96616e0a1172f3e993d5b27e05add01893128392 Mon Sep 17 00:00:00 2001 From: Pierre Baillargeon Date: Tue, 10 Dec 2024 14:34:14 -0500 Subject: [PATCH 4/4] Fix fatal error exit When aborting the process due to a fatal error (for example TF_CODING_ERROR or setting the environment variable TF_FATAL_VERIFY to 1), MayaUSD would get in a deadlock. Fix this by avoiding trying to unregister the diagnostic delegate when logging a fatal error. --- lib/mayaUsd/utils/diagnosticDelegate.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/lib/mayaUsd/utils/diagnosticDelegate.cpp b/lib/mayaUsd/utils/diagnosticDelegate.cpp index 9044b84713..0128e46815 100644 --- a/lib/mayaUsd/utils/diagnosticDelegate.cpp +++ b/lib/mayaUsd/utils/diagnosticDelegate.cpp @@ -143,6 +143,23 @@ class ErrorOnlyDelegate : public UsdUtilsCoalescingDiagnosticDelegate { UsdMayaDiagnosticDelegate::Flush(); + // Note: TfLogCrash will do a hard abort of the process. + // The dynamic libraries will be unloaded in a random order and + // global variable will be destroyed. Unfortunately, USD holds a + // mutex while in the TfLogCrash function and trying to remove the + // diagnostic delegate (_waker) will also try to hold that mutex + // resulting in a dead-lock. Avoid this by avoiding to destroy + // the delegates + // + // Yes, this means we are leaking the delegates, but we are in + // the middle of crashing anyway, so it does not really matter. + + _waker.release(); + _flusher.release(); + _batchedStatuses.release(); + _batchedWarnings.release(); + _batchedErrors.release(); + TfLogCrash( "FATAL ERROR", msg,