2024-03-21 23:24:21 +01:00
/*
LA : linear algebra C + + interface library
Copyright ( C ) 2024 Jiri Pittner < jiri . pittner @ jh - inst . cas . cz > or < jiri @ pittnerovi . com >
This program is free software : you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation , either version 3 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program . If not , see < http : //www.gnu.org/licenses/>.
*/
2024-03-26 17:49:09 +01:00
//a simple tensor class with arbitrary symmetry of index subgroups
2024-03-21 23:24:21 +01:00
//stored in an efficient way
2024-04-10 18:28:50 +02:00
//each index group has a specific symmetry (nosym,sym,antisym)
//additional symmetry between index groups (like in 2-electron integrals) is not supported directly, you would need to nest the class to Tensor<Tensor<T> >
2024-03-21 23:24:21 +01:00
//presently only a rudimentary implementation
//presently limited to 2G data size due to NRVec - maybe use a typedef LA_index
//to uint64_t in the future in vector and matrix classes
# ifndef _TENSOR_H
# define _TENSOR_H
# include <stdint.h>
2024-03-26 17:49:09 +01:00
# include <cstdarg>
2024-03-21 23:24:21 +01:00
# include "vec.h"
2024-04-10 18:28:50 +02:00
# include "mat.h"
# include "smat.h"
2024-03-21 23:24:21 +01:00
# include "miscfunc.h"
namespace LA {
2024-04-02 17:55:07 +02:00
template < typename T >
class Signedpointer
{
T * ptr ;
int sgn ;
public :
2024-04-03 18:43:55 +02:00
Signedpointer ( T * p , int s ) : ptr ( p ) , sgn ( s ) { } ;
2024-04-04 12:12:12 +02:00
//dereferencing *ptr should intentionally segfault for sgn==0
T & operator = ( const T rhs ) { if ( sgn > 0 ) * ptr = rhs ; else * ptr = - rhs ; return * ptr ; }
T & operator * = ( const T rhs ) { * ptr * = rhs ; return * ptr ; }
T & operator / = ( const T rhs ) { * ptr / = rhs ; return * ptr ; }
T & operator + = ( const T rhs ) { if ( sgn > 0 ) * ptr + = rhs ; else * ptr - = rhs ; return * ptr ; }
T & operator - = ( const T rhs ) { if ( sgn > 0 ) * ptr - = rhs ; else * ptr + = rhs ; return * ptr ; }
2024-04-02 17:55:07 +02:00
} ;
2024-03-21 23:24:21 +01:00
typedef int LA_index ;
typedef int LA_largeindex ;
typedef class indexgroup {
2024-04-03 18:43:55 +02:00
public :
2024-03-21 23:24:21 +01:00
int number ; //number of indices
2024-04-25 16:38:35 +02:00
int symmetry ; //-1 0 or 1, later 2 for hermitian and -2 for antihermitian? - would need change in operator() and Signedpointer
2024-04-05 15:25:05 +02:00
# ifdef LA_TENSOR_ZERO_OFFSET
2024-04-25 16:38:35 +02:00
static const LA_index offset = 0 ; //compiler can optimize away some computations
2024-04-05 15:25:05 +02:00
# else
LA_index offset ; //indices start at a general offset
# endif
2024-04-02 17:55:07 +02:00
LA_index range ; //indices span this range
2024-04-09 16:08:15 +02:00
bool operator = = ( const indexgroup & rhs ) const { return number = = rhs . number & & symmetry = = rhs . symmetry & & offset = = rhs . offset & & range = = rhs . range ; } ;
inline bool operator ! = ( const indexgroup & rhs ) const { return ! ( ( * this ) = = rhs ) ; } ;
2024-03-21 23:24:21 +01:00
} INDEXGROUP ;
2024-04-10 18:28:50 +02:00
std : : ostream & operator < < ( std : : ostream & s , const INDEXGROUP & x ) ;
std : : istream & operator > > ( std : : istream & s , INDEXGROUP & x ) ;
2024-04-03 18:43:55 +02:00
template < >
class LA_traits < indexgroup > {
public :
static bool is_plaindata ( ) { return true ; } ;
static void copyonwrite ( indexgroup & x ) { } ;
typedef INDEXGROUP normtype ;
2024-04-09 16:08:15 +02:00
static inline int gencmp ( const indexgroup * a , const indexgroup * b , int n ) { return memcmp ( a , b , n * sizeof ( indexgroup ) ) ; } ;
2024-04-04 12:12:12 +02:00
static inline void put ( int fd , const indexgroup & x , bool dimensions = 1 ) { if ( sizeof ( indexgroup ) ! = write ( fd , & x , sizeof ( indexgroup ) ) ) laerror ( " write error 1 in indexgroup put " ) ; }
static inline void multiput ( int nn , int fd , const indexgroup * x , bool dimensions = 1 ) { if ( nn * sizeof ( indexgroup ) ! = write ( fd , x , nn * sizeof ( indexgroup ) ) ) laerror ( " write error 1 in indexgroup multiiput " ) ; }
static inline void get ( int fd , indexgroup & x , bool dimensions = 1 ) { if ( sizeof ( indexgroup ) ! = read ( fd , & x , sizeof ( indexgroup ) ) ) laerror ( " read error 1 in indexgroup get " ) ; }
static inline void multiget ( int nn , int fd , indexgroup * x , bool dimensions = 1 ) { if ( nn * sizeof ( indexgroup ) ! = read ( fd , x , nn * sizeof ( indexgroup ) ) ) laerror ( " read error 1 in indexgroup get " ) ; }
2024-04-03 18:43:55 +02:00
} ;
2024-03-26 17:49:09 +01:00
typedef NRVec < LA_index > FLATINDEX ; //all indices but in a single vector
typedef NRVec < NRVec < LA_index > > SUPERINDEX ; //all indices in the INDEXGROUP structure
2024-04-24 17:43:11 +02:00
typedef NRVec < LA_largeindex > GROUPINDEX ; //set of indices in the symmetry groups
2024-03-26 17:49:09 +01:00
2024-04-25 16:38:35 +02:00
FLATINDEX superindex2flat ( const SUPERINDEX & I ) ;
2024-03-26 17:49:09 +01:00
2024-03-21 23:24:21 +01:00
template < typename T >
class Tensor {
2024-04-10 18:28:50 +02:00
public :
2024-03-21 23:24:21 +01:00
NRVec < indexgroup > shape ;
2024-04-10 18:28:50 +02:00
NRVec < T > data ;
int myrank ;
2024-04-06 06:37:17 +02:00
NRVec < LA_largeindex > groupsizes ; //group sizes of symmetry index groups (a function of shape but precomputed for efficiency)
2024-04-24 17:43:11 +02:00
NRVec < LA_largeindex > cumsizes ; //cumulative sizes of symmetry index groups (a function of shape but precomputed for efficiency); always cumsizes[0]=1, index group 0 is the innermost-loop one
2024-03-21 23:24:21 +01:00
2024-04-08 16:57:09 +02:00
public :
2024-04-03 18:43:55 +02:00
LA_largeindex index ( int * sign , const SUPERINDEX & I ) const ; //map the tensor indices to the position in data
LA_largeindex index ( int * sign , const FLATINDEX & I ) const ; //map the tensor indices to the position in data
2024-04-05 15:25:05 +02:00
LA_largeindex vindex ( int * sign , LA_index i1 , va_list args ) const ; //map list of indices to the position in data
2024-04-08 16:57:09 +02:00
SUPERINDEX inverse_index ( LA_largeindex s ) const ; //inefficient, but possible if needed
2024-03-26 17:49:09 +01:00
2024-04-03 18:43:55 +02:00
//constructors
2024-04-05 15:25:05 +02:00
Tensor ( ) : myrank ( 0 ) { } ;
2024-04-24 17:43:11 +02:00
Tensor ( const NRVec < indexgroup > & s ) : shape ( s ) { data . resize ( calcsize ( ) ) ; calcrank ( ) ; } ; //general tensor
2024-04-10 18:28:50 +02:00
Tensor ( const indexgroup & g ) { shape . resize ( 1 ) ; shape [ 0 ] = g ; data . resize ( calcsize ( ) ) ; calcrank ( ) ; } ; //tensor with a single index group
2024-04-06 06:37:17 +02:00
Tensor ( const Tensor & rhs ) : myrank ( rhs . myrank ) , shape ( rhs . shape ) , groupsizes ( rhs . groupsizes ) , cumsizes ( rhs . cumsizes ) , data ( rhs . data ) { } ;
2024-04-09 16:08:15 +02:00
Tensor ( int xrank , const NRVec < indexgroup > & xshape , const NRVec < LA_largeindex > & xgroupsizes , const NRVec < LA_largeindex > xcumsizes , const NRVec < T > & xdata ) : myrank ( xrank ) , shape ( xshape ) , groupsizes ( xgroupsizes ) , cumsizes ( xcumsizes ) , data ( xdata ) { } ;
2024-04-10 18:28:50 +02:00
explicit Tensor ( const NRVec < T > & x ) ;
explicit Tensor ( const NRMat < T > & x ) ;
explicit Tensor ( const NRSMat < T > & x ) ;
2024-04-03 18:43:55 +02:00
2024-04-06 06:37:17 +02:00
void clear ( ) { data . clear ( ) ; } ;
2024-04-05 15:25:05 +02:00
int rank ( ) const { return myrank ; } ;
int calcrank ( ) ; //is computed from shape
2024-04-06 06:37:17 +02:00
LA_largeindex calcsize ( ) ; //set redundant data and return total size
2024-04-03 18:43:55 +02:00
LA_largeindex size ( ) const { return data . size ( ) ; } ;
2024-04-09 16:08:15 +02:00
void copyonwrite ( ) { shape . copyonwrite ( ) ; groupsizes . copyonwrite ( ) ; cumsizes . copyonwrite ( ) ; data . copyonwrite ( ) ; } ;
2024-04-30 16:38:16 +02:00
void resize ( const NRVec < indexgroup > & s ) { shape = s ; data . resize ( calcsize ( ) ) ; calcrank ( ) ; } ;
2024-04-03 22:14:24 +02:00
inline Signedpointer < T > lhs ( const SUPERINDEX & I ) { int sign ; LA_largeindex i = index ( & sign , I ) ; return Signedpointer < T > ( & data [ i ] , sign ) ; } ;
2024-04-25 16:38:35 +02:00
inline T operator ( ) ( const SUPERINDEX & I ) const { int sign ; LA_largeindex i = index ( & sign , I ) ; if ( sign = = 0 ) return 0 ; return sign > 0 ? data [ i ] : - data [ i ] ; } ;
2024-04-03 22:14:24 +02:00
inline Signedpointer < T > lhs ( const FLATINDEX & I ) { int sign ; LA_largeindex i = index ( & sign , I ) ; return Signedpointer < T > ( & data [ i ] , sign ) ; } ;
2024-04-25 16:38:35 +02:00
inline T operator ( ) ( const FLATINDEX & I ) const { int sign ; LA_largeindex i = index ( & sign , I ) ; if ( sign = = 0 ) return 0 ; return sign > 0 ? data [ i ] : - data [ i ] ; } ;
2024-04-05 15:25:05 +02:00
inline Signedpointer < T > lhs ( LA_index i1 . . . ) { va_list args ; int sign ; LA_largeindex i ; va_start ( args , i1 ) ; i = vindex ( & sign , i1 , args ) ; return Signedpointer < T > ( & data [ i ] , sign ) ; } ;
2024-04-25 16:38:35 +02:00
inline T operator ( ) ( LA_index i1 . . . ) const { va_list args ; ; int sign ; LA_largeindex i ; va_start ( args , i1 ) ; i = vindex ( & sign , i1 , args ) ; if ( sign = = 0 ) return 0 ; return sign > 0 ? data [ i ] : - data [ i ] ; } ;
2024-04-03 22:14:24 +02:00
2024-04-06 06:37:17 +02:00
inline Tensor & operator = ( const Tensor & rhs ) { myrank = rhs . myrank ; shape = rhs . shape ; groupsizes = rhs . groupsizes ; cumsizes = rhs . cumsizes ; data = rhs . data ; return * this ; } ;
2024-04-03 22:14:24 +02:00
inline Tensor & operator * = ( const T & a ) { data * = a ; return * this ; } ;
2024-04-06 06:37:17 +02:00
inline Tensor operator * ( const T & a ) const { Tensor r ( * this ) ; r * = a ; return r ; } ;
2024-04-04 12:12:12 +02:00
inline Tensor & operator / = ( const T & a ) { data / = a ; return * this ; } ;
2024-04-06 06:37:17 +02:00
inline Tensor operator / ( const T & a ) const { Tensor r ( * this ) ; r / = a ; return r ; } ;
2024-04-04 12:12:12 +02:00
2024-05-03 16:56:21 +02:00
Tensor & conjugateme ( ) { data . conjugateme ( ) ; return * this ; } ;
inline Tensor conjugate ( ) const { Tensor r ( * this ) ; r . conjugateme ( ) ; return r ; } ;
2024-04-09 16:08:15 +02:00
2024-04-10 18:28:50 +02:00
inline Tensor & operator + = ( const Tensor & rhs )
{
# ifdef DEBUG
if ( shape ! = rhs . shape ) laerror ( " incompatible tensors for operation " ) ;
# endif
data + = rhs . data ;
return * this ;
}
inline Tensor & operator - = ( const Tensor & rhs )
{
# ifdef DEBUG
if ( shape ! = rhs . shape ) laerror ( " incompatible tensors for operation " ) ;
# endif
data - = rhs . data ;
return * this ;
}
2024-04-09 16:08:15 +02:00
inline Tensor operator + ( const Tensor & rhs ) const { Tensor r ( * this ) ; r + = rhs ; return r ; } ;
inline Tensor operator - ( const Tensor & rhs ) const { Tensor r ( * this ) ; r - = rhs ; return r ; } ;
Tensor operator - ( ) const { return Tensor ( myrank , shape , groupsizes , cumsizes , - data ) ; } ; //unary-
2024-04-04 12:12:12 +02:00
void put ( int fd ) const ;
void get ( int fd ) ;
2024-03-26 17:49:09 +01:00
2024-04-09 16:08:15 +02:00
inline void randomize ( const typename LA_traits < T > : : normtype & x ) { data . randomize ( x ) ; } ;
2024-04-24 17:43:11 +02:00
void loopover ( void ( * callback ) ( const SUPERINDEX & , T * ) ) ; //loop over all elements
void grouploopover ( void ( * callback ) ( const GROUPINDEX & , T * ) ) ; //loop over all elements disregarding the internal structure of index groups
Tensor permute_index_groups ( const NRPerm < int > & p ) const ; //rearrange the tensor storage permuting index groups as a whole
2024-04-25 16:38:35 +02:00
Tensor unwind_index ( int group , int index ) const ; //separate an index from a group and expand it to full range as the least significant one
2024-05-03 16:56:21 +02:00
void addcontraction ( const Tensor & rhs1 , int group , int index , const Tensor & rhs , int rhsgroup , int rhsindex , T alpha = 1 , T beta = 1 , bool doresize = false , bool conjugate = false ) ;
inline Tensor contraction ( int group , int index , const Tensor & rhs , int rhsgroup , int rhsindex , T alpha = 1 , bool conjugate = false ) const { Tensor < T > r ; r . addcontraction ( * this , group , index , rhs , rhsgroup , rhsindex , alpha , 0 , true , conjugate ) ; return r ; }
2024-04-10 18:28:50 +02:00
2024-05-03 13:57:11 +02:00
void apply_permutation_algebra ( const Tensor & rhs , const PermutationAlgebra < int , T > & pa , bool inverse = false , T alpha = 1 , T beta = 0 ) ; //general (not optimally efficient) symmetrizers, antisymmetrizers etc. acting on the flattened index list:
// this *=beta; for I over this: this(I) += alpha * sum_P c_P rhs(P(I))
// PermutationAlgebra can represent e.g. general_antisymmetrizer in Kucharski-Bartlett notation
//TODO perhaps implement application of a permutation algebra to a product of several tensors
2024-03-21 23:24:21 +01:00
} ;
2024-03-26 17:49:09 +01:00
2024-04-10 18:28:50 +02:00
template < typename T >
std : : ostream & operator < < ( std : : ostream & s , const Tensor < T > & x ) ;
template < typename T >
std : : istream & operator > > ( std : : istream & s , Tensor < T > & x ) ;
2024-03-26 17:49:09 +01:00
2024-03-21 23:24:21 +01:00
} //namespace
# endif