Browse Source

Suppress CS0659 ('type' overrides Object.Equals(object o) but does not override Object.GetHashCode())

tags/v0.20
Sam Harwell Haiping 5 years ago
parent
commit
dfd171f0ae
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      src/TensorFlowNET.Core/Operations/map_fn.cs

+ 2
- 0
src/TensorFlowNET.Core/Operations/map_fn.cs View File

@@ -10,7 +10,9 @@ using static Tensorflow.Binding;

namespace Tensorflow
{
#pragma warning disable CS0659 // 'Operation' overrides Object.Equals(object o) but does not override Object.GetHashCode()
public partial class Operation
#pragma warning restore CS0659 // 'Operation' overrides Object.Equals(object o) but does not override Object.GetHashCode()
{
/// <summary>
/// map on the list of tensors unpacked from `elems` on dimension 0.


Loading…
Cancel
Save