Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for tips (0.18 sec)

  1. tensorflow/c/eager/abstract_context.h

      // lifetime through ref counting. Thus clients MUST call Release() in order to
      // destroy an instance of this class.
      virtual void Release() = 0;
    
      // Creates an operation builder and ties it to this context.
      // The returned object can be used for setting operation's attributes,
      // adding inputs and finally executing (immediately or lazily as in tracing)
      // it in this context.
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Sun Oct 24 11:16:58 GMT 2021
    - 3K bytes
    - Viewed (0)
  2. tensorflow/BUILD

            ),
            cpu = "arm64-v8a",
        ),
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "android_mips",
        values = {
            "crosstool_top": "//external:android/crosstool",
            "cpu": "mips",
        },
        visibility = ["//visibility:public"],
    )
    
    config_setting(
        name = "android_mips64",
        values = {
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (8)
  3. RELEASE.md

            for dynamically-sized TensorArray inside `tf.function`.
    *   `tf.math`:
        *   Narrow down `argmin`/`argmax` contract to always return the smallest
            index for ties.
        *   `tf.math.reduce_variance` and `tf.math.reduce_std` return correct
            computation for complex types and no longer support integer types.
        *   Add Bessel functions of order 0,1 to `tf.math.special`.
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top