Skip to content

Commit d5a7f5e

Browse files
committed
pre-commit code formatting
1 parent 4520d97 commit d5a7f5e

File tree

6 files changed

+40
-18
lines changed

6 files changed

+40
-18
lines changed

.pre-commit-config.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# See https://pre-commit.com/hooks.html for more hooks
33
repos:
44
- repo: https://github.com/pre-commit/pre-commit-hooks
5-
rev: v4.6.0
5+
rev: v5.0.0
66
hooks:
77
- id: check-ast
88
- id: check-builtin-literals
@@ -19,13 +19,13 @@ repos:
1919
- id: trailing-whitespace
2020
exclude: '.*\.patch'
2121
- repo: https://github.com/psf/black
22-
rev: 24.8.0
22+
rev: 24.10.0
2323
hooks:
2424
- id: black
2525
args: ["--line-length", "80"]
2626
language_version: python3
2727
- repo: https://github.com/PyCQA/bandit
28-
rev: '1.7.9'
28+
rev: '1.7.10'
2929
hooks:
3030
- id: bandit
3131
args: ["-c", ".bandit.yml"]

src/_sharpy.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ void init(bool cw, const std::string &libidtr) {
149149
VT(VT_begin, vtWaitSym); \
150150
py::gil_scoped_release release; \
151151
Service::run(); \
152-
auto r = (_f).get().get()->_a(); \
152+
auto r = (_f).get().get() -> _a(); \
153153
VT(VT_end, vtWaitSym); \
154154
return r
155155

src/idtr.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ WaitHandleBase *_idtr_copy_reshape(SHARPY::DTypeId sharpytype,
525525
if (isStrided) {
526526
unpack(rBuff, sharpytype, oDataShapePtr, oDataStridesPtr, oNDims,
527527
oDataPtr);
528-
delete[](char *) rBuff;
528+
delete[] (char *)rBuff;
529529
}
530530
};
531531
assert(sendbuff.empty() && sszs.empty() && soffs.empty() && rszs.empty() &&

src/include/sharpy/CppTypes.hpp

+33-11
Original file line numberDiff line numberDiff line change
@@ -63,17 +63,39 @@ enum _RANKS : rank_type {
6363
};
6464

6565
template <typename T> struct DTYPE {};
66-
template <> struct DTYPE<double> { constexpr static DTypeId value = FLOAT64; };
67-
template <> struct DTYPE<float> { constexpr static DTypeId value = FLOAT32; };
68-
template <> struct DTYPE<int64_t> { constexpr static DTypeId value = INT64; };
69-
template <> struct DTYPE<int32_t> { constexpr static DTypeId value = INT32; };
70-
template <> struct DTYPE<int16_t> { constexpr static DTypeId value = INT16; };
71-
template <> struct DTYPE<int8_t> { constexpr static DTypeId value = INT8; };
72-
template <> struct DTYPE<uint64_t> { constexpr static DTypeId value = UINT64; };
73-
template <> struct DTYPE<uint32_t> { constexpr static DTypeId value = UINT32; };
74-
template <> struct DTYPE<uint16_t> { constexpr static DTypeId value = UINT16; };
75-
template <> struct DTYPE<uint8_t> { constexpr static DTypeId value = UINT8; };
76-
template <> struct DTYPE<bool> { constexpr static DTypeId value = BOOL; };
66+
template <> struct DTYPE<double> {
67+
constexpr static DTypeId value = FLOAT64;
68+
};
69+
template <> struct DTYPE<float> {
70+
constexpr static DTypeId value = FLOAT32;
71+
};
72+
template <> struct DTYPE<int64_t> {
73+
constexpr static DTypeId value = INT64;
74+
};
75+
template <> struct DTYPE<int32_t> {
76+
constexpr static DTypeId value = INT32;
77+
};
78+
template <> struct DTYPE<int16_t> {
79+
constexpr static DTypeId value = INT16;
80+
};
81+
template <> struct DTYPE<int8_t> {
82+
constexpr static DTypeId value = INT8;
83+
};
84+
template <> struct DTYPE<uint64_t> {
85+
constexpr static DTypeId value = UINT64;
86+
};
87+
template <> struct DTYPE<uint32_t> {
88+
constexpr static DTypeId value = UINT32;
89+
};
90+
template <> struct DTYPE<uint16_t> {
91+
constexpr static DTypeId value = UINT16;
92+
};
93+
template <> struct DTYPE<uint8_t> {
94+
constexpr static DTypeId value = UINT8;
95+
};
96+
template <> struct DTYPE<bool> {
97+
constexpr static DTypeId value = BOOL;
98+
};
7799

78100
template <DTypeId DT> struct TYPE {};
79101
template <> struct TYPE<FLOAT64> {

test/test_manip.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44
import numpy
55
import pytest
6-
from mpi4py import MPI
76
from utils import device, runAndCompare
87

98
import sharpy as sp
9+
from mpi4py import MPI
1010

1111

1212
class TestManip:

test/test_spmd.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import numpy as np
22
import pytest
3-
from mpi4py import MPI
43
from utils import device
54

65
import sharpy as sp
6+
from mpi4py import MPI
77
from sharpy import _sharpy_cw
88

99

0 commit comments

Comments
 (0)