Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for device_index (0.15 sec)

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

          default_cancellation_manager_(absl::make_unique<CancellationManager>()) {
      device_threads_.reserve(devices.size());
      for (int device_index = 0; device_index < devices.size(); ++device_index) {
        device_threads_.emplace_back(new DeviceThread(
            devices[device_index].c_str(), is_async, in_flight_nodes_limit));
      }
    }
    
    // Necessary for a unique_ptr to a forward-declared type.
    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. RELEASE.md

            treated as tensors, so if you still want them to be treated that way,
            you need to wrap them with `tf.convert_to_tensor`.
        *   No lowering on gradient case op when input is `DeviceIndex` op.
        *   Extend the ragged version of `tf.gather` to support `batch_dims` and
            `axis` args.
        *   Update `tf.map_fn` to support RaggedTensors and SparseTensors.
    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)
Back to top