Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for zOrder (0.24 sec)

  1. tensorflow/c/eager/tape.h

      // from a backward gradient function. Fills `out_grads` corresponding to
      // `output_tensors`. `out_grads` must not be null.
      //
      // Executes the backward function in order to trace its gradient, which will
      // waste computation if executing eagerly (when graph building the unneeded
      // computation is pruned). Temporarily sets `backward_tape` so that
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 02 12:40:29 GMT 2024
    - 47.2K bytes
    - Viewed (1)
  2. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    @@ -47,29 +47,7 @@
     #endif
     
     #if _STRING_ARCH_unaligned
    -/* If we can do unaligned memory accesses we must know the endianess.  */
    -# include <endian.h>
     # include <bits/types.h>
    -
    -# if __BYTE_ORDER == __LITTLE_ENDIAN
    -#  define __STRING2_SMALL_GET16(src, idx) \
    -     (((const unsigned char *) (const char *) (src))[idx + 1] << 8	      \
    -      | ((const unsigned char *) (const char *) (src))[idx])
    Others
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Sep 18 14:52:45 GMT 2023
    - 42.9K bytes
    - Viewed (1)
  3. configure.py

                'from distutils.sysconfig import get_python_lib;'
                'print(get_python_lib())'
            ])
        ]
    
      all_paths = set(python_paths + library_paths)
      # Sort set so order is deterministic
      all_paths = sorted(all_paths)
    
      paths = []
      for path in all_paths:
        if os.path.isdir(path):
          paths.append(path)
      return paths
    
    
    Python
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  4. tensorflow/__init__.py

    # limitations under the License.
    # ==============================================================================
    
    # Bring in all of the public TensorFlow interface into this
    # module.
    
    # pylint: disable=g-bad-import-order
    from tensorflow.python import pywrap_tensorflow  # pylint: disable=unused-import
    
    from tensorflow.python.platform import flags  # pylint: disable=g-import-not-at-top
    Python
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Sep 28 21:37:05 GMT 2021
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/api_template_v1.__init__.py

    import distutils as _distutils
    import importlib
    import inspect as _inspect
    import os as _os
    import site as _site
    import sys as _sys
    
    # pylint: disable=g-bad-import-order,protected-access,g-import-not-at-top
    from tensorflow.python import pywrap_tensorflow  # pylint: disable=unused-import
    from tensorflow.python.tools import module_util as _module_util
    Python
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Jan 23 02:14:00 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  6. tensorflow/c/eager/c_api_experimental.h

      // otherwise be the name of this custom device. Ops are placed onto a custom
      // device if any of their inputs are on that custom device, but custom devices
      // are free to set a bad status in order to require explicit placement.
      void (*execute)(const TFE_Op* op, int* num_outputs,
                      TFE_TensorHandle** outputs, TF_Status* s, void* device_info);
    
      // Method to delete a device.
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Feb 21 22:37:46 GMT 2024
    - 39.5K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.h

      /// be accessed while holding the Block's mu lock. The data vector should only
      /// be accessed after state == FINISHED, and it should never be modified.
      ///
      /// In order to prevent deadlocks, never grab the block-cache-wide mu_ lock
      /// AFTER grabbing any block's mu lock. It is safe to grab mu without locking
      /// mu_.
      struct Block {
        /// The block data.
    C
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Aug 31 04:46:34 GMT 2020
    - 10.6K bytes
    - Viewed (0)
  8. tensorflow/BUILD

    # Do not sort: Copybara rule
    # copybara:uncomment_begin
    # # buildifier: disable=out-of-order-load
    # load("//devtools/build_cleaner/skylark:action_config_test.bzl", "action_config_test")
    # load("//devtools/copybara/rules:copybara.bzl", "copybara_config_test")
    # load("@rules_license//rules:license.bzl", "license")
    # # buildifier: enable=out-of-order-load
    # copybara:uncomment_end
    
    # copybara:comment_begin(oss-only)
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Apr 09 18:15:11 GMT 2024
    - 53.4K bytes
    - Viewed (6)
  9. RELEASE.md

    semantics to match NumPy. * `tf.split` now takes arguments in a reversed order
    and with different keywords. In particular, we now match NumPy order as
    `tf.split(value, num_or_size_splits, axis)`. * `tf.sparse_split` now takes
    arguments in reversed order and with different keywords. In particular we now
    match NumPy order as `tf.sparse_split(sp_input, num_split, axis)`. NOTE: we have
    Plain Text
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Wed Apr 03 20:27:38 GMT 2024
    - 727.4K bytes
    - Viewed (8)
  10. tensorflow/c/c_api_function_test.cc

      DefineFunction("func_name_base", &func_, "Return something",
                     /*append_hash=*/true);
      tensorflow::FunctionDef fdef;
      ASSERT_TRUE(GetFunctionDef(func_, &fdef));
    #if (__BYTE_ORDER__ == __ORDER_BIG_ENDIAN__)
      ASSERT_EQ(string("func_name_base_ZpgUD4x8oqk"), fdef.signature().name());
    #else
      ASSERT_EQ(string("func_name_base_qaJ8jA8UmGY"), fdef.signature().name());
    #endif
    }
    
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Jul 20 22:08:54 GMT 2023
    - 63.6K bytes
    - Viewed (6)
Back to top