Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for mirror_pad (0.53 sec)

  1. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        func.return %0 : tensor<4x2x3x1x1xi32>
      }
    
      // CHECK-LABEL: mirror_pad
      func.func @mirror_pad(%arg0: tensor<2x3xcomplex<f64>>) -> tensor<4x7xcomplex<f64>> {
        %0 = mhlo.constant dense<[[1, 1], [2, 2]]> : tensor<2x2xi32>
        // CHECK-NOT: tf.MirrorPad
        %1 = "tf.MirrorPad"(%arg0, %0) {mode = "SYMMETRIC"} : (tensor<2x3xcomplex<f64>>, tensor<2x2xi32>) -> tensor<4x7xcomplex<f64>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      REDUCE_ANY = 91,
      SQUARE = 92,
      ZEROS_LIKE = 93,
      FILL = 94,
      FLOOR_MOD = 95,
      RANGE = 96,
      RESIZE_NEAREST_NEIGHBOR = 97,
      LEAKY_RELU = 98,
      SQUARED_DIFFERENCE = 99,
      MIRROR_PAD = 100,
      ABS = 101,
      SPLIT_V = 102,
      UNIQUE = 103,
      CEIL = 104,
      REVERSE_V2 = 105,
      ADD_N = 106,
      GATHER_ND = 107,
      COS = 108,
      WHERE = 109,
      RANK = 110,
      ELU = 111,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

    }
    
    func.func @mirror_pad(tensor<2x1x3xf32>, tensor<3x2xi32>) -> tensor<? x f32> {
    ^bb0(%arg0: tensor<2x1x3xf32>, %arg1: tensor<3x2xi32>):
      %0 = "tf.MirrorPad"(%arg0, %arg1) { mode = "SYMMETRIC" }: (tensor<2x1x3xf32>, tensor<3x2xi32>) -> tensor<? x f32>
      func.return %0#0 : tensor<? x f32>
    
      // CHECK-LABEL: mirror_pad
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/schema.fbs

      REDUCE_ANY = 91,
      SQUARE = 92,
      ZEROS_LIKE = 93,
      FILL = 94,
      FLOOR_MOD = 95,
      RANGE = 96,
      RESIZE_NEAREST_NEIGHBOR = 97,
      LEAKY_RELU = 98,
      SQUARED_DIFFERENCE = 99,
      MIRROR_PAD = 100,
      ABS = 101,
      SPLIT_V = 102,
      UNIQUE = 103,
      CEIL = 104,
      REVERSE_V2 = 105,
      ADD_N = 106,
      GATHER_ND = 107,
      COS = 108,
      WHERE = 109,
      RANK = 110,
      ELU = 111,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  5. pkg/kubelet/status/status_manager_test.go

    }
    
    func TestSyncBatchCleanupVersions(t *testing.T) {
    	m := newTestManager(&fake.Clientset{})
    	testPod := getTestPod()
    	mirrorPod := getTestPod()
    	mirrorPod.UID = "mirror-uid"
    	mirrorPod.Name = "mirror_pod"
    	mirrorPod.Annotations = map[string]string{
    		kubetypes.ConfigSourceAnnotationKey: "api",
    		kubetypes.ConfigMirrorAnnotationKey: "mirror",
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  6. pkg/kubelet/pod/pod_manager.go

    	}
    	return podToMirror, mirrorToPod
    }
    
    // IsMirrorPodOf returns true if pod and mirrorPod are associated with each other.
    func IsMirrorPodOf(mirrorPod, pod *v1.Pod) bool {
    	// Check name and namespace first.
    	if pod.Name != mirrorPod.Name || pod.Namespace != mirrorPod.Namespace {
    		return false
    	}
    	hash, ok := getHashFromMirrorPod(mirrorPod)
    	if !ok {
    		return false
    	}
    	return hash == getPodHash(pod)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:00 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet.go

    		kl.podManager.AddPod(pod)
    
    		pod, mirrorPod, wasMirror := kl.podManager.GetPodAndMirrorPod(pod)
    		if wasMirror {
    			if pod == nil {
    				klog.V(2).InfoS("Unable to find pod for mirror pod, skipping", "mirrorPod", klog.KObj(mirrorPod), "mirrorPodUID", mirrorPod.UID)
    				continue
    			}
    			kl.podWorkers.UpdatePod(UpdatePodOptions{
    				Pod:        pod,
    				MirrorPod:  mirrorPod,
    				UpdateType: kubetypes.SyncPodUpdate,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    // LINT.ThenChange(//tensorflow/compiler/mlir/lite/transforms/while_loop_outline.cc)
    
    def TFL_MirrorPadOp: TFL_Op<"mirror_pad", [
                         SameOperandsAndResultsScale,
                         QuantizableResult,
                         Pure,
                         TFL_OperandHasRank<1, 2>]> {
      let summary = "MirrorPad Operator. Pads a tensor with mirrored values.";
    
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. pkg/kubelet/pod_workers_test.go

    }
    
    type simpleFakeKubelet struct {
    	pod       *v1.Pod
    	mirrorPod *v1.Pod
    	podStatus *kubecontainer.PodStatus
    	wg        sync.WaitGroup
    }
    
    func (kl *simpleFakeKubelet) SyncPod(ctx context.Context, updateType kubetypes.SyncPodType, pod, mirrorPod *v1.Pod, podStatus *kubecontainer.PodStatus) (bool, error) {
    	kl.pod, kl.mirrorPod, kl.podStatus = pod, mirrorPod, podStatus
    	return false, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  10. pkg/kubelet/pod_workers.go

    		opts.Pod = other.Pod
    	}
    	// running pods will not persist but will be remembered for replay
    	opts.RunningPod = other.RunningPod
    	// if mirrorPod was not provided, remember the last one for replay
    	if other.MirrorPod != nil {
    		opts.MirrorPod = other.MirrorPod
    	}
    	// accumulate kill pod options
    	if other.KillPodOptions != nil {
    		opts.KillPodOptions = &KillPodOptions{}
    		if other.KillPodOptions.Evict {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
Back to top