diff --git a/test/TensorFlowNET.UnitTest/ManagedAPI/ControlFlowApiTest.cs b/test/TensorFlowNET.UnitTest/ManagedAPI/ControlFlowApiTest.cs index c1754393..1cd17866 100644 --- a/test/TensorFlowNET.UnitTest/ManagedAPI/ControlFlowApiTest.cs +++ b/test/TensorFlowNET.UnitTest/ManagedAPI/ControlFlowApiTest.cs @@ -47,10 +47,12 @@ namespace TensorFlowNET.UnitTest.ManagedAPI Assert.AreEqual(10, (int)r); } + [TestMethod, Ignore] public void ScanFunctionGraphMode() { tf.compat.v1.disable_eager_execution(); + Func fn = (prev, current) => tf.add(prev, current); var input = tf.placeholder(TF_DataType.TF_FLOAT, new TensorShape(6)); var scan = tf.scan(fn, input);