dmccloskey / TensorBase

A GPU accelerated, in memory, and multi-dimensional database
MIT License
1 stars 1 forks source link

TensorOperations for `AddAxis` and `DropAxis` #32

Open dmccloskey opened 5 years ago

dmccloskey commented 5 years ago

Description

Tensor operations that allow the user to add a new axis to an existing tensor table, and to remove an existing axis from an existing tensor table. The addAxis operation can be handled as an axis addition plus tensor broadcast along the new axis. The dropAxis operation can be handled as an axis deletion plus a tensor chip along the axis.

Objectives

Validation