Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for firstDot (0.26 sec)

  1. src/cmd/go/internal/telemetrystats/version_unix.go

    	telemetry.Inc(fmt.Sprintf("go/platform/host/%s/version:%s-%s", runtime.GOOS, major, minor))
    }
    
    func majorMinor(v string) (string, string, bool) {
    	firstDot := strings.Index(v, ".")
    	if firstDot < 0 {
    		return "", "", false
    	}
    	major := v[:firstDot]
    	v = v[firstDot+len("."):]
    	endMinor := strings.IndexAny(v, ".-_")
    	if endMinor < 0 {
    		endMinor = len(v)
    	}
    	minor := v[:endMinor]
    	return major, minor, true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 15:44:55 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/compile/internal/ssa/numberlines.go

    			v = b.Values[i]
    			if !v.Pos.SameFileAndLine(firstPos) {
    				if f.pass.debug > 0 {
    					fmt.Printf("Mark stmt new line %s %s %s %s prev pos = %s\n", f.Name, b, v, flc(v.Pos), flc(firstPos))
    				}
    				firstPos = v.Pos
    				v.Pos = v.Pos.WithIsStmt()
    			} else {
    				v.Pos = v.Pos.WithDefaultStmt()
    			}
    		}
    		if b.Pos.IsStmt() != src.PosNotStmt && !b.Pos.SameFileAndLine(firstPos) {
    			if f.pass.debug > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 21:26:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/visual-studio/groovy/build.gradle

            solution { solution ->
                solutionFile.withContent { content ->
                    def sourceControlSection = """
        GlobalSection(SolutionNotes) = postSolution
            NumNotes = 2
            Name1 = FirstNote
            Issue1 = N
            Text1 = This is a shared note.
            Name2 = SecondNote
            Issue2 = N
            Text2 = The projects in this solution are ${projects*.name}.
        EndGlobalSection
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonFeedbackIntegrationSpec.groovy

            given:
            file("build.gradle") << """
            """
    
            when:
            executer.withArguments("-q").run()
    
            then:
            def log = firstLog(executer.daemonBaseDir)
            assertLogIsOnlyVisibleToOwner(log)
        }
    
        void assertLogIsOnlyVisibleToOwner(File logFile) {
            assert new TestFile(logFile).permissions == "rw-------"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

    // constraint on axis and depth.
    multiclass L2NormalizePatterns<Op FirstOp, Op SecondOp> {
      // This pattern constructs L2NormalizationOp from
      // Mul->Rsqrt->Sum->Square Or
      // Div->sqrt->Sum->Square
      def L2NormalizePattern1#FirstOp#SecondOp : Pat<
                      (FirstOp $x,
                         (SecondOp
                            (TFL_SumOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top