Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 260 for weights (0.14 sec)

  1. platforms/documentation/docs/src/docs/css/base.css

    .docs-navigation > ul ul ul {
        display: none;
        height: 0;
        margin-left: 1rem;
    }
    
    .docs-navigation > ul ul:target,
    .docs-navigation > ul ul:target ul,
    .docs-navigation > ul .nav-dropdown.expanded ~ ul {
        display: block;
        height: auto;
    }
    
    .docs-navigation h3 {
        font-size: .95rem;
        font-weight: 600;
        line-height: 1.5;
        margin: 1.5em 0 0;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/tests/pipelines/process_nchw_tensor.mlir

    // RUN:   -split-input-file -verify-diagnostics | FileCheck %s
    
    // Tests that a `convolution(%activation, %weight)` with the activation tensor
    // NCHW format is converted to NHWC convolution. Transpose ops are inserted to
    // the activation and output to match the function signature. The weight
    // constant is transposed.
    
    // CHECK-LABEL: nchw_conv
    // CHECK-SAME: %[[ARG:.+]]: tensor<1x8x4x4xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 20:32:46 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_xla.mlir

      %7 = "quantfork.dcast"(%6) : (tensor<*x!quant.uniform<i8:f32, 5.000000e-02:-10>>) -> tensor<*xf32>
      %weight = arith.constant dense<1.0> : tensor<144x12xf32>
      %q_weight = "quantfork.qcast"(%weight) : (tensor<144x12xf32>) -> tensor<144x12x!quant.uniform<i8:f32, 0.074855112561992565:-1>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 19:32:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/validation/validation_test.go

    		PrioritizeVerb: "prioritize",
    		BindVerb:       "bar",
    		Weight:         1,
    	})
    
    	validPlugins := validConfig.DeepCopy()
    	validPlugins.Profiles[0].Plugins.Score.Enabled = append(validPlugins.Profiles[0].Plugins.Score.Enabled, config.Plugin{Name: "PodTopologySpread", Weight: 2})
    
    	invalidPlugins := validConfig.DeepCopy()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/cc/constant_fold_test.cc

            %scale = "tf.Const"() {value = dense<2.0> : tensor<f32>} : () -> tensor<f32>
            %weight = "tf.Const"() {value = dense<1> : tensor<1024x24x24x3xi8>} : () -> tensor<1024x24x24x3xi8>
            %input_i32 = "tf.Cast"(%weight) : (tensor<1024x24x24x3xi8>) -> tensor<1024x24x24x3xi32>
            %output = "tf.Sub"(%input_i32, %zp) : (tensor<1024x24x24x3xi32>, tensor<i32>) -> tensor<1024x24x24x3xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. pkg/scheduler/extender_test.go

    					Prioritizers: []tf.PriorityConfig{{Function: tf.Node1PrioritizerExtender, Weight: 10}},
    					Weight:       1,
    				},
    				{
    					ExtenderName: "FakeExtender2",
    					Predicates:   []tf.FitPredicate{tf.TruePredicateExtender},
    					Prioritizers: []tf.PriorityConfig{{Function: tf.Node2PrioritizerExtender, Weight: 10}},
    					Weight:       5,
    				},
    			},
    			nodes: []string{"node1", "node2"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library.mlir

        %1 = "tf.Sub"(%0, %input_zp) : (tensor<*xi32>, tensor<*xi32>) -> tensor<*xi32>
    
        // Use identity op to avoid the weight being constant-folded.
        %identity = "tf.Identity"(%weight) : (tensor<*xi8>) -> tensor<*xi8>
        %2 = "tf.Cast"(%identity) {Truncate = false} : (tensor<*xi8>) -> tensor<*xi32>
        %3 = "tf.Sub"(%2, %weight_zp) : (tensor<*xi32>, tensor<*xi32>) -> tensor<*xi32>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 01:16:10 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  8. cmd/kube-scheduler/app/options/options_test.go

    								},
    							},
    							{
    								Name: "NodeResourcesFit",
    								Args: &kubeschedulerconfig.NodeResourcesFitArgs{
    									ScoringStrategy: &kubeschedulerconfig.ScoringStrategy{
    										Type:      kubeschedulerconfig.LeastAllocated,
    										Resources: []kubeschedulerconfig.ResourceSpec{{Name: "cpu", Weight: 1}, {Name: "memory", Weight: 1}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 13 07:42:19 UTC 2023
    - 30.3K bytes
    - Viewed (0)
  9. pkg/config/validation/virtualservice_test.go

    				Weight:      55,
    			}, {
    				Destination: &networking.Destination{Host: "foo.baz.east"},
    				Weight:      50,
    			}},
    		}, valid: true},
    		{name: "total weight < 100", route: &networking.HTTPRoute{
    			Route: []*networking.HTTPRouteDestination{{
    				Destination: &networking.Destination{Host: "foo.baz.south"},
    				Weight:      49,
    			}, {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 15:33:55 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/noderesources/balanced_allocation_test.go

    				{Spec: cpuAndMemoryAndGPU},
    			},
    			args: config.NodeResourcesBalancedAllocationArgs{Resources: []config.ResourceSpec{
    				{Name: string(v1.ResourceCPU), Weight: 1},
    				{Name: string(v1.ResourceMemory), Weight: 1},
    				{Name: "nvidia.com/gpu", Weight: 1},
    			}},
    			runPreScore: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 15.9K bytes
    - Viewed (0)
Back to top