Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for typehash (0.21 sec)

  1. tensorflow/compiler/mlir/tfr/ir/tfr_types.h

        return {getTrailingObjects<StringAttr>(), num_attrs};
      }
    
      unsigned num_attrs;
    };
    
    template <typename Derived>
    class TFRTypeImpl : public Type::TypeBase<Derived, TFRType, TFRTypeStorage> {
     public:
      using Base = Type::TypeBase<Derived, TFRType, TFRTypeStorage>;
      using TFRBase = TFRTypeImpl<Derived>;
      using Base::Base;
    
      static Derived get(ArrayRef<StringAttr> attrs, MLIRContext* context) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.h

    class TFTensorType
        : public mlir::Type::TypeBase<TFTensorType, mlir::Type, mlir::TypeStorage> {
     public:
      using Base::Base;
      static constexpr mlir::StringLiteral name = "tensorflow.tf_mlrt.tf_tensor";
    };
    
    // The MLIR type represents a tensorflow::Device*
    class TFDeviceType
        : public mlir::Type::TypeBase<TFDeviceType, mlir::Type, mlir::TypeStorage> {
     public:
      using Base::Base;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback.h

    };
    
    // The MLIR type represents a tensorflow::Tensor.
    class TFTensorType : public Type::TypeBase<TFTensorType, Type, TypeStorage> {
     public:
      using Base::Base;
      static constexpr StringLiteral name = "tfrt.tf_tensor";
    };
    
    // The MLIR type represents a tensorflow::Allocator.
    class TFAllocatorType
        : public Type::TypeBase<TFAllocatorType, Type, TypeStorage> {
     public:
      using Base::Base;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfrt/ir/mlrt/mlrt_dialect.h

    // The MLIR type represents a C++ mlrt::Future.
    class FutureType
        : public mlir::Type::TypeBase<FutureType, mlir::Type, mlir::TypeStorage> {
     public:
      using Base::Base;
      static constexpr mlir::StringLiteral name = "mlrt.compiler.future";
    };
    
    // The MLIR type represents a C++ mlrt::Promise.
    class PromiseType
        : public mlir::Type::TypeBase<PromiseType, mlir::Type, mlir::TypeStorage> {
     public:
      using Base::Base;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.h

    // The Control type is a token-like value that models control dependencies from
    // TensorFlow graphs.
    class ControlType : public Type::TypeBase<ControlType, Type, TypeStorage> {
     public:
      using Base::Base;
      static constexpr ::mlir::StringLiteral name = "tf_executor.control";
    };
    
    class TokenType : public Type::TypeBase<TokenType, Type, TypeStorage> {
     public:
      using Base::Base;
      static constexpr ::mlir::StringLiteral name = "tf_executor.token";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 07:17:01 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.h

    namespace mlir {
    namespace TFL {
    
    typedef TFLDialect TensorFlowLiteDialect;
    
    // The Control type is a token-like value that models control dependencies
    class ControlType : public Type::TypeBase<ControlType, Type, TypeStorage> {
     public:
      using Base::Base;
      static constexpr StringLiteral name = "tfl.control";
    };
    
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops_interface.h.inc"
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/mod/sumdb/test.go

    		list = append(list, h[id])
    	}
    	return list, nil
    }
    
    func (s *TestServer) Signed(ctx context.Context) ([]byte, error) {
    	s.mu.Lock()
    	defer s.mu.Unlock()
    
    	size := int64(len(s.records))
    	h, err := tlog.TreeHash(size, s.hashes)
    	if err != nil {
    		return nil, err
    	}
    	text := tlog.FormatTree(tlog.Tree{N: size, Hash: h})
    	signer, err := note.NewSigner(s.signer)
    	if err != nil {
    		return nil, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top