Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for raddrdef (0.32 sec)

  1. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

          const char* attr_name,
          absl::Span<const AbstractOperation*> values) override;
    
      Status SetOpName(const char* op_name) override;
    
      MLIRContext* GetContext() { return context_; }
    
      Status AddRef(Type type, Type* output_type);
    
      Status Create(ArrayRef<Value> operands, OperationState**);
    
      // For LLVM style RTTI.
      static bool classof(const AbstractOperation* ptr) {
        return ptr->getKind() == kMlir;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-tuple.h

    // AddRef<T>::type is T if T is a reference; otherwise it's T&.  This
    // is the same as tr1::add_reference<T>::type.
    template <typename T>
    struct AddRef { typedef T& type; };  // NOLINT
    template <typename T>
    struct AddRef<T&> { typedef T& type; };  // NOLINT
    
    // A handy wrapper for AddRef.
    #define GTEST_ADD_REF_(T) typename ::std::tr1::gtest_internal::AddRef<T>::type
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top