Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for OutputInputTensorPairHasher (0.24 sec)

  1. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

          VLOG(1) << "Guaranteed const found: " << src_arg.first->DebugString();
          src_arg.second->AddAttr("_is_guaranteed_constant", true);
        }
      }
    }
    
    struct OutputInputTensorPairHasher {
      uint64 operator()(std::pair<OutputTensor, InputTensor> const& s) const {
        return Hash64Combine(OutputTensor::Hash()(s.first),
                             InputTensor::Hash()(s.second));
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
Back to top