Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 135 for 0111 (0.04 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/optimize_graph.mlir

      %conv = stablehlo.convolution(%quant_arg, %quant_cst) dim_numbers = [b, 0, 1, f]x[0, 1, i, o]->[b, 0, 1, f], window = {pad = [[0, 1], [1, 1]]} {batch_group_count = 1 : i64, feature_group_count = 1 : i64} : (tensor<1x3x4x3x!quant.uniform<i8:f32, 0.0039207626791561354:-128>>, tensor<2x3x3x2x!quant.uniform<i8<-127:127>:f32, 0.015>>) -> tensor<1x3x4x2x!quant.uniform<i32:f32, 5.8949912267181218E-5>>...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 08 22:40:14 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/helper/normalize_score_test.go

    			expectedScores: []int64{0, 99, 98, 97},
    		},
    		{
    			scores:         []int64{1, 1, 1, 1},
    			expectedScores: []int64{100, 100, 100, 100},
    		},
    		{
    			scores:         []int64{1000, 1, 1, 1},
    			expectedScores: []int64{100, 0, 0, 0},
    		},
    		{
    			reverse:        true,
    			scores:         []int64{0, 1, 1, 1},
    			expectedScores: []int64{100, 0, 0, 0},
    		},
    		{
    			scores:         []int64{0, 0, 0, 0},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 14 16:15:18 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize_composite_functions_weight_only.mlir

        %0 = stablehlo.convolution(%arg0, %arg1) dim_numbers = [b, 0, 1, f]x[0, 1, i, o]->[b, 0, 1, f], window = {pad = [[0, 1], [1, 1]]} {batch_group_count = 1 : i64, feature_group_count = 1 : i64} : (tensor<1x3x4x3xf32>, tensor<2x3x3x2xf32>) -> tensor<1x3x4x2xf32>
        return %0 : tensor<1x3x4x2xf32>
      }
    }
    
    // CHECK-LABEL: quantize_conv_per_tensor
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 05:56:10 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/tests/passes/quantize/quantize_weight_only.mlir

        %0 = stablehlo.convolution(%arg0, %arg1) dim_numbers = [b, 0, 1, f]x[0, 1, i, o]->[b, 0, 1, f], window = {pad = [[0, 1], [1, 1]]} {batch_group_count = 1 : i64, feature_group_count = 1 : i64} : (tensor<1x3x4x3xf32>, tensor<2x3x3x2xf32>) -> tensor<1x3x4x2xf32>
        return %0 : tensor<1x3x4x2xf32>
      }
    }
    
    // CHECK-LABEL: quantize_conv_fn
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/runtime/softfloat64_test.go

    func mul(x, y float64) float64 { return x * y }
    func div(x, y float64) float64 { return x / y }
    
    func TestFloat64(t *testing.T) {
    	base := []float64{
    		0,
    		math.Copysign(0, -1),
    		-1,
    		1,
    		math.NaN(),
    		math.Inf(+1),
    		math.Inf(-1),
    		0.1,
    		1.5,
    		1.9999999999999998,     // all 1s mantissa
    		1.3333333333333333,     // 1.010101010101...
    		1.1428571428571428,     // 1.001001001001...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Server-TLSv12-SNI-GetCertificate

    00000040  a6 d3 b1 c1 5d 86 51 aa  63 67 6b 6e cb 3b 5e 59  |....].Q.cgkn.;^Y|
    00000050  02 c2 57 fd 37 39 1b 73  9a 61 b0 78 de e8 cc f8  |..W.79.s.a.x....|
    00000060  b3 01 11 e5 e9 31 85 4d  fe 60 d4 12 70 71 64 45  |.....1.M.`..pqdE|
    00000070  e8 7d fb be 5b 82 c0 c4  e1 57 09 2c f2 d7 a3 79  |.}..[....W.,...y|
    00000080  1c 40 08 e1 e6 cd e2 3e  e7 55 da 14 03 03 00 01  |.@.....>.U......|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:13:30 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. src/sort/search_test.go

    var tests = []struct {
    	name string
    	n    int
    	f    func(int) bool
    	i    int
    }{
    	{"empty", 0, nil, 0},
    	{"1 1", 1, func(i int) bool { return i >= 1 }, 1},
    	{"1 true", 1, func(i int) bool { return true }, 0},
    	{"1 false", 1, func(i int) bool { return false }, 1},
    	{"1e9 991", 1e9, func(i int) bool { return i >= 991 }, 991},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 07 14:42:13 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/tests/optimize_layout.mlir

    // CHECK-SAME:          %[[PAD_VAL:.*]]: tensor<f32>) -> tensor<1x64x114x114xf32> {
    // CHECK:           %[[PAD:.*]] = stablehlo.pad %[[INPUT]], %[[PAD_VAL]],
    // CHECK:               low = [0, 1, 1, 0], high = [0, 1, 1, 0], interior = [0, 0, 0, 0]
    // CHECK:               : (tensor<1x112x112x64xf32>, tensor<f32>) -> tensor<1x114x114x64xf32>
    // CHECK:           %[[TPOS:.*]] = stablehlo.transpose %[[PAD]], dims = [0, 3, 1, 2]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 21:59:06 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonStartupMessageTest.groovy

            messages.each { assert message.contains(it) }
    
            where:
            numBusy | numIncompatible | numStopped | messages
            0       | 1               | 0          | ["1 incompatible"]
            1       | 0               | 0          | ["1 busy"]
            0       | 0               | 1          | ["1 stopped"]
            1       | 2               | 4          | ["1 busy", "2 incompatible", "4 stopped"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom

      <modelVersion>4.0.0</modelVersion>
      <groupId>org.codehaus.plexus</groupId>
      <artifactId>plexus</artifactId>
      <packaging>pom</packaging>
      <name>Plexus</name>
      <version>1.0.11</version>
      <ciManagement>
        <notifiers>
          <notifier>
            <type>mail</type>
            <configuration>
              <address>******@****.***</address>
            </configuration>
          </notifier>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 8.8K bytes
    - Viewed (0)
Back to top