Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for TrimTrailingWhitespaces (0.13 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions.cc

        return fp_attr.getSplatValue<APFloat>().isExactlyValue(value);
      }
      return llvm::all_of(fp_attr.getValues<APFloat>(), [value](const APFloat& f) {
        return f.isExactlyValue(value);
      });
    }
    
    inline void TrimTrailingWhitespaces(std::string& str) {
      while (!str.empty() && str.back() == ' ') {
        str.pop_back();
      }
    }
    
    // Lifts quantizable units as separate functions, thereby identifying the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top