Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 240 for TypeId (0.17 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalization_op_config.cc

          TypeID::get<TF::CosOp>(),
          TypeID::get<TF::TanOp>(),
          TypeID::get<TF::DiagPartOp>(),
          TypeID::get<TF::EinsumOp>(),
          TypeID::get<TF::ExpOp>(),
          TypeID::get<TF::Expm1Op>(),
          TypeID::get<TF::FakeQuantWithMinMaxArgsOp>(),
          TypeID::get<TF::FloorOp>(),
          TypeID::get<TF::IFFTOp>(),
          TypeID::get<TF::ImagOp>(),
          TypeID::get<TF::IsFiniteOp>(),
          TypeID::get<TF::IsInfOp>(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tpu_validate_inputs.cc

      static auto* ops = [] {
        llvm::SmallDenseSet<mlir::TypeID, 32>* ops_set =
            new llvm::SmallDenseSet<mlir::TypeID, 32>{
                TypeID::get<mlir::ModuleOp>(),
                TypeID::get<mlir::tf_executor::GraphOp>(),
                TypeID::get<mlir::func::ReturnOp>(),
                TypeID::get<mlir::func::FuncOp>(),
                TypeID::get<mlir::tf_executor::YieldOp>(),
                TypeID::get<mlir::tf_executor::IslandOp>(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 06:51:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/hardwares/target_hardware.cc

      std::string description;
      mlir::TypeID type_id;
      std::unique_ptr<TargetHardware> target_hardware;
      std::function<std::unique_ptr<TargetHardware>()> target_hardware_factory;
    };
    
    struct RegisteredTargetHardwareOps {
      explicit RegisteredTargetHardwareOps(mlir::TypeID hardware_type)
          : hardware_typeid(hardware_type) {}
      // Key is the Operation TypeID
      llvm::DenseMap<mlir::TypeID, std::unique_ptr<TargetHardwareOperation>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 09 21:39:59 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. src/encoding/gob/debug.go

    }
    
    // int returns the signed int at the input point, as an int (not int64).
    func (deb *debugger) int() int {
    	return int(deb.int64())
    }
    
    // typeId returns the type id at the input point.
    func (deb *debugger) typeId() typeId {
    	return typeId(deb.int64())
    }
    
    // string returns the string at the input point.
    func (deb *debugger) string() string {
    	x := int(deb.uint64())
    	b := make([]byte, x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 20 09:34:41 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  5. src/encoding/gob/type.go

    	}
    	return ut
    }
    
    // A typeId represents a gob Type as an integer that can be passed on the wire.
    // Internally, typeIds are used as keys to a map to recover the underlying type info.
    type typeId int32
    
    var typeLock sync.Mutex // set while building a type
    const firstUserId = 64  // lowest id number granted to user
    
    type gobType interface {
    	id() typeId
    	setId(id typeId)
    	name() string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.cc

    // These are invoked at construction time.
    static DenseMap<TypeID, TensorFlowDialect::AdditionalOpFunction>
        &GetAdditionalOperationHooks() {
      static auto *additional_operation_hooks =
          new DenseMap<TypeID, TensorFlowDialect::AdditionalOpFunction>();
      return *additional_operation_hooks;
    }
    
    void TensorFlowDialect::RegisterAdditionalOperationHook(
        TypeID id, AdditionalOpFunction fn) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. src/encoding/gob/decode.go

    	}
    	return &op
    }
    
    var maxIgnoreNestingDepth = 10000
    
    // decIgnoreOpFor returns the decoding op for a field that has no destination.
    func (dec *Decoder) decIgnoreOpFor(wireId typeId, inProgress map[typeId]*decOp, depth int) *decOp {
    	if depth > maxIgnoreNestingDepth {
    		error_(errors.New("invalid nesting depth"))
    	}
    	// If this type is already in progress, it's a recursive type (e.g. map[string]*T).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:10:23 UTC 2023
    - 40.1K bytes
    - Viewed (0)
  8. src/encoding/gob/doc.go

    connection between an [Encoder] and [Decoder], it is assigned a signed integer type
    id. When [Encoder.Encode](v) is called, it makes sure there is an id assigned for
    the type of v and all its elements and then it sends the pair (typeid, encoded-v)
    where typeid is the type id of the encoded type of v and encoded-v is the gob
    encoding of the value v.
    
    To define a type, the encoder chooses an unused, positive type id and sends the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  9. tensorflow/c/kernels_experimental.cc

            "The output variant hasn't been initialized");
      }
    
      if (a.TypeId() != b.TypeId()) {
        return ::tensorflow::errors::Internal(
            "BinaryOpVariants: Variants a and b have different "
            "type ids.  Type names: '",
            a.TypeName(), "' vs. '", b.TypeName(), "'");
      }
    
      if (a.TypeId() == tensorflow::TypeIndex::Make<::tensorflow::TensorList>()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:12:29 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/README.md

        patterns.add<LowerPackIntoConcatReshape, UnrollSplit, UnrollSplitV,
                      PadSlice>(context);
        return patterns;
      }
    
      mlir::TypeID GetTypeId() const override {
        return mlir::TypeID::get<FooHardware>();
      }
    
      // We can specify what ops are not supported here.
      bool IsNotSupportedOp(mlir::Operation* op) const override { return false; }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 11.6K bytes
    - Viewed (0)
Back to top