Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 133 for RESIZE (0.09 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/odml-to-stablehlo-smuggle-resize.mlir

    // RUN: odml_to_stablehlo %s -skip-resize -smuggle-disallowed-ops -o - | FileCheck %s
    // RUN: odml-to-stablehlo-opt %s --smuggle-disallowed-ops-pass | FileCheck %s --check-prefix=CHECK-OPT
    
    // CHECK-LABEL: @main
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 975 : i32}, tf_saved_model.semantics}  {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 18:33:43 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. pkg/volume/util/resize_util_test.go

    		expectedPVC *v1.PersistentVolumeClaim
    		testFunc    func(*v1.PersistentVolumeClaim, clientset.Interface, resource.Quantity) (*v1.PersistentVolumeClaim, error)
    	}{
    		{
    			name:        "mark fs resize, with no other conditions",
    			pvc:         basePVC.get(),
    			expectedPVC: basePVC.withStorageResourceStatus(v1.PersistentVolumeClaimNodeResizePending).get(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. pkg/kubeapiserver/options/plugins.go

    	"k8s.io/kubernetes/plugin/pkg/admission/security/podsecurity"
    	"k8s.io/kubernetes/plugin/pkg/admission/serviceaccount"
    	"k8s.io/kubernetes/plugin/pkg/admission/storage/persistentvolume/resize"
    	"k8s.io/kubernetes/plugin/pkg/admission/storage/storageclass/setdefault"
    	"k8s.io/kubernetes/plugin/pkg/admission/storage/storageobjectinuseprotection"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apiserver/pkg/admission"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 17:20:46 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/proxy/websocket.go

    			// would generally be hit if starting the process fails and nothing is started to
    			// ingest these resize events.
    			return
    		}
    	}
    }
    
    // createChannels returns the standard channel types for a shell connection (STDIN 0, STDOUT 1, STDERR 2)
    // along with the approximate duplex value. It also creates the error (3) and resize (4) channels.
    func createChannels(opts Options) []wsstream.ChannelType {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_lowering_patterns.td

            (returnType (GetNhwcReturnTypeFromNchw $old_val))),
          (Arith_ConstantOp
            ConstantAttr<RankedI32ElementsAttr<[4]>,"{0, 3, 1, 2}">))>;
    
    // pattern to lower a stablehlo.composite of `jax` and `pytorch` image resize fuctions
    // in `nearest` mode and with NHWC inputs to a tflite.resize_nearest_neighbor op.
    def LegalizeNhwcResizeNearestNeighbor2dComposite: Pat<
        (MHLO_CompositeOp:$old_val
        (variadic $input),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    				if len(vols) > 0 {
    					t.Errorf("No resize request for any volumes, but found resize required volumes in ASW: %v", vols)
    				}
    			},
    			volumeMode: v1.PersistentVolumeFilesystem,
    		},
    
    		{
    			// Make volume used as ReadOnly, so volume shouldn't be marked as fsResizeRequired
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  7. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    		// Volume not exist in ASW, we assume it hasn't been mounted yet. If it needs resize,
    		// it will be handled as offline resize(if it indeed hasn't been mounted yet),
    		// or online resize in subsequent loop(after we confirm it has been mounted).
    		return
    	}
    	// volumeSpec.ReadOnly is the value that determines if volume could be formatted when being mounted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/utils/tf_xla_mlir_translate.cc

      TF_RETURN_IF_ERROR(ParseArgumentKinds(arg_kinds_str, arg_kinds_vector));
    
      if (input_shapes_vector.empty())
        input_shapes_vector.resize(dtypes_vector.size());
    
      if (arg_kinds_vector.empty())
        arg_kinds_vector.resize(input_shapes_vector.size(),
                                XlaArgument::Kind::kParameter);
    
      if (input_shapes_vector.size() != dtypes_vector.size() ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/device_util.cc

      const int storage_size = storage_.size();
      if (word_index >= storage_size) {
        storage_.resize(word_index + 1, 0);
      }
    
      storage_[word_index] |= (1ull << bit_index);
    }
    
    void DeviceSet::UnionWith(const DeviceSet& other) {
      if (other.storage_.size() > storage_.size()) {
        storage_.resize(other.storage_.size(), 0);
      }
    
      for (int i = 0, end = other.storage_.size(); i < end; i++) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/stablehlo/transforms/tf_stablehlo_pass.cc

      }
    
     protected:
      Option<bool> skip_quantization_ops_{
          *this, "skip-quantization-ops",
          ::llvm::cl::desc("Skip quantization ops")};
    
      Option<bool> skip_resize_{
          *this, "skip-resize",
          ::llvm::cl::desc("Skip tf.ResizeBilinear and tf.ResizeNearestNeighbor")};
    
      Option<bool> skip_partitioned_calls_{
          *this, "skip-partitioned-calls",
          ::llvm::cl::desc(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top