wala / ML

Eclipse Public License 2.0
24 stars 17 forks source link

`IllegalStateException` when using `from`...`import` #60

Closed tatianacv closed 1 year ago

tatianacv commented 1 year ago

For the following example:

from tensorflow import random

def add(a, b):
  return a + b

c = add(random.uniform([1, 2]), random.uniform([2, 2]))

We get the following error:

[ERROR]   TestTensorflowModel.testTf2:98->testTf2:113 » IllegalState Encountered unexpected API call.
khatchad commented 1 year ago

@tatianacv Do you have a stack trace for this?

tatianacv commented 1 year ago

@tatianacv Do you have a stack trace for this?

com.ibm.wala.cast.python.ml.test.TestTensorflowModel.testTf2  Time elapsed: 1.114 s  <<< ERROR!
java.lang.IllegalStateException: Encountered unexpected API call.
    at com.ibm.wala.cast.python.ml.client.PythonTensorAnalysisEngine.getDataflowSources(PythonTensorAnalysisEngine.java:157)
    at com.ibm.wala.cast.python.ml.client.PythonTensorAnalysisEngine.performAnalysis(PythonTensorAnalysisEngine.java:269)
    at com.ibm.wala.cast.python.ml.client.PythonTensorAnalysisEngine.performAnalysis(PythonTensorAnalysisEngine.java:42)
    at com.ibm.wala.cast.python.ml.test.TestTensorflowModel.testTf2(TestTensorflowModel.java:104)
    at com.ibm.wala.cast.python.ml.test.TestTensorflowModel.testTf2(TestTensorflowModel.java:83)
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.base/java.lang.reflect.Method.invoke(Method.java:566)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
    at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
    at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100)
    at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63)
    at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329)
    at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293)
    at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:413)
    at org.apache.maven.surefire.junit4.JUnit4Provider.execute(JUnit4Provider.java:377)
    at org.apache.maven.surefire.junit4.JUnit4Provider.executeWithRerun(JUnit4Provider.java:284)
    at org.apache.maven.surefire.junit4.JUnit4Provider.executeTestSet(JUnit4Provider.java:248)
    at org.apache.maven.surefire.junit4.JUnit4Provider.invoke(JUnit4Provider.java:167)
    at org.apache.maven.surefire.booter.ForkedBooter.runSuitesInProcess(ForkedBooter.java:456)
    at org.apache.maven.surefire.booter.ForkedBooter.execute(ForkedBooter.java:169)
    at org.apache.maven.surefire.booter.ForkedBooter.run(ForkedBooter.java:595)
    at org.apache.maven.surefire.booter.ForkedBooter.main(ForkedBooter.java:581)
khatchad commented 1 year ago

@tatianacv Which test is now passing that has this example?

tatianacv commented 1 year ago

@tatianacv Which test is now passing that has this example?

https://github.com/wala/ML/blob/7e1812503d0ab4bf7e7aa637c9b7a02a847581ed/com.ibm.wala.cast.python.test/data/tf2d2.py#L1-L8

khatchad commented 1 year ago

This is just the input file. What about the test code?

tatianacv commented 1 year ago

This is just the input file. What about the test code?

https://github.com/wala/ML/blob/7e1812503d0ab4bf7e7aa637c9b7a02a847581ed/com.ibm.wala.cast.python.ml.test/source/com/ibm/wala/cast/python/ml/test/TestTensorflowModel.java#L70