Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 263 for gather (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

                !backward_pass_ops.contains(user)) {
              core_tpu_ops.insert(user);
            }
          }
        }
      }
    
      // Gather all TPU ops marked for compilation in this while loop body that also
      // are not in one of the two other sets.
      for (Operation& op : loop_body_func.getOps()) {
        // Find all TPU ops that don't belong to the forward or backward pass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	reflector.UseWatchList = ptr.To(false)
    
    	cacher.watchCache = watchCache
    	cacher.reflector = reflector
    
    	go cacher.dispatchEvents()
    	go progressRequester.Run(stopCh)
    
    	cacher.stopWg.Add(1)
    	go func() {
    		defer cacher.stopWg.Done()
    		defer cacher.terminateAllWatchers()
    		wait.Until(
    			func() {
    				if !cacher.isStopped() {
    					cacher.startCaching(stopCh)
    				}
    			}, time.Second, stopCh,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      EXPECT_THAT(subgraph->tensors[2]->name, Eq("output"));
      EXPECT_THAT(subgraph->tensors[2]->quantization->scale, SizeIs(1));
      EXPECT_THAT(subgraph->tensors[2]->quantization->zero_point, SizeIs(1));
    
      // The gather indices are of type INT32 and should not be quantized
      EXPECT_THAT(subgraph->tensors[1]->type, Eq(TensorType_INT32));
      EXPECT_THAT(subgraph->tensors[1]->quantization->scale, IsEmpty());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    			}
    		}
    	}
    
    	return m
    }
    
    // clangos lists the operating systems where we prefer clang to gcc.
    var clangos = []string{
    	"darwin", "ios", // macOS 10.9 and later require clang
    	"freebsd", // FreeBSD 10 and later do not ship gcc
    	"openbsd", // OpenBSD ships with GCC 4.2, which is now quite old.
    }
    
    // compilerEnvLookup returns the compiler settings for goos/goarch in map m.
    // kind is "CC" or "CXX".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. cmd/xl-storage-format-v2.go

    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    // but WITHOUT ANY WARRANTY; without even the implied warranty of
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      std::unordered_map<string, string> clusters = GetClusters(*graph);
    
      EXPECT_EQ(clusters["test/z"], "");
    }
    
    // Note, this relies on other implementation details to test the
    // specific heuristic we care about here, so other changes might be at fault if
    // this CL breaks. What we care about is that if a ShapeConsumingOp can be
    // connected with a producer or consumer and cannot be clustered with both, it
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/mark_for_compilation_pass.cc

    void MarkForCompilationPassImpl::Cluster::Merge(Cluster* other) {
      // We keep our own cycles_graph_node_id_ to mirror what GraphCycles does.
    
      // Clearing out data structures in `other` is just a memory saving
      // optimization and not needed for correctness.
    
      cluster_size_ += other->cluster_size_;
      effective_cluster_size_ += other->effective_cluster_size_;
      has_functional_control_flow_ |= other->has_functional_control_flow_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    				//
    				// Either way, punt on the query rather than erroring out just yet.
    				return pathSet{}
    			}
    
    			return r.tryWildcard(ctx, q, m)
    		})
    	}
    
    	// Even if no modules matched, we shouldn't query for a new module to provide
    	// the pattern yet: some other query may yet induce a new requirement that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. src/runtime/asm_amd64.s

    //    after step 2).
    // 4. Save all machine registers (including flags and XMM registers)
    //    so they can be restored later by the debugger.
    // 5. Set the PC to debugCallV2 and resume execution.
    //
    // If the goroutine is in state _Grunnable, then it's not generally
    // safe to inject a call because it may return out via other runtime
    // operations. Instead, the debugger should unwind the stack to find
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.31.md

    ### Failing Test
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
Back to top