[AutoDiff] Fix `@noDerivative` attributes in non-primary-files. #29647
[AutoDiff] Fix `@noDerivative` attributes in non-primary-files.
78f5e7e0
marcrasi
approved these changes
on 2020-02-04
rxwei
approved these changes
on 2020-02-04
dan-zheng
merged
5f65a37a
into tensorflow 5 years ago
dan-zheng
deleted the noderivative-attr-fix branch 5 years ago
Assignees
No one assigned
Previously,
@noDerivative
attribute type-checking generated implicit@_semantics("autodiff.nonvarying")
attributes.However, attributes in non-primary-files are not type-checked, so
@noDerivative
attributes in non-primary-files are not processed.Now, all
@noDerivative
attributes are lowered to[_semantics "autodiff.nonvarying"]
SIL function attributes.Resolves TF-1145.