Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for 16x16 (0.11 sec)

  1. pkg/ctrlz/assets/static/favicons/favicon-16x16.png

    favicon-16x16.png...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 291 bytes
    - Viewed (0)
  2. pkg/ctrlz/assets/templates/layouts/base.html

            <link rel="apple-touch-icon" href="/favicons/apple-touch-icon-180x180.png" sizes="180x180">
            <link rel="icon" type="image/png" href="/favicons/favicon-16x16.png" sizes="16x16">
            <link rel="icon" type="image/png" href="/favicons/favicon-32x32.png" sizes="32x32">
            <link rel="icon" type="image/png" href="/favicons/android-36x36.png" sizes="36x36">
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/python/graphdef_to_tfl_flatbuffer.cc

      pass_config.legalize_custom_tensor_list_ops =
          toco_flags.legalize_custom_tensor_list_ops();
      // Disable the unfolding of the 16x16 TF::BatchMatMulOp to avoid the
      // conversion to an unsupported 16x16 TFL::FullyConnectedOp.
      if (toco_flags.inference_type() == toco::IODataType::QUANTIZED_INT16) {
        pass_config.unfold_batch_matmul = false;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/python/jax_to_tfl_flatbuffer.cc

      pass_config.unfold_batch_matmul = toco_flags.unfold_batchmatmul();
      pass_config.lower_tensor_list_ops = toco_flags.lower_tensor_list_ops();
      // Disable the unfolding of the 16x16 TF::BatchMatMulOp to avoid the
      // conversion to an unsupported 16x16 TFL::FullyConnectedOp.
      if (toco_flags.inference_type() == toco::IODataType::QUANTIZED_INT16) {
        pass_config.unfold_batch_matmul = false;
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/optimize_no_verify.mlir

      %0 = "tfl.conv_2d"(%arg0, %arg1, %cst_0) {dilation_h_factor = 2 : i32, dilation_w_factor = 3 : i32, fused_activation_function = "NONE", padding = "SAME", stride_h = 4 : i32, stride_w = 5 : i32} : (tensor<256x32x32x3xf16>, tensor<16x3x3x3xf16>, tensor<16xf16>) -> tensor<256x8x7x16xf16>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/nn.mlir

      // CHECK-NEXT:     version: 1,
      // CHECK-NEXT:     builtin_code: AVERAGE_POOL_2D
      // CHECK-NEXT:   } ],
      // CHECK-NEXT:   subgraphs: [ {
      // CHECK-NEXT:     tensors: [ {
      // CHECK-NEXT:       shape: [ 1, 6, 6, 16 ],
      // CHECK-NEXT:       buffer: 1,
      // CHECK-NEXT:       name: "arg0",
      // CHECK-NEXT:       quantization: {
      // CHECK-EMPTY:
      // CHECK-NEXT:       },
      // CHECK-NEXT:       has_rank: true
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 14 16:41:28 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/sizes_test.go

    	for _, tv := range types {
    		if ts, ok := tv.Type.(*types2.Struct); ok {
    			return ts
    		}
    	}
    	t.Fatalf("failed to find a struct type in src:\n%s\n", src)
    	return nil
    }
    
    // go.dev/issue/16316
    func TestMultipleSizeUse(t *testing.T) {
    	const src = `
    package main
    
    type S struct {
        i int
        b bool
        s string
        n int
    }
    `
    	ts := findStructType(t, src)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 21:00:48 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/SupportedBuildJvmIntegrationTest.groovy

        // This is difficult to setup on Windows since you can't delete files
        // that are in use.
        @Requires(UnitTestPreconditions.NotWindows)
        @Issue("https://github.com/gradle/gradle/issues/16816")
        def "can successful start after a running daemon's JDK has been removed"() {
            def installedJdk = Jvm.current().javaHome
            def jdkToRemove = file("removed-jdk")
            jdkToRemove.mkdir()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testerrors/testdata/err2.go

    	// problem at build time.
    	{
    		type v [0]byte
    
    		f := func(p **v) {
    			C.F((**C.v)(unsafe.Pointer(p))) // ERROR HERE
    		}
    		var p *v
    		f(&p)
    	}
    
    	// issue 16116
    	_ = C.fvi(1) // ERROR HERE
    
    	// Issue 16591: Test that we detect an invalid call that was being
    	// hidden by a type conversion inserted by cgo checking.
    	{
    		type x *C.int
    		var p *x
    		C.fppi(p) // ERROR HERE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. src/cmd/internal/buildid/note.go

    			if nameSize == 4 && 16+valSize <= uint32(len(note)) && tag == elfGoBuildIDTag && bytes.Equal(nname, elfGoNote) {
    				return string(note[16 : 16+valSize]), nil
    			}
    
    			if nameSize == 4 && 16+valSize <= uint32(len(note)) && tag == gnuBuildIDTag && bytes.Equal(nname, elfGNUNote) {
    				gnu = string(note[16 : 16+valSize])
    			}
    
    			nameSize = (nameSize + 3) &^ 3
    			valSize = (valSize + 3) &^ 3
    			notesz := uint64(12 + nameSize + valSize)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 17 20:40:42 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top