Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 100 for zero (0.11 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        if (dense_int_attr.getType().getElementType().isSignedInteger()) {
          // Get the sign-extended value (=>int64) if the type is signed.
          float_val = apint_val.getSExtValue();
        } else {
          // Get the zero-extended value (=>uint64) if unsigned or signless.
          float_val = apint_val.getZExtValue();
        }
      }
      return DenseFPElementsAttr::get(
          RankedTensorType::get({}, builder.getF32Type()),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "is-extglob": "^2.1.1"
          },
          "engines": {
            "node": ">=0.10.0"
          }
        },
        "node_modules/is-negative-zero": {
          "version": "2.0.2",
          "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz",
          "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==",
          "dev": true,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/arm64/asm7.go

    				w = 2 /* 32-bit, sign-extended to 64-bit */
    			} else if p.Pool.To.Offset >= 0 {
    				w = 0 /* 32-bit, zero-extended to 64-bit */
    			} else {
    				c.ctxt.Diag("invalid operand %v in %v", a, p)
    			}
    
    		case AMOVBU, AMOVHU, AMOVWU:
    			w = 0 /* 32-bit, zero-extended to 64-bit */
    
    		case AMOVB, AMOVH, AMOVW:
    			w = 2 /* 32-bit, sign-extended to 64-bit */
    
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

      }
    
      /** For example, empty Protobuf RPC messages end up as a zero-length POST.  */
      @Test
      fun zeroLengthPost() {
        zeroLengthPayload("POST")
      }
    
      @Test
      fun zeroLengthPost_HTTP_2() {
        enableProtocol(Protocol.HTTP_2)
        zeroLengthPost()
      }
    
      /** For example, creating an Amazon S3 bucket ends up as a zero-length POST.  */
      @Test
      fun zeroLengthPut() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        maximum size needs to be a constant and 2) a push op can be found with a
        known shape, and all push ops need to have the same shape.
    
        A stack creation op "tf.StackV2" will be turned in to two zero-initialized
        variables, for the buffer and current size. Each push will be turned into
        ```mlir
          %old_val = "tf.ReadVariableOp"(%buffer)
          %old_size = "tf.ReadVariableOp"(%size)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

      %0:2 = "tf.WhileRegion"(%arg0, %arg1) (
        {
          // condition, check if count has reached 0
          ^bb0(%carg0: tensor<*xf32>, %carg1: tensor<i32>):
          %zero = arith.constant dense<0> : tensor<i32>
          %ne = "tf.NotEqual"(%carg1, %zero) : (tensor<i32>, tensor<i32>) -> tensor<i1>
          "tf.Yield"(%ne) : (tensor<i1>) -> ()
        },
        {
          // loop body
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let description = [{
        This operation pads a `input` with zeros according to the `paddings` you
        specify. `paddings` is an integer tensor with shape `[Dn, 2]`, where n is
        the rank of `input`. For each dimension D of `input`, `paddings[D, 0]`
        indicates how many zeros to add before the contents of `input` in that
        dimension, and `paddings[D, 1]` indicates how many zeros to add after the
        contents of `input` in that dimension.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/ppc64/asm9.go

    		if m == 0 {
    			if p.As == obj.APCALIGN {
    				a := c.vregoff(&p.From)
    				m = addpad(pc, a, ctxt, cursym)
    			} else {
    				if p.As != obj.ANOP && p.As != obj.AFUNCDATA && p.As != obj.APCDATA {
    					ctxt.Diag("zero-width instruction\n%v", p)
    				}
    				continue
    			}
    		}
    		pc += int64(m)
    	}
    
    	c.cursym.Size = pc
    
    	/*
    	 * if any procedure is large enough to
    	 * generate a large SBRA branch, then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    		err = errnoErr(e1)
    	}
    	return
    }
    
    func LoadLibraryEx(libname string, zero Handle, flags uintptr) (handle Handle, err error) {
    	var _p0 *uint16
    	_p0, err = syscall.UTF16PtrFromString(libname)
    	if err != nil {
    		return
    	}
    	return _LoadLibraryEx(_p0, zero, flags)
    }
    
    func _LoadLibraryEx(libname *uint16, zero Handle, flags uintptr) (handle Handle, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/proxier_test.go

    		expectVirtualServer      bool
    		expectLocalEntries       bool
    		expectLocalRealServerNum int
    		expectLocalRealServers   []string
    	}{
    		{
    			name:                  "internalTrafficPolicy is cluster with non-zero local endpoints",
    			internalTrafficPolicy: ptr.To(v1.ServiceInternalTrafficPolicyCluster),
    			endpoints: []endpoint{
    				{"10.0.1.1", testHostname},
    				{"10.0.1.2", "host1"},
    				{"10.0.1.3", "host2"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
Back to top