Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 223 for weights (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/scheduler/testing/framework/fake_extender.go

    	for _, prioritizer := range f.Prioritizers {
    		weight := prioritizer.Weight
    		if weight == 0 {
    			continue
    		}
    		priorityFunc := prioritizer.Function
    		prioritizedList, err := priorityFunc(pod, nodes)
    		if err != nil {
    			return &extenderv1.HostPriorityList{}, 0, err
    		}
    		for _, hostEntry := range *prioritizedList {
    			combinedScores[hostEntry.Name] += hostEntry.Score * weight
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/transforms/device_transform_patterns.cc

    // TFL fully_connected basically does:
    // Weight * Input + bias.
    // Input layout is : [..., depth]
    // Weight layout is : [output, depth]
    // Bias is [output].
    //
    // While conv2d is:
    // Filter: [NHWC]
    // Input is also: [NHWC]
    // Bias is [N]
    //
    // So to perform the transform, we need to insert a few reshape ops:
    //
    //  Input   weight   bias
    //   \      /      /
    //       FC
    //       |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 25.4K bytes
    - Viewed (0)
Back to top