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

Replace deleted elements at addition #418

Merged
merged 28 commits into from
Jan 12, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
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
Prev Previous commit
Next Next commit
Add timeout to jobs in actions
  • Loading branch information
Dmitry Yashunin committed Nov 26, 2022
commit 270b2370679d97cdbf884548f8dcdedbcdae5ce1
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
run: python -m pip install .

- name: Test
timeout-minutes: 15
run: python -m unittest discover -v --start-directory python_bindings/tests --pattern "*_test*.py"

test_cpp:
Expand Down Expand Up @@ -52,6 +53,7 @@ jobs:
shell: bash

- name: Test
timeout-minutes: 15
run: |
cd build
if [ "$RUNNER_OS" == "Windows" ]; then
Expand Down
5 changes: 4 additions & 1 deletion examples/multiThreadLoad_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@
#include <thread>

int main() {

std::cout << "Running multithread load test" << std::endl;
int d = 16;
int max_elements = 100;
int max_elements = 1000;

std::mt19937 rng;
rng.seed(47);
Expand Down Expand Up @@ -49,5 +51,6 @@ int main() {
start_id += num_ids;
}

std::cout << "Finish" << std::endl;
return 0;
}