Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for OutputEq (0.92 sec)

  1. tensorflow/cc/framework/gradients.cc

    #include "tensorflow/core/platform/macros.h"
    
    namespace tensorflow {
    namespace {
    
    struct OutputHash {
      uint64 operator()(const Output& x) const { return x.hash(); }
    };
    
    struct OutputEq {
      bool operator()(const Output& x, const Output& y) const {
        return (x.node() == y.node()) && (x.index() == y.index());
      }
    };
    
    class SymbolicGradientBuilder {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top