Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add core and reference multiprecision tests #448

Merged
merged 16 commits into from
Mar 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ sonarqube_cov_:
-Dsonar.cfamily.build-wrapper-output=build/bw-output
-Dsonar.cfamily.gcov.reportsPath=build/Testing/CoverageInfo
${sonar_branching}
# - bash <(curl -s https://codecov.io/bash) -X gcov -X xcode -f "!*examples*" -f "!*third_party*" -f "!*c\\+\\+*" -f "!*benchmark*"
- bash <(curl -s https://codecov.io/bash) -f "\!*examples*" -f "\!*third_party*" -f "\!*c\\+\\+*" -f "\!*benchmark*"
dependencies: []
except:
refs:
Expand Down
2 changes: 1 addition & 1 deletion cmake/CTestCustom.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ list(APPEND CTEST_CUSTOM_COVERAGE_EXCLUDE

".*/third_party/.*"

".*/test/.*"
".*/doc/.*"

".*/benchmark/.*"

Expand Down
3 changes: 2 additions & 1 deletion codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ coverage:
threshold: 2
base: auto
ignore:
- "**/test/"
- "examples"
- "benchmark"
1 change: 1 addition & 0 deletions core/log/logger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,6 @@ constexpr Logger::mask_type Logger::criterion_check_completed_mask;

constexpr Logger::mask_type Logger::iteration_complete_mask;


} // namespace log
} // namespace gko
4 changes: 0 additions & 4 deletions core/log/papi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,6 @@ namespace gko {
namespace log {


template <typename ValueType>
size_type Papi<ValueType>::logger_count = 0;


template <typename ValueType>
void Papi<ValueType>::on_allocation_started(const Executor *exec,
const size_type &num_bytes) const
Expand Down
Loading