From 776a129aa8bed47870fa5406ed8ea86b4048e39a Mon Sep 17 00:00:00 2001 From: Eli Belash Date: Mon, 30 Sep 2019 01:07:23 +0300 Subject: [PATCH 1/2] Binding.Util: Removed catch clauses in tf_with --- src/TensorFlowNET.Core/Binding.Util.cs | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/TensorFlowNET.Core/Binding.Util.cs b/src/TensorFlowNET.Core/Binding.Util.cs index f7d1a4e0..9323784a 100644 --- a/src/TensorFlowNET.Core/Binding.Util.cs +++ b/src/TensorFlowNET.Core/Binding.Util.cs @@ -106,11 +106,6 @@ namespace Tensorflow py.__enter__(); action(py); } - catch (Exception ex) - { - Console.WriteLine(ex.ToString()); - throw; - } finally { py.__exit__(); @@ -126,11 +121,6 @@ namespace Tensorflow py.__enter__(); action(py); } - catch (Exception ex) - { - Console.WriteLine(ex.ToString()); - throw; - } finally { py.__exit__(); @@ -146,11 +136,6 @@ namespace Tensorflow py.__enter__(); return action(py); } - catch (Exception ex) - { - Console.WriteLine(ex.ToString()); - return default(TOut); - } finally { py.__exit__(); From b34c598110c91501681d2df768ff0c62589502b9 Mon Sep 17 00:00:00 2001 From: Eli Belash Date: Mon, 30 Sep 2019 01:07:28 +0300 Subject: [PATCH 2/2] Binding.Util: Minor change --- src/TensorFlowNET.Core/Binding.Util.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/TensorFlowNET.Core/Binding.Util.cs b/src/TensorFlowNET.Core/Binding.Util.cs index 9323784a..dcf191ed 100644 --- a/src/TensorFlowNET.Core/Binding.Util.cs +++ b/src/TensorFlowNET.Core/Binding.Util.cs @@ -175,8 +175,7 @@ namespace Tensorflow public static IEnumerable<(T1, T2)> zip(IEnumerable e1, IEnumerable e2) { - foreach (var (v1, v2) in e1.Zip(e2, (t1, t2) => (t1, t2))) - yield return (v1, v2); + return e1.Zip(e2, (t1, t2) => (t1, t2)); } public static IEnumerable<(TKey, TValue)> enumerate(Dictionary values)