-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/shared_memory' into 2D_tiling
- Loading branch information
Showing
303 changed files
with
22,588 additions
and
11,724 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Generated from CLion Inspection settings | ||
--- | ||
Checks: '-*, | ||
cert-*, | ||
misc-*, | ||
mpi-*, | ||
cppcoreguidelines-*, | ||
-cppcoreguidelines-avoid-magic-numbers, | ||
-cppcoreguidelines-pro-bounds-pointer-arithmetic, | ||
google-default-arguments, | ||
google-runtime-operator, | ||
google-explicit-constructor, | ||
hicpp-multiway-paths-covered, | ||
hicpp-exception-baseclass, | ||
modernize-*, | ||
-modernize-use-trailing-return-type, | ||
-modernize-avoid-c-arrays, | ||
-modernize-use-using, | ||
-modernize-use-default-member-init, | ||
-modernize-macro-to-enum, | ||
portability-simd-intrinsics, | ||
readability-*, | ||
-readability-redundant-preprocessor, | ||
-readability-named-parameter, | ||
-readability-function-size, | ||
-readability-simplify-boolean-expr, | ||
-readability-identifier-length, | ||
-readability-duplicate-include, | ||
-readability-magic-numbers, | ||
-readability-braces-around-statements, | ||
-readability-redundant-member-init, | ||
-readability-suspicious-call-argument, | ||
-readability-qualified-auto, | ||
-readability-isolate-declaration, | ||
-readability-uppercase-literal-suffix, | ||
-readability-container-data-pointer, | ||
-readability-else-after-return, | ||
-readability-redundant-access-specifiers, | ||
-readability-function-cognitive-complexity, | ||
-readability-implicit-bool-conversion, | ||
-readability-container-contains, | ||
-readability-identifier-naming, | ||
bugprone-*' | ||
|
||
CheckOptions: | ||
- key: misc-non-private-member-variables-in-classes.IgnoreClassesWithAllMemberVariablesBeingPublic | ||
value: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,31 @@ | ||
name: Windows CPU | ||
name: Windows MSVC CPU | ||
on: push | ||
jobs: | ||
MSVC-Test: | ||
runs-on: windows-latest | ||
steps: | ||
- name: "Install MSVC 14.29" | ||
uses: ilammy/[email protected] | ||
with: | ||
toolset: 14.29 | ||
- name: "Install cmake 3.22.2" | ||
uses: lukka/[email protected] | ||
- name: "Clone Step" | ||
- name: "Install latest MSVC compiler" | ||
uses: ilammy/[email protected] | ||
- name: "Install cmake 3.25.2" | ||
uses: lukka/[email protected] | ||
- name: "Clone the PLSSVM repository into PLSSVM/" | ||
uses: actions/checkout@v2 | ||
with: | ||
path: PLSSVM | ||
- name: "CMake Step" | ||
- name: "Install Python dependencies" | ||
uses: py-actions/py-dependency-install@v4 | ||
with: | ||
path: "PLSSVM/.github/workflows/requirements.txt" | ||
- name: "Configure PLSSVM using CMake" | ||
run: | | ||
mkdir PLSSVM/build | ||
cd PLSSVM/build | ||
cmake -DCMAKE_BUILD_TYPE=Debug -DPLSSVM_TARGET_PLATFORMS="cpu" -DPLSSVM_ENABLE_TESTING=ON -DPLSSVM_GENERATE_TEST_FILE=OFF -DPLSSVM_ENABLE_LTO=OFF -DPLSSVM_ENABLE_ASSERTS=ON .. | ||
- name: "Build Step" | ||
cmake -DCMAKE_BUILD_TYPE=Release -DPLSSVM_TARGET_PLATFORMS="cpu" -DPLSSVM_ENABLE_TESTING=ON -DPLSSVM_TEST_FILE_NUM_DATA_POINTS=50 -DPLSSVM_TEST_FILE_NUM_FEATURES=20 -DPLSSVM_ENABLE_LTO=OFF -DPLSSVM_ENABLE_ASSERTS=ON .. | ||
- name: "Build PLSSVM" | ||
run: | | ||
cd PLSSVM/build | ||
cmake --build . | ||
- name: "Test Step" | ||
- name: "Run tests" | ||
run: | | ||
cd PLSSVM/build | ||
ctest --output-on-failure -C Debug | ||
ctest -j 2 -E ".*Exceptions\.|SourceLocation" --output-on-failure -C Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
### required python packages for the Windows MSVC tests | ||
argparse | ||
scikit-learn | ||
numpy | ||
humanize |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.