Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. tensorflow/c/tf_tensor.cc

    Status TensorInterface::ToTensor(tensorflow::Tensor* dst) const {
      *dst = tensor_;
      return absl::OkStatus();
    }
    
    bool TensorInterface::IsAligned() const { return tensor_.IsAligned(); }
    
    }  // namespace tensorflow
    
    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

      int NumDims() const override;
      int64_t Dim(int dim_index) const override;
      int64_t NumElements() const override;
      size_t ByteSize() const override;
      void* Data() const override;
      bool IsAligned() const override;
      bool CanMove() const override;
      std::string SummarizeValue() const override;
    
      void SetShape(const int64_t* dims, int num_dims);
      Status ToTensor(tensorflow::Tensor* dst) const;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 24 20:38:55 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top