Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for padded_shape_fn_ (0.15 sec)

  1. tensorflow/compiler/jit/xla_device.h

        const XlaShapeLayoutHelpers::ShapeDeterminationFns&
        default_shape_determination_fns() const {
          return shape_determination_fns_.at(0);
        }
        const PaddedShapeFn& padded_shape_fn() const { return padded_shape_fn_; }
    
        bool UseMultipleStreams() const { return use_multiple_streams_; }
    
       private:
        const int device_ordinal_;
        const DeviceType device_type_;
        se::Platform* platform_;  // Not owned.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device.cc

            shape_determination_fns,
        PaddedShapeFn padded_shape_fn, bool use_multiple_streams)
        : device_ordinal_(device_ordinal),
          device_type_(device_type),
          platform_(platform),
          shape_determination_fns_(std::move(shape_determination_fns)),
          padded_shape_fn_(std::move(padded_shape_fn)),
          use_multiple_streams_(use_multiple_streams) {}
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 20 21:05:42 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_tpu_device.cc

        XlaShapeLayoutHelpers::ShapeDeterminationFns shape_determination_fns{
            UseNoPreferenceLayoutFn(), &TpuShapeRepresentation};
        options.shape_determination_fns = {shape_determination_fns};
        options.padded_shape_fn = &TpuPaddedShapeFn;
        auto device = std::make_unique<XlaDevice>(session_options, options);
    
        // The AcceleratorDeviceInfo actually provides information not only for GPU
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 20.9K bytes
    - Viewed (0)
Back to top