Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,141 for below (0.05 sec)

  1. tensorflow/compiler/mlir/tensorflow/tests/resource-alias-analysis-test.mlir

      // expected-remark@below {{Result #0, ID 8 : Unknown}}
      // expected-remark@below {{Result #1, ID 9 : 1, 8, 9, 10, 12, 13}}
      // expected-remark@below {{Result #2, ID 10 : 1, 8, 9, 10, 12, 13}}
      // expected-remark@below {{Region #0, Arg #0, ID 2 : 1, 2, 8}}
      // expected-remark@below {{Region #0, Arg #1, ID 3 : 1, 3, 8}}
      // expected-remark@below {{Region #0, Arg #2, ID 4 : 1, 4, 8}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 21 17:19:47 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  2. src/image/color/ycbcr.go

    	// The bit twiddling below is equivalent to
    	//
    	// cb := (-11056*r1 - 21712*g1 + 32768*b1 + 257<<15) >> 16
    	// if cb < 0 {
    	//     cb = 0
    	// } else if cb > 0xff {
    	//     cb = ^int32(0)
    	// }
    	//
    	// but uses fewer branches and is faster.
    	// Note that the uint8 type conversion in the return
    	// statement will convert ^int32(0) to 0xff.
    	// The code below to compute cr uses a similar pattern.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/experimental/tac/README.md

    costs(computation costs, transfer costs, quant/dequant costs). As shown in the
    diagram below, since cross-device data transferring cost is high, even "G" + "H"
    running on GPU maybe less efficient than "C" running on "CPU", we will still
    pick "G" + "H" subgraph.
    
    ![Pick subgraphs](g3doc/images/pick_subgraphs.png)
    
    The final graph looks like below:
    
    ![Final graph](g3doc/images/final_graph.png)
    
    ## TAC components
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  4. src/math/big/float.go

    		// 0 < x < +Inf
    		if x.exp <= 0 {
    			// 0 < x < 1
    			return 0, Below
    		}
    		// 1 <= x < Inf
    		if x.exp <= 64 {
    			// u = trunc(x) fits into a uint64
    			u := msb64(x.mant) >> (64 - uint32(x.exp))
    			if x.MinPrec() <= 64 {
    				return u, Exact
    			}
    			return u, Below // x truncated
    		}
    		// x too large
    		return math.MaxUint64, Below
    
    	case zero:
    		return 0, Exact
    
    	case inf:
    		if x.neg {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  5. docs/logging/README.md

    ```
    
    NOTE: `http://endpoint:port/path` is a placeholder value to indicate the URL format, please change this accordingly as per your configuration.
    
    MinIO also honors environment variable for HTTP target logging as shown below, this setting will override the endpoint settings in the MinIO server config.
    
    ```
    export MINIO_LOGGER_WEBHOOK_ENABLE_target1="on"
    export MINIO_LOGGER_WEBHOOK_AUTH_TOKEN_target1="token"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 17:15:03 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Cut.java

     * way of "cutting" a "number line" (actually of instances of type {@code C}, not necessarily
     * "numbers") into two sections; this can be done below a certain value, above a certain value,
     * below all values or above all values. With this object defined in this way, an interval can
     * always be represented by a pair of {@code Cut} instances.
     *
     * @author Kevin Bourrillion
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Cut.java

     * way of "cutting" a "number line" (actually of instances of type {@code C}, not necessarily
     * "numbers") into two sections; this can be done below a certain value, above a certain value,
     * below all values or above all values. With this object defined in this way, an interval can
     * always be represented by a pair of {@code Cut} instances.
     *
     * @author Kevin Bourrillion
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  8. docs/bucket/versioning/README.md

    ![get](https://raw.githubusercontent.com/minio/minio/master/docs/bucket/versioning/versioning_GET_versionEnabled.png)
    
    GET requests by specifying a version ID as shown below, you can retrieve the specific object version `fae684da`.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 04 21:43:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. docs/bigdata/README.md

      - [Installing Spark](https://docs.hortonworks.com/HDPDocuments/HDP3/HDP-3.0.1/installing-spark/content/installing_spark.html)
    - Install MinIO Distributed Server using one of the guides below.
      - [Deployment based on Kubernetes](https://min.io/docs/minio/kubernetes/upstream/index.html#quickstart-for-kubernetes)
      - [Deployment based on MinIO Helm Chart](https://github.com/helm/charts/tree/master/stable/minio)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/first-steps.md

        You put it on top of a function. Like a pretty decorative hat (I guess that's where the term came from).
    
        A "decorator" takes the function below and does something with it.
    
        In our case, this decorator tells **FastAPI** that the function below corresponds to the **path** `/` with an **operation** `get`.
    
        It is the "**path operation decorator**".
    
    You can also use the other operations:
    
    * `@app.post()`
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 12K bytes
    - Viewed (0)
Back to top