Skip to content

Commit

Permalink
Merge pull request #38 from SC-SGS/develop
Browse files Browse the repository at this point in the history
Preparation for Release v2.0.0
  • Loading branch information
vancraar authored May 11, 2023
2 parents 60dc96b + 780807d commit c22c726
Show file tree
Hide file tree
Showing 444 changed files with 35,748 additions and 11,732 deletions.
Binary file added .figures/support_vector_machine.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
push:
branches:
- main
- documentation
pull_request:
branches:
- main
Expand All @@ -21,7 +22,6 @@ jobs:
# install dependencies
- name: Dependancies
run: |
echo "deb http://dk.archive.ubuntu.com/ubuntu/ hirsute main universe" | sudo tee -a /etc/apt/sources.list
sudo apt update
sudo apt-get install -y doxygen graphviz
# configure project via CMake
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/msvc_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,12 @@ jobs:
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..
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"
run: |
cd PLSSVM/build
cmake --build .
- name: "Test Step"
run: |
cd PLSSVM/build
ctest -C Debug -V
ctest --output-on-failure -C Debug
18 changes: 7 additions & 11 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ build*/
cmake-build*/
CMakeLists.txt.user
CMakeCache.txt
CMakeSettings.json
CMakeFiles
CMakeScripts
Testing
Expand All @@ -52,20 +53,14 @@ CTestTestfile.cmake
# IDEs ================================
.idea/
.vscode/
.vs/


# Project related ================================

# ignore everything in the autogenerated folder, except the README
include/plssvm/backends/autogenerated/*
!include/plssvm/backends/autogenerated/README.md
src/plssvm/backends/autogenerated/*
!src/plssvm/backends/autogenerated/README.md
tests/backends/autogenerated/*
!tests/backends/autogenerated/README.md

# auto-generated version header
include/plssvm/version/version.hpp
# auto-generated git source
src/plssvm/version/git_metadata/git_metadata.cpp

# generated documentation
!docs/
Expand All @@ -74,11 +69,12 @@ docs/*
!docs/CMakeLists.txt
!docs/plssvm-train.1.in
!docs/plssvm-predict.1.in
!docs/plssvm-scale.1.in

# data in test folder
!tests/data/
tests/data/*
!tests/data/models/
!tests/data/model/
!tests/data/libsvm/
!tests/data/arff/
!tests/data/predict/
!tests/data/predict/
Loading

0 comments on commit c22c726

Please sign in to comment.