Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetSuffixSeparator (0.18 sec)

  1. tensorflow/compiler/mlir/op_or_arg_name_mapper.h

      const llvm::DenseMap<OpOrVal, absl::string_view>& GetMap() const {
        return op_or_val_to_name_;
      }
    
      // Returns the separator used before uniqueing suffix.
      virtual llvm::StringRef GetSuffixSeparator() { return ""; }
    
      virtual llvm::StringRef GetDashSeparator() { return "_"; }
    
     private:
      // Returns name from the location of the operation or value.
      virtual std::string GetName(OpOrVal op_or_val) = 0;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 17 22:54:55 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/op_or_arg_name_mapper.cc

      }
    
      // Add increasing number (count) to end of prefix until it is determined
      // to be unique.
      auto& val = prefix_it.first->second;
      auto prefix_name = hash_value == 0 ? prefix.str() + GetSuffixSeparator().str()
                                         : prefix.str() + GetDashSeparator().str() +
                                               std::to_string(hash_value) +
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top