Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 236 for respSize (0.13 sec)

  1. 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)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/tf-tfl-translate-serialize-stablehlo-resize-bilinear.mlir

    Zichuan Wei <******@****.***> 1677736843 -0800
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 06:04:37 UTC 2023
    - 455 bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/init_text_file_to_import.cc

        file->getBuffer().split(lines, "\n", -1, false);
        // The resize method is used since split operator puts tail value in the end
        // without splitting the leftovers.
        if (op.getVocabSize() != -1) lines.resize(op.getVocabSize());
    
        // Map each line to line number, starting from zero.
        SmallVector<int64_t, 8> line_nums;
        line_nums.resize(lines.size());
        std::iota(line_nums.begin(), line_nums.end(), 0);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 03 12:35:38 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/internal/fuzz/mem.go

    	// Create a temporary file.
    	f, err := os.CreateTemp("", "fuzz-*")
    	if err != nil {
    		return nil, err
    	}
    	defer func() {
    		if err != nil {
    			f.Close()
    			os.Remove(f.Name())
    		}
    	}()
    
    	// Resize it to the correct size.
    	totalSize := sharedMemSize(size)
    	if err := f.Truncate(int64(totalSize)); err != nil {
    		return nil, err
    	}
    
    	// Map the file into memory.
    	removeOnClose := true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:44:27 UTC 2022
    - 4.5K 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