Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,634 for fromP2 (0.15 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf_patterns.td

    // Check that two values can be broadcasted together
    def AreBroadcastCompatible : Constraint<CPred<"AreBroadcastCompatible($0, $1)">,
        "types must be broadcastable">;
    
    class DirectBinaryPat<Op FromOp, Op ToOp>
      : Pat<(FromOp AnyTensor:$l, AnyTensor:$r),
            (ToOp $l, $r, (BinBroadcastDimensions $l, $r))>;
    
    foreach fromToBinPair = [[TF_AddV2Op, CHLO_BroadcastAddOp],
                             [TF_Atan2Op, CHLO_BroadcastAtan2Op],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/StreamingResolutionResultBuilder.java

                                    }
                                    builder.visitOutgoingEdges(fromId, deps);
                                }
                                break;
                            default:
                                throw new IOException("Unknown value type read from stream: " + type);
                        }
                    }
                } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. operator/pkg/compare/compare.go

    	for name, obj := range iom {
    		isRenamed := false
    		for fromPat, toPat := range rnm {
    			fromRe, err := buildResourceRegexp(strings.TrimSpace(fromPat))
    			if err != nil {
    				return nil, fmt.Errorf("error building the regexp from "+
    					"rename-from string: %v, error: %v", fromPat, err)
    			}
    			if fromRe.MatchString(name) {
    				fromList := strings.Split(name, ":")
    				if len(fromList) != 3 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 01:29:35 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/internal/profile/graph.go

    }
    
    func (el edgeList) Less(i, j int) bool {
    	if el[i].Weight != el[j].Weight {
    		return abs64(el[i].Weight) > abs64(el[j].Weight)
    	}
    
    	from1 := el[i].Src.Info.PrintableName()
    	from2 := el[j].Src.Info.PrintableName()
    	if from1 != from2 {
    		return from1 < from2
    	}
    
    	to1 := el[i].Dest.Info.PrintableName()
    	to2 := el[j].Dest.Info.PrintableName()
    
    	return to1 < to2
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/transform/DefaultVariantTransformRegistryTest.groovy

            e.cause.message == "At least one 'to' attribute must be provided."
        }
    
        def "fails when to attributes are not a subset of from attributes for registerTransform"() {
            when:
            registry.registerTransform(TestTransform) {
                it.from.attribute(TEST_ATTRIBUTE, "from")
                it.from.attribute(Attribute.of("from2", String), "from")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 11:18:50 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    }
    
    func (el edgeList) Less(i, j int) bool {
    	if el[i].Weight != el[j].Weight {
    		return abs64(el[i].Weight) > abs64(el[j].Weight)
    	}
    
    	from1 := el[i].Src.Info.PrintableName()
    	from2 := el[j].Src.Info.PrintableName()
    	if from1 != from2 {
    		return from1 < from2
    	}
    
    	to1 := el[i].Dest.Info.PrintableName()
    	to2 := el[j].Dest.Info.PrintableName()
    
    	return to1 < to2
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_freebsd.go

    //sys	read(fd int, p []byte) (n int, err error)
    //sys	Readlink(path string, buf []byte) (n int, err error)
    //sys	Readlinkat(dirfd int, path string, buf []byte) (n int, err error)
    //sys	Rename(from string, to string) (err error)
    //sys	Renameat(fromfd int, from string, tofd int, to string) (err error)
    //sys	Revoke(path string) (err error)
    //sys	Rmdir(path string) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. src/net/net_fake.go

    	n, _, err = ffd.queue.recvfrom(ffd.readDeadline.Load(), p, true, func(from sockaddr) error {
    		fromSA, err := from.sockaddr(syscall.AF_INET)
    		if err != nil {
    			return err
    		}
    		if fromSA == nil {
    			return os.NewSyscallError("readFromInet4", syscall.EINVAL)
    		}
    		*sa = *(fromSA.(*syscall.SockaddrInet4))
    		return nil
    	})
    	return n, err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 19:24:21 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

    // DivNoNan and MulNonNan op patterns.
    //===----------------------------------------------------------------------===//
    
    class BinaryNoNanPat<Op FromOp, Op ToOp>
      : Pat<(FromOp $l, $r),
            (TF_SelectV2Op (TF_EqualOp $r,
                                       (TF_ConstOp:$zero (GetScalarOfType<0> $r)),
                           /*incompatible_shape_error*/ConstBoolAttrTrue),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/link.go

    func (p *Prog) From3Type() AddrType {
    	from3 := p.GetFrom3()
    	if from3 == nil {
    		return TYPE_NONE
    	}
    	return from3.Type
    }
    
    // GetFrom3 returns second source operand (the first is Prog.From).
    // The same kinds of operands are saved in order so GetFrom3 actually
    // return the first source operand in p.RestArgs.
    // In combination with Prog.From and Prog.To it makes common 3 operand
    // case easier to use.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 33.1K bytes
    - Viewed (0)
Back to top