Cyclops Tensor Framework
parallel arithmetic on multidimensional arrays
sp_seq_ctr.h
Go to the documentation of this file.
1 #ifndef __SP_SEQ_CTR_H__
2 #define __SP_SEQ_CTR_H__
3 
4 #include "contraction.h"
5 namespace CTF_int{
6  void spA_dnB_dnC_seq_ctr(char const * alpha,
7  char const * A,
8  int64_t size_A,
9  algstrct const * sr_A,
10  int order_A,
11  int const * edge_len_A,
12  int const * sym_A,
13  int const * idx_map_A,
14  char const * B,
15  algstrct const * sr_B,
16  int order_B,
17  int const * edge_len_B,
18  int const * sym_B,
19  int const * idx_map_B,
20  char const * beta,
21  char * C,
22  algstrct const * sr_C,
23  int order_C,
24  int const * edge_len_C,
25  int const * sym_C,
26  int const * idx_map_C,
27  bivar_function const * func);
28 }
29 #endif
int bivar_function(int n, World &dw)
void spA_dnB_dnC_seq_ctr(char const *alpha, char const *A, int64_t size_A, algstrct const *sr_A, int order_A, int const *edge_len_A, int const *sym_A, int const *idx_map_A, char const *B, algstrct const *sr_B, int order_B, int const *edge_len_B, int const *sym_B, int const *idx_map_B, char const *beta, char *C, algstrct const *sr_C, int order_C, int const *edge_len_C, int const *sym_C, int const *idx_map_C, bivar_function const *func)
Definition: sp_seq_ctr.cxx:358