Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 20 for weights (0.16 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/tests/uniform-quantized-stablehlo-to-tfl.mlir

      return %1 : tensor<1x2x3x5xf32>
    }
    
    // CHECK: %[[WEIGHT:.+]] = "tfl.pseudo_qconst"() <{qtype = tensor<1x2x4x5x!quant.uniform<i8:f32, 1.000000e+00>>, value = dense<1> : tensor<1x2x4x5xi8>}>
    // CHECK: %[[DQ:.+]] = "tfl.dequantize"(%[[WEIGHT]]) : (tensor<1x2x4x5x!quant.uniform<i8:f32, 1.000000e+00>>) -> tensor<1x2x4x5xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 106.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

          ('to_xla_per_tensor', quant_opts_pb2.XLA, False),
          ('stablehlo_per_channel', quant_opts_pb2.STABLEHLO, True),
          # TODO: b/289761265 - [Converter Component][TF-Quantizer] Improve Weight-
          # only Quantization
          # Enable this back once new weight-only quantizer is supported for per-
          # channel quantization.
          # ('to_xla_per_channel', quant_opts_pb2.XLA, True),
      )
      @test_util.run_in_graph_and_eager_modes
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  3. pkg/scheduler/schedule_one_test.go

    				{
    					ExtenderName: "FakeExtender1",
    					Weight:       1,
    					Prioritizers: []tf.PriorityConfig{
    						{
    							Weight:   3,
    							Function: tf.Node1PrioritizerExtender,
    						},
    					},
    				},
    				{
    					ExtenderName: "FakeExtender2",
    					Weight:       1,
    					Prioritizers: []tf.PriorityConfig{
    						{
    							Weight:   2,
    							Function: tf.Node2PrioritizerExtender,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  4. tests/integration/pilot/common/routing.go

        - destination:
            host: {{ (index .dst 0).Config.Service }}
          headers:
            request:
              set:
                Host: dest-authority
          weight: 50
        - destination:
            host: {{ (index .dst 0).Config.Service }}
          weight: 50
        headers:
          request:
            set:
              :authority: route-authority`,
    		opts: echo.CallOptions{
    			Port: echo.Port{
    				Name: "http",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/ops.mlir

      // expected-error @+1 {{'tfl.unidirectional_sequence_lstm' op failed to verify that either projection weight must be specified or both projection weight and projection bias must not be specified}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_test.go

    			}
    
    			if tt.expectedLocalityWeightedConfig && c.CommonLbConfig.GetLocalityWeightedLbConfig() == nil {
    				t.Errorf("cluster expected to have weighed config, but is nil")
    			}
    			if tt.expectClusterLoadAssignmenttoBeNil && c.LoadAssignment != nil {
    				t.Errorf("cluster expected not to have load assignmentset, but is present")
    			}
    		})
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let constructor = "TFTPU::CreateTPUColocateSplitsPass()";
      let description = [{
        It is beneficial for performance to assign a `Split` op to the same device
        as its predecessor. This is because the weight of cut edges is always
        minimized when the `Split` is with its predecessor. This colocation
        constraint will be used by the placer graph optimization to assign a device
        to the op.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

                    // to the "real" names.
                    // 2. Longer names are more likely to be internal aliases.
                    //
                    // Example set of object names created by Keras for the weight
                    // matrix of a fully connected layer on a trivial FC mnist
                    // model:
                    // - `model.layer-1.kernel` (this is the "best" name)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. src/runtime/proc.go

    	//
    	// Otherwise if e.g. ReadMemStats is being called in a loop,
    	// it might stomp on other attempts to stop the world, such as
    	// for starting or ending GC. The operation this blocks is
    	// so heavy-weight that we should just try to be as fair as
    	// possible here.
    	//
    	// We don't want to just allow us to get preempted between now
    	// and releasing the semaphore because then we keep everyone
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    repeating the previous list.  The number of identifiers must be equal
    to the number of expressions in the previous list.
    Together with the <a href="#Iota"><code>iota</code> constant generator</a>
    this mechanism permits light-weight declaration of sequential values:
    </p>
    
    <pre>
    const (
    	Sunday = iota
    	Monday
    	Tuesday
    	Wednesday
    	Thursday
    	Friday
    	Partyday
    	numberOfDays  // this constant is not exported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top