When processing the following:
import tensorflow as tf
def func2(t):
pass
@tf.function
def func():
a = tf.constant([[1.0, 2.0], [3.0, 4.0]])
b = tf.constant([[1.0, 1.0], [0.0, 1.0]])
c = tf.matmul(a, b)
tensor = tf.Tensor(c.op, 0, tf.float32)
func2(tensor)
func()
We found an error in determining whether we are dealing with a TensorFlow API. We found that the tensor analysis is empty:
|
TensorTypeAnalysis analysis = E.performAnalysis(builder); |
When processing the following:
We found an error in determining whether we are dealing with a TensorFlow API. We found that the tensor analysis is empty:
ML/com.ibm.wala.cast.python.ml.test/source/com/ibm/wala/cast/python/ml/test/TestTensorflowModel.java
Line 82 in 93c96d8