Uses of Class
deepnetts.tensor.Tensor2D
Packages that use Tensor2D
-
Uses of Tensor2D in deepnetts.cudnn
Constructors in deepnetts.cudnn with parameters of type Tensor2D -
Uses of Tensor2D in deepnetts.tensor
Methods in deepnetts.tensor that return Tensor2DModifier and TypeMethodDescriptionfinal Tensor2D
static Tensor2D
Tensors.create
(int rows, int cols, float[] values) Factory method for creating tensor instance,Performs dot product operation on this tensor and matrib, and stores results in result tensor.static Tensor2D
Tensor2D.getTransposed()
static Tensor2D
Tensors.random
(int rows, int cols) Create and return a tensor with specified number of rows and cols filled with random values.Methods in deepnetts.tensor with parameters of type Tensor2DModifier and TypeMethodDescriptionPerforms dot product operation on this tensor and matrib, and stores results in result tensor.static Tensor1D
Tensors.dotProduct
(Tensor2D matrixA, Tensor1D vectorB, Tensor1D resultC) Dot product matrix vector multiplication C = A .static void
Tensors.dotProduct
(Tensor2D matrixA, Tensor2D matrixB, Tensor2D result) static void
Tensors.dotProductBuffered
(Tensor2D matrixA, Tensor1D vectorB, Tensor1D resultC) Matrix vector dot product.static void
Tensors.dotProductBuffered
(Tensor2D matrixA, Tensor2D matrixB, Tensor2D result)