diff options
| author | Yong He <yonghe@outlook.com> | 2022-10-27 12:30:15 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-27 12:30:15 -0700 |
| commit | 8dc9efd256bd211d8c446971f09a7c79e644b110 (patch) | |
| tree | 32612cfbd39531c1f21eab0777cf10a197b269d4 /source/slang/slang-check-type.cpp | |
| parent | 0cbef6fd6d7924d37ef3ea5ec7c848c80947d13f (diff) | |
Rename `JVPDerivativeModifier` -> `ForwardDifferentiableAttribute`. (#2472)
Co-authored-by: Yong He <yhe@nvidia.com>
Diffstat (limited to 'source/slang/slang-check-type.cpp')
| -rw-r--r-- | source/slang/slang-check-type.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/slang/slang-check-type.cpp b/source/slang/slang-check-type.cpp index 6a8f802f7..6bc4b9d36 100644 --- a/source/slang/slang-check-type.cpp +++ b/source/slang/slang-check-type.cpp @@ -324,7 +324,7 @@ namespace Slang // Differentiable type checking. // TODO: This can be super slow. Switch to caching the result asap. if (this->m_parentFunc && - this->m_parentFunc->findModifier<JVPDerivativeModifier>()) + this->m_parentFunc->findModifier<ForwardDifferentiableAttribute>()) { auto diffTypeContext = this->getShared()->innermostDiffTypeContext(); if (auto subtypeWitness = as<SubtypeWitness>( |
