Skip to content

Commit cbfd513

Browse files
author
Tatiana Castro-Vélez
committed
Adding additional information to field description (link included)
1 parent f4047bf commit cbfd513

File tree

1 file changed

+7
-4
lines changed
  • edu.cuny.hunter.hybridize.core/src/edu/cuny/hunter/hybridize/core/analysis

1 file changed

+7
-4
lines changed

edu.cuny.hunter.hybridize.core/src/edu/cuny/hunter/hybridize/core/analysis/Function.java

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,12 +92,15 @@ public class HybridizationParameters {
9292
private boolean inputSignatureParamExists;
9393

9494
/**
95-
* True iff this {@link Function}'s {@link decoratorsType} has parameter jit_compile.
95+
* True iff this {@link Function}'s {@link decoratorsType} has parameter jit_compile and deprecated name experimental_compile. For
96+
* more information, you can see this <a href="https://www.tensorflow.org/versions/r2.9/api_docs/python/tf/function">URL</a>.
9697
*/
9798
private boolean jitCompileParamExists;
9899

99100
/**
100-
* True iff this {@link Function}'s {@link decoratorsType} has parameter reduce_retracing.
101+
* True iff this {@link Function}'s {@link decoratorsType} has parameter reduce_retracing and deprecated name
102+
* experimental_relax_shapes. For more information, you can see this
103+
* <a href="https://www.tensorflow.org/versions/r2.9/api_docs/python/tf/function">URL</a>.
101104
*/
102105
private boolean reduceRetracingParamExists;
103106

@@ -247,8 +250,8 @@ public boolean hasReduceRetracingParam() {
247250
* @return True iff this {@link Function} has parameter experimental_compile.
248251
*/
249252
public boolean hasExperimentalCompileParam() {
250-
// Since jit_compile and experimental_compile (deprecated) have the same functionalities, when we parse these parameters together
251-
// and store it into the same boolean variable.
253+
// Since jit_compile and experimental_compile (deprecated) have the same functionalities, when we parse these parameters
254+
// together and store it into the same boolean variable.
252255
return this.jitCompileParamExists;
253256
}
254257

0 commit comments

Comments
 (0)