mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
See if this makes the MPC test more reliable on MacOS
This commit is contained in:
parent
c89bf6b77a
commit
5291d58e93
8
.github/workflows/build_cmake.yml
vendored
8
.github/workflows/build_cmake.yml
vendored
@ -29,7 +29,13 @@ jobs:
|
||||
|
||||
- name: Build just tests
|
||||
working-directory: ${{ github.workspace }}/dlib/test
|
||||
run: cmake --build ${{ env.build_dir }} --config ${{ env.config }} --target dtest --parallel 4
|
||||
run: |
|
||||
if [ "$RUNNER_OS" == "macOS" ]; then
|
||||
# MacOS machines often come with low quality BLAS libraries installed, so don't use those.
|
||||
cmake --build ${{ env.build_dir }} --config ${{ env.config }} --target dtest --parallel 4 -DDLIB_USE_BLAS=0 -DDLIB_USE_LAPACK=0
|
||||
else
|
||||
cmake --build ${{ env.build_dir }} --config ${{ env.config }} --target dtest --parallel 4
|
||||
fi;
|
||||
|
||||
- name: Test
|
||||
working-directory: ${{ github.workspace }}/dlib/test/${{ env.build_dir }}
|
||||
|
@ -403,7 +403,7 @@ namespace
|
||||
dlog << LINFO << trans(alpha2);
|
||||
dlog << LINFO << "objective value: " << 0.5*trans(alpha)*Q*alpha + trans(b)*alpha;
|
||||
dlog << LINFO << "objective value2: " << 0.5*trans(alpha2)*Q*alpha + trans(b)*alpha2;
|
||||
DLIB_TEST_MSG(max(abs(alpha-alpha2)) < 1e-6, max(abs(alpha-alpha2)));
|
||||
DLIB_TEST_MSG(max(abs(alpha-alpha2)) < 1e-7, max(abs(alpha-alpha2)));
|
||||
}
|
||||
|
||||
test_with_positive_target_error_thresh();
|
||||
|
Loading…
Reference in New Issue
Block a user