Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 350 for composed (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/writing_build_scripts.adoc

    | `task()`
    | Creates a Task with the given name and adds it to this project.
    |===
    
    == Build Script structure
    
    The Build script is composed of `{ ... }`, a special object in both Groovy and Kotlin.
    This object is called a _lambda_ in Kotlin or a _closure_ in Groovy.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:22:43 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/tests/compose-uniform-quantized-type.mlir

        %0 = stablehlo.convert %arg0 : (tensor<1x3xi8>) -> tensor<1x3xf32>
        return %0 : tensor<1x3xf32>
      }
    // CHECK: @uniform_dequantize_0
    }
    
    // -----
    
    // Tests that a quantized dot_general op is composed when both operands are
    // actiavations.
    
    // CHECK-LABEL: dot_general_with_two_activations
    // CHECK-SAME: %[[ARG_0:.*]]: tensor<8x16x16xf32>
    // CHECK-SAME: %[[ARG_1:.*]]: tensor<8x16x4xf32>
    module {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 37K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    image::tutorial/intellij-idea-ide.png[]
    
    Open the `settings.gradle(.kts)` and `build.gradle(.kts)` files in the IDE:
    
    image::tutorial/intellij-idea-open.png[]
    
    == Step 6. Understanding the Settings file
    A project is composed of one or more subprojects (sometimes called modules).
    
    Gradle reads the `settings.gradle(.kts)` file to figure out which subprojects comprise a project build.
    
    Take a look at the file in your project:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/security/simple-oauth2.md

        ```
    
    `OAuth2PasswordRequestForm` is a class dependency that declares a form body with:
    
    * The `username`.
    * The `password`.
    * An optional `scope` field as a big string, composed of strings separated by spaces.
    * An optional `grant_type`.
    
    !!! tip
        The OAuth2 spec actually *requires* a field `grant_type` with a fixed value of `password`, but `OAuth2PasswordRequestForm` doesn't enforce it.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

        2. Operations that don't have a kernel defined for the device.
    
        This pass is conservative in that it will mark all ops for outside compilation
        that can not be compiled for the device.  Exceptions for this are added for ops
        that will be rewritten or decomposed before compiling on device.
    
    
        For example, tf_device.cluster op with an unsupported op, tf.UnsupportedOp:
    
        ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. src/database/sql/convert.go

    		return nil, nil
    	}
    	return vr.Value()
    }
    
    // decimal composes or decomposes a decimal value to and from individual parts.
    // There are four parts: a boolean negative flag, a form byte with three possible states
    // (finite=0, infinite=1, NaN=2), a base-2 big-endian integer
    // coefficient (also known as a significand) as a []byte, and an int32 exponent.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/tls.go

    	gateways sets.String, configs []config.Config,
    ) []*filterChainOpts {
    	if !listenPort.Protocol.IsTLS() {
    		return nil
    	}
    	actualWildcard, _ := getActualWildcardAndLocalHost(node)
    	// TLS matches are composed of runtime and static predicates.
    	// Static predicates can be evaluated during the generation of the config. Examples: gateway, source labels, etc.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. tests/integration/README.md

    ```
    
    This will select tests that have ```label.CustomSetup``` only. It will **not** select tests that have both ```label.CustomSetup```
    and ```label.Postsubmit```.
    
    ### Running Tests on CI
    
    Istio's CI/CD system is composed of 2 parts:
    
    Tool | Description |
    ---|---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/codegen.cc

    class {{CLASS}} final : public tensorflow::XlaCompiledCpuFunction {
     public:
      // Number of input arguments for the compiled computation.
      static constexpr size_t kNumArgs = {{ARG_NUM}};
    
      static constexpr size_t kNumResults = {{RESULT_NUM}};
    
      // Number of variables for the compiled computation.
      static constexpr size_t kNumVariables = {{VARIABLE_NUM}};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  10. docs/en/docs/async.md

    ---
    
    Common examples of CPU bound operations are things that require complex math processing.
    
    For example:
    
    * **Audio** or **image processing**.
    * **Computer vision**: an image is composed of millions of pixels, each pixel has 3 values / colors, processing that normally requires computing something on those pixels, all at the same time.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top