Skip to content

Commit 25194b1

Browse files
Added JitFlag FreezingTraverseScope
1 parent c975d8a commit 25194b1

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

include/drjit-core/jit.h

+4
Original file line numberDiff line numberDiff line change
@@ -1575,6 +1575,9 @@ enum class JitFlag : uint32_t {
15751575
/// Set to \c true when Dr.Jit is recording a frozen function
15761576
FreezingScope = 1 << 21,
15771577

1578+
/// Set to \c true when traversing inputs or outputs of a frozen function
1579+
FreezingTraverseScope = 1 << 22,
1580+
15781581
/// Default flags
15791582
Default = (uint32_t) ConstantPropagation | (uint32_t) ValueNumbering |
15801583
(uint32_t) FastMath | (uint32_t) SymbolicLoops |
@@ -1616,6 +1619,7 @@ enum JitFlag {
16161619
JitFlagSymbolic = 1 << 19
16171620
KernelFreezing = 1 << 20,
16181621
FreezingScope = 1 << 21,
1622+
FreezingTraverseScope = 1 << 22,
16191623
};
16201624
#endif
16211625

0 commit comments

Comments
 (0)