summaryrefslogtreecommitdiffstats
path: root/source/slang/slang-emit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-emit.cpp')
-rw-r--r--source/slang/slang-emit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/slang/slang-emit.cpp b/source/slang/slang-emit.cpp
index 896171f32..fcdee78ea 100644
--- a/source/slang/slang-emit.cpp
+++ b/source/slang/slang-emit.cpp
@@ -377,7 +377,7 @@ Result linkAndOptimizeIR(
// Process higher-order calles to auto-diff passes.
// 1. Generate JVP code wherever necessary. (Linearization or "forward-mode" pass)
- processJVPDerivativeMarkers(irModule, sink);
+ processForwardDifferentiableFuncs(irModule, sink);
// 2. Transpose JVP to VJP code wherever needed. (Transposition or "reverse-mode" pass)
// processVJPDerivativeMarkers(module); // Disabled currently. No impl yet.