Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for BitcastFrom (0.13 sec)

  1. tensorflow/c/tf_tensor.cc

      }
      tensor_.set_shape(s);
    }
    
    Status TensorInterface::BitcastFrom(const TensorInterface& from, DataType type,
                                        const int64_t* new_dims, int num_new_dims) {
      tensorflow::TensorShape s;
      for (int i = 0; i < num_new_dims; ++i) {
        TF_RETURN_IF_ERROR(s.AddDimWithStatus(new_dims[i]));
      }
      return tensor_.BitcastFrom(from.tensor_, type, s);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 14 21:57:32 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. tensorflow/c/tf_tensor_internal.h

      bool CanMove() const override;
      std::string SummarizeValue() const override;
    
      void SetShape(const int64_t* dims, int num_dims);
      Status ToTensor(tensorflow::Tensor* dst) const;
      Status BitcastFrom(const TensorInterface& from, DataType type,
                         const int64_t* new_dims, int num_new_dims);
      Status FromProto(const tensorflow::TensorProto& from);
    
      tensorflow::Tensor& Tensor() { return tensor_; }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 24 20:38:55 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. RELEASE.md

            color palette of the frame. This has been fixed now
        *   Add templates and interfaces for creating lookup tables
        *   `Tensor::UnsafeCopyFromInternal` deprecated in favor
            `Tensor::BitcastFrom`.
        *   In `map_vectorization` optimization, reduce the degree of parallelism in
            the vectorized map node.
        *   Add variant wrapper for `absl::string_view`.
        *   Add OpKernels for some stateless maps.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top