Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,329 for layers (0.12 sec)

  1. pkg/wasm/imagefetcher.go

    func extractDockerImage(img v1.Image) ([]byte, error) {
    	layers, err := img.Layers()
    	if err != nil {
    		return nil, fmt.Errorf("could not fetch layers: %v", err)
    	}
    
    	// The image must have at least one layer.
    	if len(layers) == 0 {
    		return nil, errors.New("number of layers must be greater than zero")
    	}
    
    	layer := layers[len(layers)-1]
    	mt, err := layer.MediaType()
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Dec 10 05:44:51 UTC 2023
    - 12K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/api/types.go

    	// If the container filesystem and image filesystem are not separate,
    	// than imagefs can store both image layers and writeable layers.
    	SignalImageFsAvailable Signal = "imagefs.available"
    	// SignalImageFsInodesFree is amount of inodes available on filesystem that container runtime uses for storing images layers.
    	// If the container filesystem and image filesystem are not separate,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composite_functions_xla.mlir

    // CHECK: -------- Quantization Summary --------
    // CHECK: Number of quantized layers in the model
    // CHECK: --------------------------------
    // CHECK: Name    Count/Total
    // CHECK: ================================
    // CHECK: Conv2D  1/1
    
    // CHECK: Number of quantized layers with quantized outputs: 0/1
    // CHECK: Number of quantize layers added: 1
    // CHECK: Number of dequantize layers added: 0
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 01:16:10 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. tensorflow/compat_template_v1.__init__.py

    # Some tf endpoints actually lives under Keras.
    _current_module.layers = _KerasLazyLoader(
        globals(),
        submodule="__internal__.legacy.layers",
        name="layers",
        mode="v1")
    if _tf_uses_legacy_keras:
      _module_dir = _module_util.get_parent_dir_for_name(
          "tf_keras.api._v1.keras.__internal__.legacy.layers")
    else:
      _module_dir = _module_util.get_parent_dir_for_name(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composite_functions.mlir

    // CHECK: -------- Quantization Summary --------
    // CHECK: Number of quantized layers in the model
    // CHECK: --------------------------------
    // CHECK: Name    Count/Total
    // CHECK: ================================
    // CHECK: Conv2D  1/2
    
    // CHECK: Number of quantized layers with quantized outputs: 1/1
    // CHECK: Number of quantize layers added: 1
    // CHECK: Number of dequantize layers added: 1
    }
    
    // -----
    
    module {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  6. tensorflow/api_template_v1.__init__.py

    # Some tf endpoints actually lives under Keras.
    _current_module.layers = _KerasLazyLoader(
        globals(),
        submodule="__internal__.legacy.layers",
        name="layers",
        mode="v1")
    if _tf_uses_legacy_keras:
      _module_dir = _module_util.get_parent_dir_for_name(
          "tf_keras.api._v1.keras.__internal__.legacy.layers")
    else:
      _module_dir = _module_util.get_parent_dir_for_name(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

        // from DEBUGGER_TYPE_FLOAT_PER_LAYER). Each layer in the debugging model
        // has a DumpTensor, and it is used to save the entire value of outputs from
        // both the quantized and unquantized layer.
        DEBUGGER_TYPE_INT_PER_LAYER = 2;
        // DEBUGGER_TYPE_FLOAT_PER_LAYER creates a debugging model with both
        // quantized and unquantized layers. The unquantized layer's input come from
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/add_quantization_unit_loc.cc

    namespace mlir {
    namespace quant {
    namespace {
    
    using QuantizationUnit =
        tensorflow::quantization::UnitWiseQuantizationSpec::QuantizationUnit;
    
    // Adds QuantizationUnitLoc to quantizable layers.
    class AddQuantizationUnitLocPass
        : public PassWrapper<AddQuantizationUnitLocPass,
                             OperationPass<func::FuncOp>> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. tools/packaging/common/gcp_envoy_bootstrap.json

    {
      "node": {
        {{ if (index .metadata.Labels "td.networking.gke.io/mesh-name") }}
          "id": "projects/{{ .gcp_project_number }}/networks/mesh:{{ (index .metadata.Labels "td.networking.gke.io/mesh-name") }}/nodes/{{ .nodeID}}",
        {{ else if (index .metadata.Labels "td.networking.gke.io/gateway-name") }}
          "id": "projects/{{ .gcp_project_number }}/networks/scope:{{ (index .metadata.Labels "td.networking.gke.io/gateway-name") }}/nodes/{{ .nodeID}}",
        {{ else }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/types.go

    	// fsStatsLogs identifies stats for pod logs.
    	fsStatsLogs fsStatsType = "logs"
    	// fsStatsRoot identifies stats for pod container writable layers.
    	fsStatsRoot fsStatsType = "root"
    	// fsStatsContainer identifies stats for pod container read-only layers
    	fsStatsImages fsStatsType = "images"
    )
    
    // Config holds information about how eviction is configured.
    type Config struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 7.1K bytes
    - Viewed (0)
Back to top