Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 45 for W1 (0.03 sec)

  1. tensorflow/compiler/mlir/lite/tests/quantize-dynamic-range.mlir

    // PerTensor: %[[w1:.*]] = "tfl.pseudo_qconst"() <{qtype = tensor<64x3x3x3x!quant.uniform<i8<-127:127>:f32, 1.000000e+00>>
    // PerTensor: %[[dq_w1:.*]] = "tfl.dequantize"(%[[w1]]) : (tensor<64x3x3x3x!quant.uniform<i8<-127:127>:f32, 1.000000e+00>>) -> tensor<64x3x3x3xf32>
    // PerTensor: %[[conv:.*]] = "tfl.conv_2d"(%arg0, %[[w1]], %[[b]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 23 21:09:00 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/CrawlingConfigHelperTest.java

                    list.add((WebConfig) crawlingConfigHelper.getCrawlingConfig("W2"));
                    list.add((WebConfig) crawlingConfigHelper.getCrawlingConfig("W3"));
                    return list;
                }
            }, WebConfigBhv.class.getCanonicalName());
            final List<WebConfig> configList = crawlingConfigHelper.getWebConfigListByIds(List.of("W1", "W2", "W3"));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/strip_tf_attributes.mlir

    // CHECK-LABEL: strips_attributes
    // CHECK-NOT: tf
    func.func @strips_attributes(%arg0: tensor<32x28x28x1xf32> {tf._user_specified_name = "x"},
                                 %arg1: tensor<3x3x1x5xf32> {tf._user_specified_name = "w1"},
                                 %arg2: tensor<5xf32> {tf._user_specified_name = "b1"},
                                 %arg3: tensor<3920x10xf32> {tf._user_specified_name = "w2"},
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 25 20:04:10 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. test/codegen/memcombine.go

    }
    
    func zero_uint32_2(w1, w2 []uint32) {
    	_, _ = w1[1], w2[1]
    	// arm64:"MOVD\tZR",-"MOVB",-"MOVH",-"MOVW"
    	// amd64:`MOVQ\s[$]0,\s\([A-Z]+\)`
    	// ppc64x:`MOVD\s`
    	w1[0], w1[1] = 0, 0
    	// arm64:"MOVD\tZR",-"MOVB",-"MOVH",-"MOVW"
    	// amd64:`MOVQ\s[$]0,\s\([A-Z]+\)`
    	// ppc64x:`MOVD\s`
    	w2[1], w2[0] = 0, 0
    }
    
    func zero_uint32_4(w1, w2 []uint32) {
    	_, _ = w1[3], w2[3]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 19:45:41 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  5. tests/integration/ambient/waypoint_test.go

    			}
    
    			istioctl.NewOrFail(t, t, istioctl.Config{}).InvokeOrFail(t, []string{
    				"waypoint",
    				"-n",
    				nsConfig.Name(),
    				"delete",
    				"w1",
    				"w2",
    			})
    			retry.UntilSuccessOrFail(t, func() error {
    				for _, name := range []string{"w1", "w2"} {
    					if err := checkWaypointIsReady(t, nsConfig.Name(), name); err != nil {
    						if !errors.Is(err, kubetest.ErrNoPodsFetched) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

        // screen X coordinate.  In other words, want to change it from x1 to x2
        // so that:
        //     (u.x - x1) / w1 = (u.x - x2) / w2
        // Simplifying that, we get
        //     (u.x - x1) * (w2 / w1) = u.x - x2
        //     x2 = u.x - (u.x - x1) * (w2 / w1)
        vb.baseVal.x = u.x - (u.x - vb.baseVal.x) * (w2 / w1);
        vb.baseVal.y = u.y - (u.y - vb.baseVal.y) * (h2 / h1);
      }
    
      function handleWheel(e) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. src/net/http/pattern_test.go

    		},
    		{"/path/to/something", pattern{segments: []segment{
    			lit("path"), lit("to"), lit("something"),
    		}}},
    		{
    			"/{w1}/lit/{w2}",
    			pattern{
    				segments: []segment{wild("w1"), lit("lit"), wild("w2")},
    			},
    		},
    		{
    			"/{w1}/lit/{w2}/",
    			pattern{
    				segments: []segment{wild("w1"), lit("lit"), wild("w2"), multi("")},
    			},
    		},
    		{
    			"example.com/",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. src/image/gif/writer_test.go

    	buf := new(bytes.Buffer)
    	w0 := offsetImage{m0, m0.Bounds()}
    	err = Encode(buf, w0, nil)
    	if err != nil {
    		t.Fatalf("Encode: %v", err)
    	}
    	w1, err := Decode(buf)
    	if err != nil {
    		t.Fatalf("Dencode: %v", err)
    	}
    	avgDelta := averageDelta(m0, w1)
    	if avgDelta > 0 {
    		t.Fatalf("Wrapped: average delta is too high. expected: 0, got %d", avgDelta)
    	}
    
    	// Case 2: Encode a wrapped image.Image with offset
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (MOVWstore [i] {s} p w3 x:(STM3 [i-12] {s} p w0 w1 w2 mem))
      && x.Uses == 1
      && is20Bit(int64(i)-12)
      && setPos(v, x.Pos)
      && clobber(x)
      => (STM4 [i-12] {s} p w0 w1 w2 w3 mem)
    (STM2 [i] {s} p w2 w3 x:(STM2 [i-8] {s} p w0 w1 mem))
      && x.Uses == 1
      && is20Bit(int64(i)-8)
      && setPos(v, x.Pos)
      && clobber(x)
      => (STM4 [i-8] {s} p w0 w1 w2 w3 mem)
    // 64-bit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  10. src/bufio/bufio_test.go

    	}
    
    	var w1 writeCountingDiscard
    	b1 := NewWriterSize(&w1, 1234)
    	b1.WriteString(strings.Repeat("x", 1200))
    	b1.Flush()
    	if w1 != 1 {
    		t.Fatalf("flush 1200 'x's: got %d writes, want 1", w1)
    	}
    	b1.WriteString(strings.Repeat("x", 89))
    	if w1 != 1 {
    		t.Fatalf("write 1200 + 89 'x's: got %d writes, want 1", w1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
Back to top