1 #ifndef _TBLIS_INTERNAL_1T_INDEXED_SET_HPP_
2 #define _TBLIS_INTERNAL_1T_INDEXED_SET_HPP_
3 
4 #include "util/thread.h"
5 #include "util/basic_types.h"
6 #include "configs/configs.hpp"
7 
8 namespace tblis
9 {
10 namespace internal
11 {
12 
13 template <typename T>
14 void set(const communicator& comm, const config& cfg,
15          T alpha, const indexed_varray_view<T>& A, const dim_vector&);
16 
17 }
18 }
19 
20 #endif
21