Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Starling (0.23 sec)

  1. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

      {
        tensorflow::mutex_lock l(execution_mutex_);
        while (execution_state_ != ExecutionState::kIdle) {
          // If there's already a pending execution, wait until Join finishes before
          // starting on the next operation.
          finished_join_.wait(l);
        }
        context_ = context;
        operation_name_ = operation_name;
        step_id_ = step_id;
        op_inputs_ = inputs;
        attributes_ = attributes;
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Feb 09 07:47:20 GMT 2024
    - 25.4K bytes
    - Viewed (1)
  2. tensorflow/c/c_api.h

    // `cond_output`, `body_outputs`, and `name`. The `body_outputs` buffer will be
    // allocated to size `ninputs`. The caller should build `cond_graph` and
    // `body_graph` starting from the inputs, and store the final outputs in
    // `cond_output` and `body_outputs`.
    //
    // If `status` is OK, the caller must call either TF_FinishWhile or
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  3. configure.py

        write_action_env_to_bazelrc('HIP_PLATFORM', environ_cp.get('HIP_PLATFORM'))
    
      if is_windows():
        print('\nWARNING: Cannot build with CUDA support on Windows.\n'
              'Starting in TF 2.11, CUDA build is not supported for Windows. '
              'For using TensorFlow GPU on Windows, you will need to build/install '
              'TensorFlow in WSL2.\n')
        environ_cp['TF_NEED_CUDA'] = '0'
      else:
    Python
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 18:25:36 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  4. CONTRIBUTING.md

    you want to debug a kernel, you can compile specific files with `-g` using the
    `--per_file_copt` bazel option. For example, if you want to debug the Identity
    op, which are in files starting with `identity_op`, you can run
    
    ```bash
    bazel build --config=dbg --per_file_copt=+tensorflow/core/kernels/identity_op.*@-g //tensorflow/tools/pip_package:build_pip_package
    ```
    
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Mar 21 11:45:51 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.h

          // Destroying pruning_thread_ will block until Prune() receives the above
          // notification and returns.
          pruning_thread_.reset();
        }
      }
    
      /// Read `n` bytes from `filename` starting at `offset` into `buffer`. It
      /// returns total bytes read ( -1 in case of errors ). This method will set
      /// `status` to:
      ///
      /// 1) The error from the remote filesystem, if the read from the remote
    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)
  6. RELEASE.md

            functions.
    
    ## Deprecations
    
    *   TensorFlow 1.7 may be the last time we support Cuda versions below 8.0.
        Starting with TensorFlow 1.8 release, 8.0 will be the minimum supported
        version.
    *   TensorFlow 1.7 may be the last time we support cuDNN versions below 6.0.
        Starting with TensorFlow 1.8 release, 6.0 will be the minimum supported
        version.
    
    ## Thanks to our Contributors
    
    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)
  7. tensorflow/c/experimental/filesystem/filesystem_interface.h

      /// operations.
      ///
      /// This operation must be provided. See "REQUIRED OPERATIONS" above.
      void (*cleanup)(TF_RandomAccessFile* file);
    
      /// Reads up to `n` bytes from `*file` starting at `offset`.
      ///
      /// The output is in `buffer`, core TensorFlow owns the buffer and guarantees
      /// that at least `n` bytes are available.
      ///
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri May 27 17:36:54 GMT 2022
    - 53.1K bytes
    - Viewed (0)
Back to top