Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for tensor_names (0.21 sec)

  1. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

        because the tensors are loaded asynchronously.
    
      }];
    
      let arguments = (ins
        TFTensorType:$prefix,
        TFTensorType:$tensor_names,
        TFTensorType:$shape_and_slices,
        Variadic<TFTensorType>:$var_handles,
        TypeArrayAttr: $restored_dtypes,
        DenseBoolArrayAttr: $truncate_in_cast
      );
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/pjrt_device_context.cc

      } else {
        return first_try_buffer.status();
      }
    }
    }  // namespace
    
    void PjRtDeviceContext::CopyDeviceTensorToCPU(const Tensor* device_tensor,
                                                  absl::string_view tensor_name,
                                                  Device* device,
                                                  Tensor* cpu_tensor,
                                                  StatusCallback done) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 08:49:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_device_context.cc

        });
        if (!status.ok()) {
          done(status);
        }
      }
    }
    
    void XlaDeviceContext::CopyDeviceTensorToCPU(const Tensor* device_tensor,
                                                 absl::string_view tensor_name,
                                                 Device* device, Tensor* cpu_tensor,
                                                 StatusCallback done) {
      if (device_tensor->NumElements() == 0) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top