Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Slice3 (0.14 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

      // CHECK-DAG: [[SLICE1:%.+]] = "mhlo.slice"(%arg2) <{limit_indices = dense<1> : tensor<1xi64>, start_indices = dense<0> : tensor<1xi64>, strides = dense<1> : tensor<1xi64>}>
      // CHECK-DAG: [[SLICE2:%.+]] = "mhlo.slice"(%arg2) <{limit_indices = dense<2> : tensor<1xi64>, start_indices = dense<1> : tensor<1xi64>, strides = dense<1> : tensor<1xi64>}>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  2. doc/go_spec.html

    Except for <a href="#Constants">untyped strings</a>, if the sliced operand is a string or slice,
    the result of the slice operation is a non-constant value of the same type as the operand.
    For untyped string operands the result is a non-constant value of type <code>string</code>.
    If the sliced operand is an array, it must be <a href="#Address_operators">addressable</a>
    and the result of the slice operation is a slice with the same element type as the array.
    </p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	// *(ptr+(len-1)) = e3
    
    	et := n.Type().Elem()
    	pt := types.NewPtr(et)
    
    	// Evaluate slice
    	sn := n.Args[0] // the slice node is the first in the list
    	var slice, addr *ssa.Value
    	if inplace {
    		addr = s.addr(sn)
    		slice = s.load(n.Type(), addr)
    	} else {
    		slice = s.expr(sn)
    	}
    
    	// Allocate new blocks
    	grow := s.f.NewBlock(ssa.BlockPlain)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  4. pkg/registry/core/service/storage/storage_test.go

    	options := []cmp.Option{
    		// These are system-assigned values, we don't need to compare them.
    		cmpopts.IgnoreFields(api.Service{}, "UID", "ResourceVersion", "CreationTimestamp"),
    		// Treat nil slices and empty slices as the same (e.g. clusterIPs).
    		cmpopts.EquateEmpty(),
    	}
    
    	// For allocated fields, we want to be able to compare cleanly whether the
    	// input specified values or not.
    	want := tc.svc.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
Back to top