Skip to content

Commit adddf2a

Browse files
committed
commented out debugging code
1 parent d65c0d3 commit adddf2a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/TensorFlowNET.UnitTest/ops_test/ControlDependenciesTest.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -157,11 +157,11 @@ public void TestNested()
157157
});
158158
});
159159
});
160-
var z=tf.add(a_1, tf.multiply(b_2, b_1));
161-
with(g.control_dependencies(new[] {z}), ctrl =>
162-
{
163-
var z1 = tf.add(a_3, tf.multiply(a_4, a_2));
164-
});
160+
//var z=tf.add(a_1, tf.multiply(b_2, b_1));
161+
//with(g.control_dependencies(new[] {z}), ctrl =>
162+
//{
163+
// var z1 = tf.add(a_3, tf.multiply(a_4, a_2));
164+
//});
165165
//tf.train.export_meta_graph(@"D:\dev\tensorboard\logdir\sharp.meta", as_text: false);
166166
assertItemsEqual(b_1.op.control_inputs, new[] { a_1.op, a_2.op, a_3.op, a_4.op });
167167
assertItemsEqual(b_2.op.control_inputs, b_1.op.control_inputs);

0 commit comments

Comments
 (0)