Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for firstDot (0.22 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/optimize.cc

      auto first_dot = concat.getVal()[0].getDefiningOp<mhlo::DotGeneralOp>();
      if (!first_dot)
        return rewriter.notifyMatchFailure(concat, "Operand is not dot_general");
      if (!first_dot.getLhs().getType().hasStaticShape())
        return rewriter.notifyMatchFailure(
            first_dot, "All dot_general LHS must be statically shaped");
      if (!first_dot->hasOneUse())
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  2. pkg/kubelet/config/config.go

    	s.updateLock.Lock()
    	defer s.updateLock.Unlock()
    
    	seenBefore := s.sourcesSeen.Has(source)
    	adds, updates, deletes, removes, reconciles := s.merge(source, change)
    	firstSet := !seenBefore && s.sourcesSeen.Has(source)
    
    	// deliver update notifications
    	switch s.mode {
    	case PodConfigNotificationIncremental:
    		if len(removes.Pods) > 0 {
    			s.updates <- *removes
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter_test.cc

          XlaComputation& computation) {
        SourceMgrDiagnosticHandler sourceMgrHandler(source_manager_, &context_);
    
        mlir::Operation& first_op = GetFirstOpFromMain();
    
        Tf2XlaRewriterTestPeer test_peer(&first_op);
        return test_peer.ImportXlaComputationIntoModule(computation);
      }
    
     protected:
      MLIRContext context_;
      OwningOpRef<ModuleOp> module_;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

          }
        }
    
        // Assume all the replicas have the same structure.
        mlir::TF::TPUPartitionedOutputV2Op first_op = *(ops.begin());
        mlir::ArrayAttr dims = first_op.getPartitionDimsAttr();
        StringAttr sharding = first_op.get_XlaShardingAttr();
        Operation::result_type_range output_types = first_op.getResultTypes();
        result_op = builder.create<mlir::TF::TPUPartitionedOutputV2Op>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/expand_calls.go

    	}
    
    	// For 32-bit, need to deal with decomposition of 64-bit integers, which depends on endianness.
    	if f.Config.BigEndian {
    		x.firstOp = OpInt64Hi
    		x.secondOp = OpInt64Lo
    		x.firstType = x.typs.Int32
    		x.secondType = x.typs.UInt32
    	} else {
    		x.firstOp = OpInt64Lo
    		x.secondOp = OpInt64Hi
    		x.firstType = x.typs.UInt32
    		x.secondType = x.typs.Int32
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 28 05:13:40 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/CollectionUtils.java

            List<T> result = new ArrayList<T>();
            Iterator<? extends Collection<T>> iterator = availableValuesByDescriptor.iterator();
            if (iterator.hasNext()) {
                Collection<T> firstSet = iterator.next();
                result.addAll(firstSet);
                while (iterator.hasNext()) {
                    Collection<T> next = iterator.next();
                    result.retainAll(next);
                }
            }
            return result;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  7. src/image/draw/draw.go

    				i0 := dst0.PixOffset(r.Min.X, r.Min.Y)
    				i1 := i0 + r.Dx()
    				for i := i0; i < i1; i++ {
    					dst0.Pix[i] = colorIndex
    				}
    				firstRow := dst0.Pix[i0:i1]
    				for y := r.Min.Y + 1; y < r.Max.Y; y++ {
    					i0 += dst0.Stride
    					i1 += dst0.Stride
    					copy(dst0.Pix[i0:i1], firstRow)
    				}
    				return
    			} else if !processBackward(dst, r, src, sp) {
    				drawPaletted(dst0, r, src, sp, false)
    				return
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/util/CollectionUtils.java

            List<T> result = new ArrayList<T>();
            Iterator<? extends Collection<T>> iterator = availableValuesByDescriptor.iterator();
            if (iterator.hasNext()) {
                Collection<T> firstSet = iterator.next();
                result.addAll(firstSet);
                while (iterator.hasNext()) {
                    Collection<T> next = iterator.next();
                    result.retainAll(next);
                }
            }
            return result;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:19 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Lists.java

       * returned list. Unlike {@link Arrays#asList}, the returned list is unmodifiable.
       *
       * <p>This is useful when a varargs method needs to use a signature such as {@code (Foo firstFoo,
       * Foo... moreFoos)}, in order to avoid overload ambiguity or to enforce a minimum argument count.
       *
       * <p>The returned list is serializable and implements {@link RandomAccess}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/Lists.java

       * returned list. Unlike {@link Arrays#asList}, the returned list is unmodifiable.
       *
       * <p>This is useful when a varargs method needs to use a signature such as {@code (Foo firstFoo,
       * Foo... moreFoos)}, in order to avoid overload ambiguity or to enforce a minimum argument count.
       *
       * <p>The returned list is serializable and implements {@link RandomAccess}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 16:48:36 UTC 2024
    - 41.9K bytes
    - Viewed (0)
Back to top