mirror of
https://github.com/lordmathis/CUDANet.git
synced 2025-12-22 22:34:22 +00:00
Fix some dense layer issues
This commit is contained in:
@@ -22,6 +22,12 @@ public:
|
||||
|
||||
Tensor() = default;
|
||||
Tensor(Shape shape, DType dtype, CUDANet::Backend* backend);
|
||||
|
||||
Tensor(Tensor&& other) noexcept;
|
||||
Tensor& operator=(Tensor&& other) noexcept;
|
||||
Tensor(const Tensor&) = delete;
|
||||
Tensor& operator=(const Tensor&) = delete;
|
||||
|
||||
~Tensor();
|
||||
|
||||
size_t size() const;
|
||||
|
||||
Reference in New Issue
Block a user