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 to NSUITE v0.8.1 #114

Open
wants to merge 27 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
9acd813
Pull up to arbor 0.6.
thorstenhater Mar 3, 2022
46c4e9f
add booster, bump arbor
thorstenhater Mar 16, 2022
dcb3e4c
Bump Arbor, add jwb.
thorstenhater Mar 16, 2022
c64a039
Merge.
thorstenhater Mar 16, 2022
d5529d8
Add CI.
thorstenhater Mar 16, 2022
e32658a
Update main.yml
thorstenhater Mar 21, 2022
5e48cdd
Update main.yml
thorstenhater Mar 21, 2022
295390a
Update main.yml
thorstenhater Mar 21, 2022
3e3174c
Update main.yml
thorstenhater Mar 21, 2022
33d5a7d
Update main.yml
thorstenhater Mar 21, 2022
a1185cd
Update main.yml
thorstenhater Mar 21, 2022
ff71329
Drop CUDA.
thorstenhater Mar 21, 2022
69161a6
Merge remote-tracking branch 'origin/master'
thorstenhater Mar 21, 2022
43a1dbd
Do not validate. Ever.
thorstenhater Mar 21, 2022
b89ddf0
Remove debug.
thorstenhater Mar 21, 2022
2a1969d
Fix review comment: export CC/CXX.
thorstenhater Apr 27, 2022
0f65be5
Bump to 0.7pre.
thorstenhater Jun 25, 2022
ca977fa
Driver spikes 1/ms.
thorstenhater Aug 9, 2022
3265ae2
Clean-up.
thorstenhater Aug 9, 2022
63e4a3b
Clean-up.
thorstenhater Aug 9, 2022
480547e
Tweak spiking patterns.
thorstenhater Aug 30, 2022
a40b5a1
Toggle spike recording.
thorstenhater Sep 1, 2022
ab1bc51
Tweaking the weight again.
thorstenhater Sep 1, 2022
9582e3d
Bump spikes to 702/200ms/ring.
thorstenhater Sep 29, 2022
454e8d5
Dont recorded spikes if not asked.
thorstenhater Sep 29, 2022
26a8903
Fix up for v0.8.1. Use voltage_cell probe, validation fails.
thorstenhater Apr 26, 2024
779a8fb
Fix up for v0.8.1. Use old probe style, all pass.
thorstenhater Apr 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
45 changes: 45 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Test

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
testallconfigs:
name: "Tests across OSes, versions, compilers, and build configs."
runs-on: ${{ matrix.config.os }}
strategy:
matrix:
config:
- {
name: "Linux Min GCC",
os: "ubuntu-20.04",
cc: "gcc-10",
cxx: "g++-10",
cmake: "3.22.x",
}
env:
CC: ${{ matrix.config.cc }}
CXX: ${{ matrix.config.cxx }}
steps:
- name: "Linux: get clang/gcc, libxml2"
if: ${{ startsWith(matrix.config.os, 'ubuntu') }}
run: |
sudo apt-get update
sudo apt-get install -y g++-10
- name: Set up CMake
uses: jwlawson/[email protected]
with:
cmake-version: ${{ matrix.config.cmake }}
- name: Clone
uses: actions/checkout@v2
with:
submodules: recursive
- name: Install
run: |
./install-local.sh arbor --env=systems/gh.sh
- name: Run
run: |
./run-bench.sh arbor --config=small
2 changes: 2 additions & 0 deletions benchmarks/engines/busyring/arbor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ set (CMAKE_CXX_STANDARD 17)
find_package(arbor REQUIRED)

add_executable(ring ring.cpp)
target_link_libraries(ring PRIVATE ${CUDA_LIBRARIES})
target_link_libraries(ring PRIVATE arbor::arbor arbor::arborenv)

target_include_directories(ring PRIVATE ../../../../common/cpp/include)

set_target_properties(ring PROPERTIES OUTPUT_NAME arbor-busyring)
Expand Down
2 changes: 2 additions & 0 deletions benchmarks/engines/busyring/arbor/parameters.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ struct ring_params {
double duration = 100;
double dt = 0.025;
bool record_voltage = false;
bool record_spikes = true;
std::string odir = ".";
cell_parameters cell;
};
Expand Down Expand Up @@ -77,6 +78,7 @@ ring_params read_options(int argc, char** argv) {
param_from_json(params.dt, "dt", json);
param_from_json(params.min_delay, "min-delay", json);
param_from_json(params.record_voltage, "record", json);
param_from_json(params.record_spikes, "spikes", json);
param_from_json(params.cell.complex_cell, "complex", json);
param_from_json(params.cell.max_depth, "depth", json);
param_from_json(params.cell.branch_probs, "branch-probs", json);
Expand Down
Loading