Skip to content

Implemented func to get CUDA memory usage, implemented automatic,nonGUI version of MPI connection memory tests #110

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

Open
wants to merge 17 commits into
base: nest-gpu-2.0-dev-mpi
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
0285035
Implementing templates for connection structures
golosio Dec 29, 2023
2c047f8
Merge branch 'improve-2.0-dev-mpi' of https://github.com/golosio/nest…
golosio Dec 29, 2023
7231b27
Implemented abstract Connection class and template ConnectionTemplate…
golosio Jan 5, 2024
7b13b9b
Implementing 16 bit connections, with type conn16b_key (8 bytes) and …
golosio Jan 6, 2024
410d887
Implemented 16 bit connections, with type conn16b_key (8 bytes) and s…
golosio Jan 6, 2024
04acb39
Fixed bug in conn16b_struct connection structure type
golosio Jan 8, 2024
71569af
Implemented function to get CUDA memory usage of each MPI process, pe…
golosio Jan 12, 2024
06cd98c
Reduced memory overhead in remote connection structures creation on s…
golosio Jan 18, 2024
28d197b
Merged changes from nestgpu-2.0-dev-mpi branch
golosio Jan 19, 2024
d3a7ced
Formatted source c++/cuda files with clang-format. Checked with clang…
golosio Jan 21, 2024
a08be29
Improved clang-tidy-cuda.sh and check_all_c_c++_cu_files.sh scripts t…
golosio Jan 21, 2024
d906fb4
created folder build_support with scripts to format all c/c++/cuda fi…
golosio Jan 22, 2024
22b4a78
Introduced count of files changed by recursive clang-format
golosio Jan 23, 2024
e460f2c
Fixed test_16b.py so that it can work no matter what the default choi…
golosio Jan 25, 2024
783057c
Implemented summary.sh script to extract and summarize results of MPI…
golosio Jan 26, 2024
f2b4211
Fixed order of initialization of connection class parameters dependin…
golosio Jan 26, 2024
513d405
Fixed small bug in script benchmark_terminal.sh
golosio Jan 26, 2024
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
Fixed small bug in script benchmark_terminal.sh
  • Loading branch information
golosio committed Jan 26, 2024
commit 513d405e3f9eb1d18b6a3c86b9500e6649d58dfc
2 changes: 1 addition & 1 deletion python/mpi_mem_check/benchmark_terminal.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

for T in 0 1; do
for P in $(cat n_mpi_list.txt); do
for N in 1$(cat n_neuron_list.txt); do
for N in $(cat n_neuron_list.txt); do
R=0
id=P$P-N$N-R$R
for iP in $(seq 0 $(($P-1))); do
Expand Down