Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for hiter (0.18 sec)

  1. src/reflect/value.go

    // entry. It returns false when iter is exhausted; subsequent
    // calls to [MapIter.Key], [MapIter.Value], or [MapIter.Next] will panic.
    func (iter *MapIter) Next() bool {
    	if !iter.m.IsValid() {
    		panic("MapIter.Next called on an iterator that does not have an associated map Value")
    	}
    	if !iter.hiter.initialized() {
    		mapiterinit(iter.m.typ(), iter.m.pointer(), &iter.hiter)
    	} else {
    		if mapiterkey(&iter.hiter) == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

      }
    
      *modified = false;
      auto node_name_index = g->BuildNodeNameIndex();
      for (auto& iter : clusters) {
        string xla_cluster_name = iter.first;
        Node* n = iter.second.node;
        auto const& func_name_attrs = iter.second.func_name_attrs;
        auto const& host_compute_core = iter.second.host_compute_core;
    
        std::vector<string> shape_inference_graphs;
        bool has_outside_compilation;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    	e := New(v.Type().Elem()).Elem()
    
    	iter := v.MapRange()
    	for iter.Next() {
    		k.SetIterKey(iter)
    		e.SetIterValue(iter)
    		want := m[k.String()]
    		got := e.Interface()
    		if got != want {
    			t.Errorf("%q: want (%T) %v, got (%T) %v", k.String(), want, want, got, got)
    		}
    		if setkey, key := valueToString(k), valueToString(iter.Key()); setkey != key {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. tensorflow/c/c_api.cc

      if (!status->status.ok()) return -1;
      auto iter = name_ranges.find(arg_name);
      if (iter == name_ranges.end()) {
        status->status = InvalidArgument("Output arg '", arg_name, "' not found");
        return -1;
      }
      return iter->second.second - iter->second.first;
    }
    
    int TF_OperationNumInputs(TF_Operation* oper) {
      return oper->node.num_inputs();
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      for (const auto& elt_a : a) {
        const auto iter = b.find(elt_a.first);
        if (iter == b.end()) {
          if (diff) {
            *diff = absl::StrCat(map_name, " expected: contains element with key '",
                                 key_to_string(elt_a.first),
                                 "' got: map has no such element");
          }
          return false;
        }
        if (!compare(elt_a.first, elt_a.second, iter->second)) {
          if (diff) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // Bind asset inputs to asset ops.
      DCHECK_EQ(init_func_op.getNumArguments(), assets.size());
      for (const auto& iter : llvm::enumerate(assets)) {
        auto asset_op = iter.value().op;
        init_func_op.setArgAttr(
            iter.index(), "tf_saved_model.bound_input",
            mlir::SymbolRefAttr::get(builder.getContext(), asset_op.getName()));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  7. go.sum

    github.com/lestrrat-go/httpcc v1.0.1 h1:ydWCStUeJLkpYyjLDHihupbn2tYmZ7m22BGkcvZZrIE=
    github.com/lestrrat-go/httpcc v1.0.1/go.mod h1:qiltp3Mt56+55GPVCbTdM9MlqhvzyuL6W/NMDA8vA5E=
    github.com/lestrrat-go/iter v1.0.2 h1:gMXo1q4c2pHmC3dn8LzRhJfP1ceCbgSiT9lUydIzltI=
    github.com/lestrrat-go/iter v1.0.2/go.mod h1:Momfcq3AnRlRjI5b5O8/G5/BvpzrhoFTZcn06fEOPt4=
    github.com/lestrrat-go/jwx v1.2.29 h1:QT0utmUJ4/12rmsVQrJ3u55bycPkKqGYuGT4tyRhxSQ=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
Back to top