Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for TFE_TensorHandleCopyToDevice (0.11 sec)

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

      std::vector<TensorHandlePtr> components;
      components.reserve(underlying_devices_.size());
      for (const std::string& underlying_device_name : underlying_devices_) {
        TFE_TensorHandle* t = TFE_TensorHandleCopyToDevice(
            tensor, context, underlying_device_name.c_str(), status);
        if (TF_GetCode(status) != TF_OK) return nullptr;
        components.emplace_back(t);
      }
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Mon Oct 21 04:14:14 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api.cc

              unwrapped_op,
              reinterpret_cast<tensorflow::ImmediateExecutionTensorHandle**>(
                  retvals),
              num_retvals);
    }
    
    TFE_TensorHandle* TFE_TensorHandleCopyToDevice(TFE_TensorHandle* h,
                                                   TFE_Context* ctx,
                                                   const char* device_name,
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Sat Oct 12 05:11:17 UTC 2024
    - 43.9K bytes
    - Viewed (0)
Back to top