1 #ifndef _TBLIS_INTERNAL_1T_DPD_SCALE_HPP_
2 #define _TBLIS_INTERNAL_1T_DPD_SCALE_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 scale(const communicator& comm, const config& cfg,
15            T alpha, bool conj_A, const dpd_varray_view<T>& A,
16            const dim_vector&);
17 
18 }
19 }
20 
21 #endif
22