Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Tperm (0.41 sec)

  1. pkg/controller/statefulset/stateful_set_utils_test.go

    	pods := make([]*v1.Pod, 10)
    	perm := rand.Perm(10)
    	for i, v := range perm {
    		pods[i] = newStatefulSetPod(set, v)
    	}
    	sort.Sort(ascendingOrdinal(pods))
    	if !sort.IsSorted(ascendingOrdinal(pods)) {
    		t.Error("ascendingOrdinal fails to sort Pods")
    	}
    }
    
    func TestOverlappingStatefulSets(t *testing.T) {
    	sets := make([]*apps.StatefulSet, 10)
    	perm := rand.Perm(10)
    	for i, v := range perm {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/prepare-quantize.mlir

      %dq = "tfl.dequantize"(%q) : (tensor<5x2x!quant.uniform<i8<-127:127>:f32, 1.113490e-03>>) -> tensor<5x2xf32>
      %t = "tfl.transpose"(%dq, %perm) : (tensor<5x2xf32>, tensor<2xi32>) -> tensor<2x5xf32>
      func.return %t : tensor<2x5xf32>
    
      // QDQ: %[[perm:.*]] = arith.constant dense<[1, 0]> : tensor<2xi32>
      // QDQ-NEXT: %[[w:.*]] = arith.constant dense<1.000000e+00> : tensor<5x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        // Create a constant op for HWIO to OHWI transpose permutation.
        SmallVector<int, 4> perm = {3, 0, 1, 2};
        auto perm_type = tensorflow::GetTypeFromTFTensorShape(
            {static_cast<int>(perm.size())}, rewriter.getIntegerType(32));
        auto perm_attr =
            DenseElementsAttr::get(perm_type, llvm::ArrayRef<int>(perm));
        auto perm_op = rewriter.create<TF::ConstOp>(loc, perm_type, perm_attr);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

      (TFL_AddOp:$add_op
        (TFL_TransposeOp:$transpose_op $input, $perm),
        (Arith_ConstantOp:$bias_op FloatElementsAttr:$bias),
        $act_fn),
      (TFL_TransposeOp
        (TFL_AddOp $input,
          (Arith_ConstantOp (ReshapeNCHWBiasToNHWC $bias_op, $bias)),
          $act_fn),
        $perm),
      [(IsPermutationNCHW $perm),
      (IsBiasShape $bias_op),
      (IsDefinedByConv2DOp $input),
      (HasOneUse $add_op),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  5. src/syscall/zerrors_solaris_amd64.go

    	ENOTTY          = Errno(0x19)
    	ENOTUNIQ        = Errno(0x50)
    	ENXIO           = Errno(0x6)
    	EOPNOTSUPP      = Errno(0x7a)
    	EOVERFLOW       = Errno(0x4f)
    	EOWNERDEAD      = Errno(0x3a)
    	EPERM           = Errno(0x1)
    	EPFNOSUPPORT    = Errno(0x7b)
    	EPIPE           = Errno(0x20)
    	EPROTO          = Errno(0x47)
    	EPROTONOSUPPORT = Errno(0x78)
    	EPROTOTYPE      = Errno(0x62)
    	ERANGE          = Errno(0x22)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    //sys	Utime(path string, utim *Utimbuf) (err error) = SYS___UTIME_A
    
    //sys	open(path string, mode int, perm uint32) (fd int, err error) = SYS___OPEN_A
    
    func Open(path string, mode int, perm uint32) (fd int, err error) {
    	if mode&O_ACCMODE == 0 {
    		mode |= O_RDONLY
    	}
    	return open(path, mode, perm)
    }
    
    //sys	openat(dirfd int, path string, flags int, mode uint32) (fd int, err error) = SYS___OPENAT_A
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/ppc64.s

    	VCMPNEH V1, V2, V3              // 10611047
    	VCMPNEHCC V1, V2, V3            // 10611447
    	VCMPNEW V1, V2, V3              // 10611087
    	VCMPNEWCC V1, V2, V3            // 10611487
    	VPERM V1, V2, V3, V4            // 108110eb
    	VPERMR V1, V2, V3, V4           // 108110fb
    	VPERMXOR V1, V2, V3, V4         // 108110ed
    	VBPERMQ V1, V2, V3              // 1061154c
    	VBPERMD V1, V2, V3              // 106115cc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 21:53:50 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    func open(path string, mode int, perm uint32) (fd int, err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS___OPEN_A<<4, uintptr(unsafe.Pointer(_p0)), uintptr(mode), uintptr(perm))
    	runtime.ExitSyscall()
    	fd = int(r0)
    	if int64(r0) == -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  9. src/cmd/go/go_test.go

    	tg.creatingTemp(exe)
    	tg.run("build", "-o", exe, "p")
    }
    
    func copyFile(src, dst string, perm fs.FileMode) error {
    	sf, err := os.Open(src)
    	if err != nil {
    		return err
    	}
    	defer sf.Close()
    
    	df, err := os.OpenFile(dst, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, perm)
    	if err != nil {
    		return err
    	}
    
    	_, err = io.Copy(df, sf)
    	err2 := df.Close()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  10. pkg/kubelet/status/status_manager_test.go

    	verifyUpdates(t, m, 0)
    }
    
    // shuffle returns a new shuffled list of container statuses.
    func shuffle(statuses []v1.ContainerStatus) []v1.ContainerStatus {
    	numStatuses := len(statuses)
    	randIndexes := rand.Perm(numStatuses)
    	shuffled := make([]v1.ContainerStatus, numStatuses)
    	for i := 0; i < numStatuses; i++ {
    		shuffled[i] = statuses[randIndexes[i]]
    	}
    	return shuffled
    }
    
    func TestStatusEquality(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
Back to top