working on tensor class

This commit is contained in:
2024-04-03 22:14:24 +02:00
parent 8bbbaa5bae
commit baee11489b
3 changed files with 26 additions and 7 deletions

View File

@@ -146,8 +146,16 @@ return r;
}
//@@@@todo flatindex
template<typename T>
LA_largeindex Tensor<T>::index(int *sign, const FLATINDEX &I) const
{
}
//@@@@todo vindex
template<typename T>
LA_largeindex Tensor<T>::vindex(int *sign, int i1, va_list args) const
{
}
template class Tensor<double>;