Skip to content

Commit 4748aec

Browse files
committed
Clang format
1 parent a69ef42 commit 4748aec

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

include/mgard-x/CompressionHighLevel/DomainDecomposer.hpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,7 @@ template <DIM D, typename T, typename DeviceType> class DomainDecomposer {
133133
_domain_decomposed_size = chunck_shape[_domain_decomposed_dim];
134134
log::info(
135135
"Domain decomposed dim: " + std::to_string(_domain_decomposed_dim) +
136-
", Domain decomposed size: " +
137-
std::to_string(_domain_decomposed_size));
136+
", Domain decomposed size: " + std::to_string(_domain_decomposed_size));
138137
return true;
139138
}
140139

include/mgard-x/RuntimeX/DeviceAdapters/DeviceAdapter.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ struct Atomic {
4848
MGARDX_EXEC static T Add(T *result, T value);
4949
};
5050

51-
5251
// based on de Bruijn sequence:
5352
// 0000001000011000101000111001001011001101001111010101110110111111
5453
// = 151050438420815295
@@ -68,7 +67,7 @@ static const int MultiplyDeBruijnBitPosition[64] = {
6867
63, 6, 12, 18, 24, 27, 33, 39, 16, 37, 45, 47, 30, 53, 49, 56,
6968

7069
62, 11, 23, 32, 36, 44, 52, 55, 61, 22, 43, 51, 60, 42, 59, 58};
71-
70+
7271
template <typename DeviceType> struct Math {
7372
template <typename T> MGARDX_EXEC static T Min(T a, T b);
7473
template <typename T> MGARDX_EXEC static T Max(T a, T b);

0 commit comments

Comments
 (0)