Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for IsAlpha (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

    }
    
    std::optional<llvm::SmallDenseMap<char, int64_t>> EquationToMap(
        llvm::StringRef equation) {
      llvm::SmallDenseMap<char, int64_t> map;
      for (int64_t i = 0; i < equation.size(); ++i) {
        if (!std::isalpha(equation[i])) {
          // Unsupported character in the equation.
          return std::nullopt;
        }
        if (map.count(equation[i])) {
          // Duplicate character in the equation.
          return std::nullopt;
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/codegen.cc

    namespace tensorflow {
    namespace tfcompile {
    
    namespace {
    
    using BufferInfo = xla::cpu_function_runtime::BufferInfo;
    
    bool IsAlpha(char c) {
      return (c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z');
    }
    
    bool IsAlphaNum(char c) { return IsAlpha(c) || (c >= '0' && c <= '9'); }
    
    // Convert an XLA type into a C++ type.
    Status XLATypeToCpp(xla::PrimitiveType type, string* str) {
      switch (type) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  3. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    capitaliseAllWords(String); public static String uncapitaliseAllWords(String); public static String getNestedString(String, String); public static String getNestedString(String, String, String); public static int countMatches(String, String); public static boolean isAlpha(String); public static boolean isWhitespace(String); public static boolean isAlphaSpace(String); public static boolean isAlphanumeric(String); public static boolean isAlphanumericSpace(String); public static boolean isNumeric(String); public static...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
Back to top