Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 82 for 16xf16 (0.15 sec)

  1. src/crypto/tls/conn_test.go

    package tls
    
    import (
    	"bytes"
    	"io"
    	"net"
    	"testing"
    )
    
    func TestRoundUp(t *testing.T) {
    	if roundUp(0, 16) != 0 ||
    		roundUp(1, 16) != 16 ||
    		roundUp(15, 16) != 16 ||
    		roundUp(16, 16) != 16 ||
    		roundUp(17, 16) != 32 {
    		t.Error("roundUp broken")
    	}
    }
    
    // will be initialized with {0, 255, 255, ..., 255}
    var padding255Bad = [256]byte{}
    
    // will be initialized with {255, 255, 255, ..., 255}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:35:01 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. src/compress/bzip2/bzip2.go

    	}
    	origPtr := uint(br.ReadBits(24))
    
    	// If not every byte value is used in the block (i.e., it's text) then
    	// the symbol set is reduced. The symbols used are stored as a
    	// two-level, 16x16 bitmap.
    	symbolRangeUsedBitmap := br.ReadBits(16)
    	symbolPresent := make([]bool, 256)
    	numSymbols := 0
    	for symRange := uint(0); symRange < 16; symRange++ {
    		if symbolRangeUsedBitmap&(1<<(15-symRange)) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/mark_ops_for_outside_compilation.mlir

    // -----
    
    // CHECK-LABEL: func @tf2xla_fallback_op_approx_top_k
    func.func @tf2xla_fallback_op_approx_top_k(%arg0: tensor<16xf32>) -> (tensor<?xf32>, tensor<?xi32>) {
      %0:2 = "tf_device.cluster"() ({
        // CHECK: tf.ApproxTopK
        // CHECK-NOT: _xla_outside_compilation
        %1:2 = "tf.ApproxTopK"(%arg0) {k = 2} : (tensor<16xf32>) -> (tensor<?xf32>, tensor<?xi32>)
        tf_device.return %1#0, %1#1 : tensor<?xf32>, tensor<?xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 16:22:32 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  4. src/image/jpeg/writer.go

    			}
    			yi := m.YOffset(sx, sy)
    			ci := m.COffset(sx, sy)
    			yBlock[8*j+i] = int32(m.Y[yi])
    			cbBlock[8*j+i] = int32(m.Cb[ci])
    			crBlock[8*j+i] = int32(m.Cr[ci])
    		}
    	}
    }
    
    // scale scales the 16x16 region represented by the 4 src blocks to the 8x8
    // dst block.
    func scale(dst *block, src *[4]block) {
    	for i := 0; i < 4; i++ {
    		dstOff := (i&2)<<4 | (i&1)<<2
    		for y := 0; y < 4; y++ {
    			for x := 0; x < 4; x++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  5. cmd/generic-handlers.go

    				http.Redirect(w, r, u.String(), http.StatusTemporaryRedirect)
    				return
    			}
    		}
    		h.ServeHTTP(w, r)
    	})
    }
    
    var redirectPrefixes = map[string]struct{}{
    	"favicon-16x16.png": {},
    	"favicon-32x32.png": {},
    	"favicon-96x96.png": {},
    	"index.html":        {},
    	minioReservedBucket: {},
    }
    
    // Fetch redirect location if urlPath satisfies certain
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  6. src/strconv/atof.go

    		i++
    	}
    
    	// digits
    	base := uint64(10)
    	maxMantDigits := 19 // 10^19 fits in uint64
    	expChar := byte('e')
    	if i+2 < len(s) && s[i] == '0' && lower(s[i+1]) == 'x' {
    		base = 16
    		maxMantDigits = 16 // 16^16 fits in uint64
    		i += 2
    		expChar = 'p'
    		hex = true
    	}
    	sawdot := false
    	sawdigits := false
    	nd := 0
    	ndMant := 0
    	dp := 0
    loop:
    	for ; i < len(s); i++ {
    		switch c := s[i]; true {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  7. cmd/streaming-signature-v4.go

    //
    // The last chunk is *always* 0-sized. So, we must only return io.EOF if we have encountered
    // a chunk with a chunk size = 0. However, this chunk still has a signature and we must
    // verify it.
    const maxChunkSize = 16 << 20 // 16 MiB
    
    // Read - implements `io.Reader`, which transparently decodes
    // the incoming AWS Signature V4 streaming signature.
    func (cr *s3ChunkedReader) Read(buf []byte) (n int, err error) {
    	if cr.err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 16 23:13:47 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/tests/mlrt/while_to_map_fn.mlir

      %2 = "tf.TensorListStack"(%1#2, %cst_0) {device = "/job:localhost/replica:0/task:0/device:CPU:0", num_elements = 16 : i64} : (tensor<!tf_type.variant<tensor<*xf32>>>, tensor<2xi32>) -> tensor<16x16x?xf32>
      return %2 : tensor<16x16x?xf32>
    }
    // CHECK-LABEL: tf.NestedWhileRegion1_body
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 06:40:22 UTC 2024
    - 68.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      func.return %0: tensor<*xf32>
    }
    
    // CHECK-LABEL: func @testLeakyRelu
    func.func @testLeakyRelu(%arg0 : tensor<16xf32>) -> (tensor<16xf32>) {
      %2 = "tf.LeakyRelu"(%arg0) {alpha = 1.0 : f32} : (tensor<16xf32>) -> tensor<16xf32>
      // CHECK: return %arg0
      func.return %2 : tensor<16xf32>
    }
    
    // CHECK-LABEL: testSameBitcastType
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  10. test/live_regabi.go

    	printnl()
    	// Note: no .?autotmp live at printnl.  See issue 16996.
    }
    func ddd2(a ...*int) { // ERROR "live at entry to ddd2: a$"
    	sink = a[0]
    }
    
    // issue 16016: autogenerated wrapper should have arguments live
    type T struct{}
    
    func (*T) Foo(ptr *int) {}
    
    type R struct{ *T }
    
    // issue 18860: output arguments must be live all the time if there is a defer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 18.4K bytes
    - Viewed (0)
Back to top