PaulKMandal / FedCL

Federated Deep Learning in C and OpenCL
Other
1 stars 0 forks source link

Tensor functions #11

Open PaulKMandal opened 11 months ago

PaulKMandal commented 11 months ago
  1. Has function create_tensor, which takes an n-dimensional array and returns a Tensor wrapping the array.

  2. Has reshape and permute functions. Reshape allows you to reshape the dimensions of the tensor (e.g. (2,2,2) -> (4,2)). Permute changes the order of dimensions.

PaulKMandal commented 11 months ago

@SilverArgente Please make your commits to this branch.