Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 363 for RES (0.02 sec)

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

    def : Pat<(TF_FFTOp:$res $input),
              (MHLO_FftOp $input, MHLO_FftTypeValue<"FFT">, (GetInnerDimFromValue $res)),
              [(CheckInnerDimStatic $input)]>;
    
    def : Pat<(TF_IFFTOp:$res $input),
              (MHLO_FftOp $input, MHLO_FftTypeValue<"IFFT">, (GetInnerDimFromValue $res)),
              [(CheckInnerDimStatic $input)]>;
    
    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. src/regexp/exec_test.go

    func parseResult(t *testing.T, file string, lineno int, res string) []int {
    	// A single - indicates no match.
    	if res == "-" {
    		return nil
    	}
    	// Otherwise, a space-separated list of pairs.
    	n := 1
    	for j := 0; j < len(res); j++ {
    		if res[j] == ' ' {
    			n++
    		}
    	}
    	out := make([]int, 2*n)
    	i := 0
    	n = 0
    	for j := 0; j <= len(res); j++ {
    		if j == len(res) || res[j] == ' ' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    func removeEmptySections(bs []md.Block) []md.Block {
    	res := bs[:0]
    	delta := 0 // number of lines by which to adjust positions
    
    	// Remove preceding headings at same or higher level; they are empty.
    	rem := func(level int) {
    		for len(res) > 0 {
    			last := res[len(res)-1]
    			if lh, ok := last.(*md.Heading); ok && lh.Level >= level {
    				res = res[:len(res)-1]
    				// Adjust subsequent block positions by the size of this block
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. src/go/types/assignments.go

    func operandTypes(list []*operand) (res []Type) {
    	for _, x := range list {
    		res = append(res, x.typ)
    	}
    	return res
    }
    
    // varTypes returns the list of types for the given variables.
    func varTypes(list []*Var) (res []Type) {
    	for _, x := range list {
    		res = append(res, x.typ)
    	}
    	return res
    }
    
    // typesSummary returns a string of the form "(t1, t2, ...)" where the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    			tree := make(analysisflags.JSONTree)
    			for _, res := range results {
    				tree.Add(fset, cfg.ID, res.a.Name, res.diagnostics, res.err)
    			}
    			tree.Print()
    		} else {
    			// plain text
    			exit := 0
    			for _, res := range results {
    				if res.err != nil {
    					log.Println(res.err)
    					exit = 1
    				}
    			}
    			for _, res := range results {
    				for _, diag := range res.diagnostics {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. hack/lib/test.sh

        # shellcheck disable=SC2086
        # Disabling because to allow for expansion here
        res=$(kubectl get "${kube_flags[@]}" ${args} ${object} -o go-template="${request}")
        if [[ "${res}" =~ ^$expected$ ]]; then
            echo -n "${green}"
            echo "$(kube::test::get_caller 3): Successful get ${object} ${request}: ${res}"
            echo -n "${reset}"
            return 0
        fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 16:46:34 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  7. src/go/types/instantiate.go

    	// Prefer to re-use existing types from expanding context, if it exists, to reduce
    	// the memory pinned by the Named type.
    	updateContexts := func(res Type) Type {
    		for i := len(ctxts) - 1; i >= 0; i-- {
    			res = ctxts[i].update(hashes[i], orig, targs, res)
    		}
    		return res
    	}
    
    	// typ may already have been instantiated with identical type arguments. In
    	// that case, re-use the existing instance.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. internal/grid/manager.go

    func (m *Manager) HostName() string {
    	return m.local
    }
    
    // Targets returns the names of all remote targets.
    func (m *Manager) Targets() []string {
    	var res []string
    	for k := range m.targets {
    		res = append(res, k)
    	}
    	return res
    }
    
    // debugMsg should *only* be used by tests.
    //
    //lint:ignore U1000 This is used by tests.
    func (m *Manager) debugMsg(d debugMsg, args ...any) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:40:33 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

    // Size(x) = Prod(Shape(x), reduction_indices=0, keep_dims=false)
    def LowerSizeOp : Pat<
      (TF_SizeOp:$res $arg),
      (TF_ProdOp
        (CreateTFShapeOp
          $res,
          $arg,
          (IsI32 $res)
        ),
        /*reduction_indices=*/
        (TF_ConstOp
          (GetScalarOfType<0> $res)
        ),
        /*keep_dims=*/
        ConstBoolAttrFalse
      )>;
    
    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. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

        The ExecuteOp executes an operation on the specified device.
    
        Example:
          %res = tfrt_fallback_async.executeop key(0) cost(100) device("/CPU:0") "some.op"(%arg) : 1
    
        Note that the trailing number indicates the number of results.
    
        The func attrs and op attrs are placed in two separate regions.
    
        Example:
          %res = tfrt_fallback_async.executeop key(0) device("/CPU:0") "some.op"(%arg)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top