You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running the following trivial Python script in a Windows 11 PowerShell:
PS ...> python
Python 3.13.1 (tags/v3.13.1:0671451, Dec 3 2024, 19:06:28) [MSC v.1942 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import drjit
>>> exit()
and check for the last error code, I get a non-zero value, i.e.,
PS ...> $LASTEXITCODE
-1073741819
Running the above script without the line import drjit does not cause this issue (and returns the expected 0 as error code).
So far, I do not observe actual failures or crashes related to this behavior.
However, the non-zero error code makes it hard to judge execution success during batch execution.
I observe this issue on the following configuration:
Fresh Windows 11 image.
Python 3.13.1
drjit 1.0.5 (obtained through mitsuba 3.6.4)
LLVM 19.1.7
The text was updated successfully, but these errors were encountered:
When running the following trivial Python script in a Windows 11 PowerShell:
and check for the last error code, I get a non-zero value, i.e.,
Running the above script without the line
import drjit
does not cause this issue (and returns the expected 0 as error code).So far, I do not observe actual failures or crashes related to this behavior.
However, the non-zero error code makes it hard to judge execution success during batch execution.
I observe this issue on the following configuration:
Windows 11
image.Python 3.13.1
drjit 1.0.5
(obtained throughmitsuba 3.6.4
)LLVM 19.1.7
The text was updated successfully, but these errors were encountered: