We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0abf98c commit 6434584Copy full SHA for 6434584
qdp/qdp-python/tests/test_bindings.py
@@ -35,6 +35,12 @@ def test_import():
35
assert hasattr(mahout_qdp, "QdpEngine")
36
assert hasattr(mahout_qdp, "QuantumTensor")
37
38
+ # Test that QdpEngine has the new encode_from_tensorflow method
39
+ from mahout_qdp import QdpEngine
40
+
41
+ assert hasattr(QdpEngine, "encode_from_tensorflow")
42
+ assert callable(getattr(QdpEngine, "encode_from_tensorflow"))
43
44
45
@pytest.mark.gpu
46
def test_encode():
0 commit comments