dmccloskey / TensorBase

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

Refactor TensorCollection to use type erasure instead of tuples #17

Closed dmccloskey closed 5 years ago

dmccloskey commented 5 years ago

Description

The use of tuples works for storing a vector of heterogenous TensorTables. However, the ability to perform operations on the tuple in a dynamic fashion is exteremely limited. Instead, type erasure will be used to generate a heterogenous map of TensorTables.

Objectives

Validation