Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for rounds (0.32 sec)

  1. .bazelrc

    build:linux --copt="-Wno-all"
    build:linux --copt="-Wno-extra"
    build:linux --copt="-Wno-deprecated"
    build:linux --copt="-Wno-deprecated-declarations"
    build:linux --copt="-Wno-ignored-attributes"
    build:linux --copt="-Wno-array-bounds"
    
    # Add unused-result as an error on Linux.
    build:linux --copt="-Wunused-result"
    build:linux --copt="-Werror=unused-result"
    # Add switch as an error on Linux.
    build:linux --copt="-Wswitch"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. src/os/exec/exec.go

    	// be useful, for example, to work around deadlocks in commands that do not
    	// support shutdown signals but are expected to always finish quickly.
    	//
    	// Cancel will not be called if Start returns a non-nil error.
    	Cancel func() error
    
    	// If WaitDelay is non-zero, it bounds the time spent waiting on two sources
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/data.go

    	for addr < lastAddr {
    		// Find the last symbol we'd write.
    		idx := -1
    		for i, s := range syms {
    			if ldr.AttrSubSymbol(s) {
    				continue
    			}
    
    			// If the next symbol's size would put us out of bounds on the total length,
    			// stop looking.
    			end := ldr.SymValue(s) + ldr.SymSize(s)
    			if end > lastAddr {
    				break
    			}
    
    			// We're gonna write this symbol.
    			idx = i
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/ops.mlir

      func.return %0 : tensor<i1>
    }
    
    // -----
    
    func.func @testRoundInvalidInputType(%arg: tensor<?xi32>) -> tensor<?xi32> {
      // expected-error @+1 {{'tfl.round' op operand #0 must be tensor of 32-bit float values}}
      %0 = "tfl.round"(%arg) : (tensor<?xi32>) -> tensor<?xi32>
      func.return %0 : tensor<?xi32>
    }
    
    // -----
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

            quant_parameters) {
      auto type = mlir::cast<TensorType>(value.getType());
    
      // TFLite requires tensor shape only for the inputs and constants.
      // However, we output all known shapes for better round-tripping
      auto check_shape =
          [&](llvm::ArrayRef<int64_t> shape_ref) -> mlir::LogicalResult {
        auto is_out_of_range = [](int64_t dim) {
          return dim > std::numeric_limits<int32_t>::max();
        };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    							Format:      "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  7. src/net/http/server.go

    	w.WriteHeader(code)
    	fmt.Fprintln(w, error)
    }
    
    // NotFound replies to the request with an HTTP 404 not found error.
    func NotFound(w ResponseWriter, r *Request) { Error(w, "404 page not found", StatusNotFound) }
    
    // NotFoundHandler returns a simple request handler
    // that replies to each request with a “404 page not found” reply.
    func NotFoundHandler() Handler { return HandlerFunc(NotFound) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. api/openapi-spec/swagger.json

          "description": "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).",
          "properties": {
            "claimName": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
Back to top