Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Withrow (0.19 sec)

  1. RELEASE.md

            When the environment variable `TF_DETERMINISTIC_OPS` is set to `"true"`
            or `"1"` (when op-determinism is expected), an attempt to run the
            following ops on a GPU will throw `tf.errors.UnimplementedError` (with
            an understandable message) when `data` is a floating-point type,
            including complex types (if supported): `tf.math.segment_prod`,
    Plain Text
    - Registered: Tue May 07 12:40:20 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  2. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem.cc

                        char* buffer, TF_Status* status) {
      auto posix_file = static_cast<PosixFile*>(file->plugin_file);
      char* dst = buffer;
      int64_t read = 0;
    
      while (n > 0) {
        // Some platforms, notably macs, throw `EINVAL` if `pread` is asked to read
        // more than fits in a 32-bit integer.
        size_t requested_read_length;
        if (n > INT32_MAX)
          requested_read_length = INT32_MAX;
        else
          requested_read_length = n;
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Sun Mar 24 20:08:23 GMT 2024
    - 15.8K bytes
    - Viewed (0)
Back to top