File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
edu.cuny.hunter.hybridize.core/src/edu/cuny/hunter/hybridize/core/analysis Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments