Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for HANDLE_TF_TYPE (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_types.def

    // used as a central place for enumerating the different types.
    
    #ifdef HANDLE_TF_TYPE
    
    //             class, enumerant, name
    HANDLE_TF_TYPE(Qint8, QINT8, "qint8")
    HANDLE_TF_TYPE(Qint16, QINT16, "qint16")
    HANDLE_TF_TYPE(Qint32, QINT32, "qint32")
    HANDLE_TF_TYPE(Quint8, QUINT8, "quint8")
    HANDLE_TF_TYPE(Quint16, QUINT16, "quint16")
    HANDLE_TF_TYPE(String, STRING, "string")
    
    #ifndef HANDLE_CUSTOM_TF_TYPE
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 09 03:12:53 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/convert_type.cc

          *type = builder.getIntegerType(4, /*isSigned=*/true);
          return absl::OkStatus();
        case DT_UINT4:
          *type = builder.getIntegerType(4, /*isSigned=*/false);
          return absl::OkStatus();
    #define HANDLE_TF_TYPE(tftype, enumerant, name)             \
      case DT_##enumerant:                                      \
        *type = builder.getType<mlir::tf_type::tftype##Type>(); \
        return OkStatus();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 26 09:37:10 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_types.h

    using ::mlir::tf_type::TensorFlowType;             // NOLINT
    using ::mlir::tf_type::TensorFlowTypeWithSubtype;  // NOLINT
    using ::mlir::tf_type::VariantType;                // NOLINT
    
    #define HANDLE_TF_TYPE(tftype, enumerant, name) \
      using tftype##Type = mlir::tf_type::tftype##Type;
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.def"
    
    
    }  // end namespace TF
    }  // end namespace mlir
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 29 04:41:05 UTC 2021
    - 2.3K bytes
    - Viewed (0)
Back to top