Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 322 for maddld (0.37 sec)

  1. src/go/doc/testdata/a0.go

    //NOTE(uid):
    
    // SECBUG(uid): sec hole 0
    // need to fix asap
    
    // Multiple notes may be in the same comment group and should be
    // recognized individually. Notes may start in the middle of a
    // comment group as long as they start at the beginning of an
    // individual comment.
    //
    // NOTE(foo): 1 of 4 - this is the first line of note 1
    // - note 1 continues on this 2nd line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/g3doc/space_to_depth.md

    feature dimension becomes 3\*4=12, which is more MXU friendly. In order to make
    this optimization efficient, the shape of the weight needs to be padded and
    transposed to the shape that the convolution emitter expects. The input also
    needs to be transposed on the host and padded on the device to make the
    convolution efficient. Although a 2x2 space-to-depth transform works only when
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Oct 24 02:51:43 UTC 2020
    - 8.3K bytes
    - Viewed (0)
  3. src/image/color/ycbcr_test.go

    	if got != want {
    		t.Errorf("got %v, want %v", got, want)
    	}
    }
    
    var sink8 uint8
    var sink32 uint32
    
    func BenchmarkYCbCrToRGB(b *testing.B) {
    	// YCbCrToRGB does saturating arithmetic.
    	// Low, middle, and high values can take
    	// different paths through the generated code.
    	b.Run("0", func(b *testing.B) {
    		for i := 0; i < b.N; i++ {
    			sink8, sink8, sink8 = YCbCrToRGB(0, 0, 0)
    		}
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 07:51:17 UTC 2016
    - 7.3K bytes
    - Viewed (0)
  4. docs/en/docs/css/termynal.css

    [data-ty] {
        display: block;
        line-height: 2;
    }
    
    [data-ty]:before {
        /* Set up defaults and ensure empty lines are displayed. */
        content: '';
        display: inline-block;
        vertical-align: middle;
    }
    
    [data-ty="input"]:before,
    [data-ty-prompt]:before {
        margin-right: 0.75em;
        color: var(--color-text-subtle);
    }
    
    [data-ty="input"]:before {
        content: '$';
    }
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/utils/low_bit_utils.cc

        unpacked_buffer.push_back(static_cast<int8_t>(value << 4) >> 4);
        unpacked_buffer.push_back(static_cast<int8_t>(value) >> 4);
      }
    
      // The last element might be a padded zero, so check and pop if needed
      if (unpacked_buffer.size() > num_elements) {
        assert(unpacked_buffer.size() == num_elements + 1);
        unpacked_buffer.pop_back();
      }
    
      return unpacked_buffer;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 04 19:11:58 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. src/go/parser/short_test.go

    	`package p; func f() { var s []int; _ = s[i: /* ERROR "middle index required" */ :k] };`,
    	`package p; func f() { var s []int; _ = s[i: /* ERROR "middle index required" */ :] };`,
    	`package p; func f() { var s []int; _ = s[: /* ERROR "middle index required" */ :] };`,
    	`package p; func f() { var s []int; _ = s[: /* ERROR "middle index required" */ ::] };`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. src/crypto/hmac/hmac.go

    	}
    */
    package hmac
    
    import (
    	"crypto/internal/boring"
    	"crypto/subtle"
    	"hash"
    )
    
    // FIPS 198-1:
    // https://csrc.nist.gov/publications/fips/fips198-1/FIPS-198-1_final.pdf
    
    // key is zero padded to the block size of the hash function
    // ipad = 0x36 byte repeated for key length
    // opad = 0x5c byte repeated for key length
    // hmac = H([key ^ opad] H([key ^ ipad] text))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. docs/en/docs/img/deployment/concepts/process-ram.drawio

                    <mxCell id="3" value="&lt;font face=&quot;Roboto&quot;&gt;&lt;span style=&quot;font-size: 24px&quot;&gt;Server&lt;/span&gt;&lt;/font&gt;" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;strokeWidth=3;fontFamily=Roboto Mono, mono;FType=g;" parent="1" vertex="1">
                        <mxGeometry x="755" y="290" width="300" height="80" as="geometry"/>
                    </mxCell>
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 10K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/anames.go

    	"FSGNJNS",
    	"FSGNJXS",
    	"FMVXS",
    	"FMVSX",
    	"FMVXW",
    	"FMVWX",
    	"FEQS",
    	"FLTS",
    	"FLES",
    	"FCLASSS",
    	"FLD",
    	"FSD",
    	"FADDD",
    	"FSUBD",
    	"FMULD",
    	"FDIVD",
    	"FMIND",
    	"FMAXD",
    	"FSQRTD",
    	"FMADDD",
    	"FMSUBD",
    	"FNMADDD",
    	"FNMSUBD",
    	"FCVTWD",
    	"FCVTLD",
    	"FCVTDW",
    	"FCVTDL",
    	"FCVTWUD",
    	"FCVTLUD",
    	"FCVTDWU",
    	"FCVTDLU",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 14:19:33 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. test/finprofiled.go

    	"unsafe"
    )
    
    func main() {
    	runtime.MemProfileRate = 1
    	// Allocate 1M 4-byte objects and set a finalizer for every third object.
    	// Assuming that tiny block size is 16, some objects get finalizers setup
    	// only for middle bytes. The finalizer resurrects that object.
    	// As the result, all allocated memory must stay alive.
    	const (
    		N             = 1 << 20
    		tinyBlockSize = 16 // runtime._TinySize
    	)
    	hold := make([]*int32, 0, N)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 05:48:00 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top