url stringlengths 64 66 | repository_url stringclasses 1
value | labels_url stringlengths 78 80 | comments_url stringlengths 73 75 | events_url stringlengths 71 73 | html_url stringlengths 53 56 | id int64 645M 2.96B | node_id stringlengths 18 32 | number int64 1 824 | title stringlengths 8 182 | user dict | labels listlengths 0 11 | state stringclasses 2
values | locked bool 1
class | assignee dict | assignees listlengths 0 3 | milestone dict | comments listlengths 0 21 | created_at timestamp[s]date 2012-12-06 15:26:13 2025-03-31 22:38:34 | updated_at timestamp[s]date 2020-07-09 00:33:00 2025-04-03 22:45:00 | closed_at timestamp[s]date 2020-07-02 21:30:37 2025-04-03 01:09:16 ⌀ | author_association stringclasses 4
values | type null | sub_issues_summary dict | active_lock_reason null | body stringlengths 0 5.97k ⌀ | closed_by dict | reactions dict | timeline_url stringlengths 73 75 | performed_via_github_app null | state_reason stringclasses 2
values | draft bool 2
classes | pull_request dict | is_pull_request bool 2
classes |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/824 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/824/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/824/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/824/events | https://github.com/UWB-Biocomputing/Graphitti/issues/824 | 2,961,730,788 | I_kwDOEEdqD86wiGzk | 824 | Introduce ChainManager for Ordered GPU Operation Execution (copyToGPU, copyFromGPU, deallocateGPUMemory) | {
"login": "BenYang2002",
"id": 96927991,
"node_id": "U_kgDOBccA9w",
"avatar_url": "https://avatars.githubusercontent.com/u/96927991?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/BenYang2002",
"html_url": "https://github.com/BenYang2002",
"followers_url": "https://api.github.com/users/BenYang2002/followers",
"following_url": "https://api.github.com/users/BenYang2002/following{/other_user}",
"gists_url": "https://api.github.com/users/BenYang2002/gists{/gist_id}",
"starred_url": "https://api.github.com/users/BenYang2002/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/BenYang2002/subscriptions",
"organizations_url": "https://api.github.com/users/BenYang2002/orgs",
"repos_url": "https://api.github.com/users/BenYang2002/repos",
"events_url": "https://api.github.com/users/BenYang2002/events{/privacy}",
"received_events_url": "https://api.github.com/users/BenYang2002/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 5995832092,
"node_id": "LA_kwDOEEdqD88AAAABZWEjHA",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/undergrad-capstone",
"name": "undergrad-capstone",
"color": "CE417E",
"default": false,
"description": ""
},
{
"id": 6915521197,
"node_id": "LA_k... | open | false | {
"login": "BenYang2002",
"id": 96927991,
"node_id": "U_kgDOBccA9w",
"avatar_url": "https://avatars.githubusercontent.com/u/96927991?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/BenYang2002",
"html_url": "https://github.com/BenYang2002",
"followers_url": "https://api.github.com/users/BenYang2002/followers",
"following_url": "https://api.github.com/users/BenYang2002/following{/other_user}",
"gists_url": "https://api.github.com/users/BenYang2002/gists{/gist_id}",
"starred_url": "https://api.github.com/users/BenYang2002/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/BenYang2002/subscriptions",
"organizations_url": "https://api.github.com/users/BenYang2002/orgs",
"repos_url": "https://api.github.com/users/BenYang2002/repos",
"events_url": "https://api.github.com/users/BenYang2002/events{/privacy}",
"received_events_url": "https://api.github.com/users/BenYang2002/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "BenYang2002",
"id": 96927991,
"node_id": "U_kgDOBccA9w",
"avatar_url": "https://avatars.githubusercontent.com/u/96927991?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/BenYang2002",
"html_url": "https://github.com/BenYang2002",
"followers_url": "https://api... | null | [] | 2025-03-31T22:38:34 | 2025-03-31T22:38:34 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Currently, GPU-related operations such as copyToGPU, copyFromGPU, and deallocateGPUMemory are implemented using hardcoded procedural chains, mixing memory allocation, data transfer, and initialization logic within monolithic methods like GPUModel::allocDeviceStruct().
This makes the codebase harder to extend, test, and maintain as new components and GPU resources are added.
Although OperationManager is used elsewhere to dispatch operations, it is designed for parallel, decoupled callbacks, not ordered, interdependent execution. Therefore, introducing a new ChainManager class to manage sequenced GPU operations would improve modularity and clarity.
Proposed Tasks:
Design a base GPUOperation interface for chainable GPU tasks
Implement reusable operation steps for memory allocation, data transfer, and cleanup
Allow composition of these steps into ordered execution chains
Replace hardcoded sequences in GPUModel with ChainManager-based chains | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/824/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/824/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/823 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/823/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/823/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/823/events | https://github.com/UWB-Biocomputing/Graphitti/pull/823 | 2,942,252,215 | PR_kwDOEEdqD86P0Uug | 823 | Recorder Updates for Neuro and NG911 | {
"login": "zshaikh5",
"id": 129341293,
"node_id": "U_kgDOB7WXbQ",
"avatar_url": "https://avatars.githubusercontent.com/u/129341293?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zshaikh5",
"html_url": "https://github.com/zshaikh5",
"followers_url": "https://api.github.com/users/zshaikh5/followers",
"following_url": "https://api.github.com/users/zshaikh5/following{/other_user}",
"gists_url": "https://api.github.com/users/zshaikh5/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zshaikh5/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zshaikh5/subscriptions",
"organizations_url": "https://api.github.com/users/zshaikh5/orgs",
"repos_url": "https://api.github.com/users/zshaikh5/repos",
"events_url": "https://api.github.com/users/zshaikh5/events{/privacy}",
"received_events_url": "https://api.github.com/users/zshaikh5/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | open | false | null | [] | null | [] | 2025-03-24T07:20:30 | 2025-03-26T23:51:34 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #722
Closes #719
Closes #574
<!-- Please provide a brief overview of the changes implemented -->
#### Description
This expands the set of variables recorded by including additional ones, providing a wider range of the data captured. Additionally, it removes the dependency on XML911Recorder by using the recorders instead.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [ ] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/823/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/823/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/823",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/823",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/823.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/823.patch",
"merged_at": null
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/822 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/822/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/822/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/822/events | https://github.com/UWB-Biocomputing/Graphitti/issues/822 | 2,939,724,978 | I_kwDOEEdqD86vOKSy | 822 | Move from vector of structs in 911 connection class to separate vectors | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2911226130,
"node_id": "MDU6TGFiZWwyOTExMjI2MTMw",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/refactor",
"name": "refactor",
"color": "d4c5f9",
"default": false,
"description": "doesn't change functionality, just improves code"
},
{
"id": 30922... | open | false | null | [] | null | [] | 2025-03-21T23:18:34 | 2025-03-21T23:18:34 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Not only is this awkward from the point of view of GPU code, it also makes it difficult to record these variables (without adding custom code to the Recorder classes for every struct we make a vector of). So, we should stick to data members that are vectors (actually `RecorderableVector`) of primitive types.
https://github.com/UWB-Biocomputing/Graphitti/blob/004f58ccb6e19bf41ae2f1fe9d2eea53e7879144/Simulator/Connections/NG911/Connections911.h#L60-L65 | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/822/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/822/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/821 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/821/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/821/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/821/events | https://github.com/UWB-Biocomputing/Graphitti/issues/821 | 2,936,213,984 | I_kwDOEEdqD86vAxHg | 821 | Add in registerHistoryVariables to OperationManager | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 6915521197,
"node_id": "LA_kwDOEEdqD88AAAABnDJ6rQ",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/Operations%20Manager",
"name": "Operations Manager",
"color": "CA248C",
"default": false,
"description": "Replacing spaghetti with chain of command"
}
] | open | false | null | [] | null | [] | 2025-03-20T17:37:46 | 2025-03-20T17:37:46 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Will replace explicit class-by-class calls in `Core.cpp`:
https://github.com/UWB-Biocomputing/Graphitti/blob/62ad162a8472397f2a5436f0a9a52da23c4f2f7b/Simulator/Core/Core.cpp#L193-L194 | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/821/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/821/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/820 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/820/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/820/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/820/events | https://github.com/UWB-Biocomputing/Graphitti/pull/820 | 2,922,947,759 | PR_kwDOEEdqD86O0LpQ | 820 | [ISSUE-734] Add full graph for STDP simulations | {
"login": "jasleenksaini",
"id": 129341344,
"node_id": "U_kgDOB7WXoA",
"avatar_url": "https://avatars.githubusercontent.com/u/129341344?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jasleenksaini",
"html_url": "https://github.com/jasleenksaini",
"followers_url": "https://api.github.com/users/jasleenksaini/followers",
"following_url": "https://api.github.com/users/jasleenksaini/following{/other_user}",
"gists_url": "https://api.github.com/users/jasleenksaini/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jasleenksaini/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jasleenksaini/subscriptions",
"organizations_url": "https://api.github.com/users/jasleenksaini/orgs",
"repos_url": "https://api.github.com/users/jasleenksaini/repos",
"events_url": "https://api.github.com/users/jasleenksaini/events{/privacy}",
"received_events_url": "https://api.github.com/users/jasleenksaini/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | {
"login": "jasleenksaini",
"id": 129341344,
"node_id": "U_kgDOB7WXoA",
"avatar_url": "https://avatars.githubusercontent.com/u/129341344?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jasleenksaini",
"html_url": "https://github.com/jasleenksaini",
"followers_url": "https://api.github.com/users/jasleenksaini/followers",
"following_url": "https://api.github.com/users/jasleenksaini/following{/other_user}",
"gists_url": "https://api.github.com/users/jasleenksaini/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jasleenksaini/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jasleenksaini/subscriptions",
"organizations_url": "https://api.github.com/users/jasleenksaini/orgs",
"repos_url": "https://api.github.com/users/jasleenksaini/repos",
"events_url": "https://api.github.com/users/jasleenksaini/events{/privacy}",
"received_events_url": "https://api.github.com/users/jasleenksaini/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "jasleenksaini",
"id": 129341344,
"node_id": "U_kgDOB7WXoA",
"avatar_url": "https://avatars.githubusercontent.com/u/129341344?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jasleenksaini",
"html_url": "https://github.com/jasleenksaini",
"followers_url": "htt... | null | [] | 2025-03-16T10:57:37 | 2025-03-19T20:53:30 | 2025-03-19T20:53:22 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #734
<!-- Please provide a brief overview of the changes implemented -->
#### Description
Add source, target and weighted connections for STDP simulations from graphml files. Create NeuralEdgeProperties struct for connections data and implement Connstatic code. Update documentation for GraphManager class and update test-tiny.graphml for STDP testing.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [x] Added Documentation
- [x] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "jasleenksaini",
"id": 129341344,
"node_id": "U_kgDOB7WXoA",
"avatar_url": "https://avatars.githubusercontent.com/u/129341344?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jasleenksaini",
"html_url": "https://github.com/jasleenksaini",
"followers_url": "https://api.github.com/users/jasleenksaini/followers",
"following_url": "https://api.github.com/users/jasleenksaini/following{/other_user}",
"gists_url": "https://api.github.com/users/jasleenksaini/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jasleenksaini/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jasleenksaini/subscriptions",
"organizations_url": "https://api.github.com/users/jasleenksaini/orgs",
"repos_url": "https://api.github.com/users/jasleenksaini/repos",
"events_url": "https://api.github.com/users/jasleenksaini/events{/privacy}",
"received_events_url": "https://api.github.com/users/jasleenksaini/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/820/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/820/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/820",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/820",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/820.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/820.patch",
"merged_at": "2025-03-19T20:53:22"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/819 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/819/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/819/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/819/events | https://github.com/UWB-Biocomputing/Graphitti/issues/819 | 2,920,742,422 | I_kwDOEEdqD86uFv4W | 819 | Something about serialization/deserialization is broken | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423149,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTQ5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/bug",
"name": "bug",
"color": "d73a4a",
"default": true,
"description": "Something isn't working"
},
{
"id": 3524965898,
"node_id": "LA_kwDOEEdqD8... | open | false | null | [] | null | [
"Note that in v0.9.3, which only serializes the synapse information, we are able to deserialize working synapses.",
"The serialization file outputs the `AllEdges.destinationVertices` vector as all zeros. I wrote a hack to output the `destVertexIndex_` vector in `AllSynapsesDeviceFuncs_d.cpp` at the end of a simul... | 2025-03-14T16:40:08 | 2025-03-24T16:48:24 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | We (@varndorfer and @stiber) are pretty sure that deserialized synapses don't work. In a growth continuation of one of the large growth simulations, only the endogenously active neurons appear to be spiking. | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/819/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/819/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/818 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/818/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/818/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/818/events | https://github.com/UWB-Biocomputing/Graphitti/issues/818 | 2,917,543,191 | I_kwDOEEdqD86t5i0X | 818 | Add NeuroVertexProperties tests to GraphManagerTests.cpp | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 4080571584,
"node_id": "LA_kwDOEEdqD87zOJTA",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/testing",
"name": "testing",
"color": "C3C92B",
"default": false,
"description": ""
}
] | open | false | null | [] | null | [] | 2025-03-13T15:17:09 | 2025-03-13T15:17:09 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | null | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/818/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/818/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/817 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/817/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/817/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/817/events | https://github.com/UWB-Biocomputing/Graphitti/pull/817 | 2,912,756,049 | PR_kwDOEEdqD86OR_2K | 817 | [ISSUE-648] GraphManager Final Update | {
"login": "jasleenksaini",
"id": 129341344,
"node_id": "U_kgDOB7WXoA",
"avatar_url": "https://avatars.githubusercontent.com/u/129341344?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jasleenksaini",
"html_url": "https://github.com/jasleenksaini",
"followers_url": "https://api.github.com/users/jasleenksaini/followers",
"following_url": "https://api.github.com/users/jasleenksaini/following{/other_user}",
"gists_url": "https://api.github.com/users/jasleenksaini/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jasleenksaini/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jasleenksaini/subscriptions",
"organizations_url": "https://api.github.com/users/jasleenksaini/orgs",
"repos_url": "https://api.github.com/users/jasleenksaini/repos",
"events_url": "https://api.github.com/users/jasleenksaini/events{/privacy}",
"received_events_url": "https://api.github.com/users/jasleenksaini/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | null | [] | null | [] | 2025-03-12T05:46:24 | 2025-03-14T22:05:29 | 2025-03-14T22:05:14 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #648
<!-- Please provide a brief overview of the changes implemented -->
#### Description
Created new personal development branch (KaurSainiDevelopment) to merge conflicting updates into SharedDevelopment. The GraphManager class needs to be modified to support different property structs for specific application domains. This enhancement will involve templating the class and adding inheritance to the VertexProperties.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [x] Added Documentation
- [x] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "jasleenksaini",
"id": 129341344,
"node_id": "U_kgDOB7WXoA",
"avatar_url": "https://avatars.githubusercontent.com/u/129341344?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jasleenksaini",
"html_url": "https://github.com/jasleenksaini",
"followers_url": "https://api.github.com/users/jasleenksaini/followers",
"following_url": "https://api.github.com/users/jasleenksaini/following{/other_user}",
"gists_url": "https://api.github.com/users/jasleenksaini/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jasleenksaini/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jasleenksaini/subscriptions",
"organizations_url": "https://api.github.com/users/jasleenksaini/orgs",
"repos_url": "https://api.github.com/users/jasleenksaini/repos",
"events_url": "https://api.github.com/users/jasleenksaini/events{/privacy}",
"received_events_url": "https://api.github.com/users/jasleenksaini/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/817/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/817/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/817",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/817",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/817.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/817.patch",
"merged_at": "2025-03-14T22:05:14"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/816 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/816/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/816/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/816/events | https://github.com/UWB-Biocomputing/Graphitti/pull/816 | 2,912,205,296 | PR_kwDOEEdqD86OQLoB | 816 | [ISSUE 386] Check for local log4cplus file in Home Directory. | {
"login": "PadPatil",
"id": 56707394,
"node_id": "MDQ6VXNlcjU2NzA3Mzk0",
"avatar_url": "https://avatars.githubusercontent.com/u/56707394?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/PadPatil",
"html_url": "https://github.com/PadPatil",
"followers_url": "https://api.github.com/users/PadPatil/followers",
"following_url": "https://api.github.com/users/PadPatil/following{/other_user}",
"gists_url": "https://api.github.com/users/PadPatil/gists{/gist_id}",
"starred_url": "https://api.github.com/users/PadPatil/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/PadPatil/subscriptions",
"organizations_url": "https://api.github.com/users/PadPatil/orgs",
"repos_url": "https://api.github.com/users/PadPatil/repos",
"events_url": "https://api.github.com/users/PadPatil/events{/privacy}",
"received_events_url": "https://api.github.com/users/PadPatil/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423158,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTU4",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/good%20first%20issue",
"name": "good first issue",
"color": "7057ff",
"default": true,
"description": "Good for newcomers"
},
{
"id": 5995832092,
... | closed | false | {
"login": "PadPatil",
"id": 56707394,
"node_id": "MDQ6VXNlcjU2NzA3Mzk0",
"avatar_url": "https://avatars.githubusercontent.com/u/56707394?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/PadPatil",
"html_url": "https://github.com/PadPatil",
"followers_url": "https://api.github.com/users/PadPatil/followers",
"following_url": "https://api.github.com/users/PadPatil/following{/other_user}",
"gists_url": "https://api.github.com/users/PadPatil/gists{/gist_id}",
"starred_url": "https://api.github.com/users/PadPatil/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/PadPatil/subscriptions",
"organizations_url": "https://api.github.com/users/PadPatil/orgs",
"repos_url": "https://api.github.com/users/PadPatil/repos",
"events_url": "https://api.github.com/users/PadPatil/events{/privacy}",
"received_events_url": "https://api.github.com/users/PadPatil/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "PadPatil",
"id": 56707394,
"node_id": "MDQ6VXNlcjU2NzA3Mzk0",
"avatar_url": "https://avatars.githubusercontent.com/u/56707394?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/PadPatil",
"html_url": "https://github.com/PadPatil",
"followers_url": "https://api.... | null | [] | 2025-03-12T00:24:35 | 2025-04-03T01:09:17 | 2025-04-03T01:09:16 | NONE | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #386
<!-- Please provide a brief overview of the changes implemented -->
#### Description
This will check for the user's home directory for an existing log4cplus file and it will configure it. Otherwise, the existing RuntimeFiles log4cplus file will be configured.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [ ] Added Documentation
- [ ] Added Unit Tests
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "PadPatil",
"id": 56707394,
"node_id": "MDQ6VXNlcjU2NzA3Mzk0",
"avatar_url": "https://avatars.githubusercontent.com/u/56707394?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/PadPatil",
"html_url": "https://github.com/PadPatil",
"followers_url": "https://api.github.com/users/PadPatil/followers",
"following_url": "https://api.github.com/users/PadPatil/following{/other_user}",
"gists_url": "https://api.github.com/users/PadPatil/gists{/gist_id}",
"starred_url": "https://api.github.com/users/PadPatil/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/PadPatil/subscriptions",
"organizations_url": "https://api.github.com/users/PadPatil/orgs",
"repos_url": "https://api.github.com/users/PadPatil/repos",
"events_url": "https://api.github.com/users/PadPatil/events{/privacy}",
"received_events_url": "https://api.github.com/users/PadPatil/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/816/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/816/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/816",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/816",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/816.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/816.patch",
"merged_at": "2025-04-03T01:09:16"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/815 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/815/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/815/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/815/events | https://github.com/UWB-Biocomputing/Graphitti/issues/815 | 2,908,726,100 | I_kwDOEEdqD86tX6NU | 815 | Generate random numbers asynchronously on the GPU | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2159406989,
"node_id": "MDU6TGFiZWwyMTU5NDA2OTg5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/GPU",
"name": "GPU",
"color": "009800",
"default": false,
"description": ""
},
{
"id": 2159510120,
"node_id": "MDU6TGFiZWwyMTU5NTEwMTIw",
"url... | open | false | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_u... | null | [] | 2025-03-11T00:32:35 | 2025-03-11T00:32:35 | null | NONE | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | ggraphitti's current random number generation system consists of a series of C function calls, with RandomNormGPU as the kernel that is repeatedly invoked after the initial setup. This approach generates only a small number of random numbers per call, resulting in low GPU occupancy and frequent kernel launches. My plan is to introduce a dedicated class that generates random numbers asynchronously and in larger batches, improving GPU utilization while also enhancing encapsulation and modularity. | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/815/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/815/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/814 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/814/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/814/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/814/events | https://github.com/UWB-Biocomputing/Graphitti/pull/814 | 2,902,038,759 | PR_kwDOEEdqD86Nubbj | 814 | Merge PoseyDevelopment into SharedDevelopment | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2911226130,
"node_id": "MDU6TGFiZWwyOTExMjI2MTMw",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/refactor",
"name": "refactor",
"color": "d4c5f9",
"default": false,
"description": "doesn't change functionality, just improves code"
},
{
"id": 30922... | closed | false | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url"... | null | [
"@stiber changes are mostly the same as the two PRs that we reviewed. Had a merge conflict with a change Diva made to fix a seg fault that I resolved, but it doesn't look like it's in the list of changes. One weird thing I noticed was that Raiju is causing some of the GPU regression tests to fail while Otachi is no... | 2025-03-07T05:20:51 | 2025-03-13T23:50:55 | 2025-03-13T23:46:37 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #786 #806
<!-- Please provide a brief overview of the changes implemented -->
#### Description
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [ ] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/814/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/814/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/814",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/814",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/814.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/814.patch",
"merged_at": "2025-03-13T23:46:37"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/813 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/813/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/813/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/813/events | https://github.com/UWB-Biocomputing/Graphitti/pull/813 | 2,901,786,846 | PR_kwDOEEdqD86NtmMP | 813 | [ISSUE-783][ISSUE-773][ISSUE-319] Validation Mode and Cleanup | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_u... | null | [] | 2025-03-07T01:39:09 | 2025-03-12T23:20:24 | 2025-03-12T23:20:23 | NONE | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #783
Closes #773
Closes #319
<!-- Please provide a brief overview of the changes implemented -->
#### Description
This PR replaces and continues work from #794
Continues from work on #794:
CMAKE build types cleaned up in cmakelists
```
# Build Type Configuration
#
# CMake support for different build types controlling optimization, debugging and profiling:
#
# - Debug : No optimizations (`-O0`), includes debug symbols (`-g`).
# - Release : Optimized build (`-O3`), removes debug symbols.
# - RelWithDebInfo: Optimized (`-O2`) but keeps debug symbols (`-g`) for profiling.
# - Profiling : Custom build type (defined in this project) that enables:
# - CPU profiling via `-pg` (GPROF)
# - CUDA profiling via `-lineinfo` (for Nsight Compute)
#
# Selecting a Build Type:
# - By default, CMake does NOT set a build type for single-config generators.
# - If no build type is specified, this script defaults to "Release" for performance.
# - You can explicitly set the build type when configuring CMake:
#
# cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug # Debug mode
# cmake -S . -B build -DCMAKE_BUILD_TYPE=Release # Release mode
# cmake -S . -B build -DCMAKE_BUILD_TYPE=Profiling # Profiling mode
#
# If you don't want to pass in the build type flag, you can edit this file and add...
# set(CMAKE_BUILD_TYPE "Debug") or whichever build type you want
# -----------------------------------------------------------------------------
```
Additionally, added a new conditional flag to change the target architecture for cuda compilation.
```
#CONDITIONAL FLAG to change target architecture for the GPU simulator from the default
#
#You can pass this flag when running cmake from the command line like this, setting TARGET_ARCH \
# to your desired architecture: \
#
#cmake -D ENABLE_CUDA=YES -D TARGET_ARCH=70 ..
#
#"YES" / GPU choice only available if CUDA library is installed and the GPU is CUDA capable.
#If no TARGET_ARCH is passed in then it will default to 37 which is the kepler architecture
```
Quickstart guide, StudentSetup, and codingConventions documentation was updated.
Added support for nvtx profiling tools. The profiling build option will enable this if the nvtx libraries are present.
About the comment in #794 about the build.sh file added to the .gitignore [here](https://github.com/UWB-Biocomputing/Graphitti/pull/794#discussion_r1956908137): I have created a build.sh file with the intention in mind to create a simple build script with machine specific build and compile flags that eliminate the need to retype every conditional flag every time I do a cmake. Others who wish to run graphitti on their own machine can follow similarly, but since it is changed regularly to test different build and compile options it shouldn't be tracked by git. For example in my build.sh:
```
set -e # Exit immediately if a command exits with a non-zero status
# You can allow a build type to be specified as an argument; default is 'Release'
BUILD_TYPE="${1:-Release}"
# Print result (for debugging)
echo "BUILD_TYPE: $BUILD_TYPE"
# Where to build (you can customize this directory)
BUILD_DIR="build"
# Clean up previous build artifacts if desired
# Invoke CMake with the desired flags
cmake -S . -B "${BUILD_DIR}" \
-DENABLE_CUDA=YES \
-DTARGET_ARCH=75 \
-DCMAKE_BUILD_TYPE="${BUILD_TYPE}"
# Now build. The "--build" command is cross-platform.
cmake --build "${BUILD_DIR}" -- -j$(nproc)
```
Implements the validation mode outlined in #319
There is a new conditional flag to turn on the validation mode
```
#CONDITIONAL FLAG to turn on the validation mode
if(NOT VALIDATION_MODE)
set(VALIDATION_MODE NO)
endif()
```
When validation mode is enabled, the MTRand on the host generates noise for each vertex every time the simulation advances. This noise is then copied to the randNoise_d buffer for use in the GPU’s advanceVertices kernel. As long as cgraphitti is also run in validation mode, the generated noise will match, ensuring that each vertex receives noise from MTRand in every advanceNeuron call, regardless of whether it is refractory or firing.
Noise is generated in reverse order, from the highest to lowest vertex, because advanceVertices processes neurons in that sequence. While it may be worth investigating whether advanceVertices should instead process vertices in their natural order, the validation mode remains functional after accounting for this behavior.
Validation mode collects and logs data on noise, Vm, summation points, and Inoise during each vertex update, saving the information to vertices.txt in the Debug output folder. However, this process is slow. The next step in validating the GPU and CPU algorithms is to analyze the exported data to identify the cause of slight deviations in simulation results.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [x] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/813/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/813/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/813",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/813",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/813.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/813.patch",
"merged_at": "2025-03-12T23:20:23"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/812 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/812/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/812/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/812/events | https://github.com/UWB-Biocomputing/Graphitti/issues/812 | 2,901,720,109 | I_kwDOEEdqD86s9Lwt | 812 | Use an LLM to aid in generating basic unit tests for all classes | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 4080571584,
"node_id": "LA_kwDOEEdqD87zOJTA",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/testing",
"name": "testing",
"color": "C3C92B",
"default": false,
"description": ""
},
{
"id": 5995832092,
"node_id": "LA_kwDOEEdqD88AAAABZWEjHA",
... | open | false | null | [] | null | [] | 2025-03-07T00:33:46 | 2025-03-07T00:33:46 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | An LLM should be able to generate unit tests that call the methods of a class with parameter values that reasonably cover interesting values (and then check object state and return values). This should be a reasonable start at a comprehensive unit test code base. A human will still need to check that the unit tests make sense. Afterwards, it will only be a small amount of coding to expand on those unit tests. | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/812/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/812/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/811 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/811/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/811/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/811/events | https://github.com/UWB-Biocomputing/Graphitti/pull/811 | 2,901,631,894 | PR_kwDOEEdqD86NtGNV | 811 | [ISSUE-791] Refactor neuronTypeToString() from Global.cpp | {
"login": "zshaikh5",
"id": 129341293,
"node_id": "U_kgDOB7WXbQ",
"avatar_url": "https://avatars.githubusercontent.com/u/129341293?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zshaikh5",
"html_url": "https://github.com/zshaikh5",
"followers_url": "https://api.github.com/users/zshaikh5/followers",
"following_url": "https://api.github.com/users/zshaikh5/following{/other_user}",
"gists_url": "https://api.github.com/users/zshaikh5/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zshaikh5/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zshaikh5/subscriptions",
"organizations_url": "https://api.github.com/users/zshaikh5/orgs",
"repos_url": "https://api.github.com/users/zshaikh5/repos",
"events_url": "https://api.github.com/users/zshaikh5/events{/privacy}",
"received_events_url": "https://api.github.com/users/zshaikh5/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | open | false | {
"login": "zshaikh5",
"id": 129341293,
"node_id": "U_kgDOB7WXbQ",
"avatar_url": "https://avatars.githubusercontent.com/u/129341293?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zshaikh5",
"html_url": "https://github.com/zshaikh5",
"followers_url": "https://api.github.com/users/zshaikh5/followers",
"following_url": "https://api.github.com/users/zshaikh5/following{/other_user}",
"gists_url": "https://api.github.com/users/zshaikh5/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zshaikh5/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zshaikh5/subscriptions",
"organizations_url": "https://api.github.com/users/zshaikh5/orgs",
"repos_url": "https://api.github.com/users/zshaikh5/repos",
"events_url": "https://api.github.com/users/zshaikh5/events{/privacy}",
"received_events_url": "https://api.github.com/users/zshaikh5/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "zshaikh5",
"id": 129341293,
"node_id": "U_kgDOB7WXbQ",
"avatar_url": "https://avatars.githubusercontent.com/u/129341293?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zshaikh5",
"html_url": "https://github.com/zshaikh5",
"followers_url": "https://api.github... | null | [] | 2025-03-06T23:17:15 | 2025-04-03T22:45:00 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #791
<!-- Please provide a brief overview of the changes implemented -->
#### Description
Move neuronTypeToString to AllVertices and rename to vertexTypeToString (utility function).
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [ ] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/811/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/811/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/811",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/811",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/811.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/811.patch",
"merged_at": null
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/810 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/810/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/810/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/810/events | https://github.com/UWB-Biocomputing/Graphitti/pull/810 | 2,899,900,023 | PR_kwDOEEdqD86NnNkk | 810 | [ISSUE 273] remove probed neuron | {
"login": "zshaikh5",
"id": 129341293,
"node_id": "U_kgDOB7WXbQ",
"avatar_url": "https://avatars.githubusercontent.com/u/129341293?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zshaikh5",
"html_url": "https://github.com/zshaikh5",
"followers_url": "https://api.github.com/users/zshaikh5/followers",
"following_url": "https://api.github.com/users/zshaikh5/following{/other_user}",
"gists_url": "https://api.github.com/users/zshaikh5/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zshaikh5/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zshaikh5/subscriptions",
"organizations_url": "https://api.github.com/users/zshaikh5/orgs",
"repos_url": "https://api.github.com/users/zshaikh5/repos",
"events_url": "https://api.github.com/users/zshaikh5/events{/privacy}",
"received_events_url": "https://api.github.com/users/zshaikh5/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | {
"login": "zshaikh5",
"id": 129341293,
"node_id": "U_kgDOB7WXbQ",
"avatar_url": "https://avatars.githubusercontent.com/u/129341293?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zshaikh5",
"html_url": "https://github.com/zshaikh5",
"followers_url": "https://api.github.com/users/zshaikh5/followers",
"following_url": "https://api.github.com/users/zshaikh5/following{/other_user}",
"gists_url": "https://api.github.com/users/zshaikh5/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zshaikh5/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zshaikh5/subscriptions",
"organizations_url": "https://api.github.com/users/zshaikh5/orgs",
"repos_url": "https://api.github.com/users/zshaikh5/repos",
"events_url": "https://api.github.com/users/zshaikh5/events{/privacy}",
"received_events_url": "https://api.github.com/users/zshaikh5/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "zshaikh5",
"id": 129341293,
"node_id": "U_kgDOB7WXbQ",
"avatar_url": "https://avatars.githubusercontent.com/u/129341293?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zshaikh5",
"html_url": "https://github.com/zshaikh5",
"followers_url": "https://api.github... | null | [] | 2025-03-06T09:47:24 | 2025-03-10T06:38:00 | 2025-03-10T06:37:16 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Closes #273
<!-- Please provide a brief overview of the changes implemented -->
#### Description
Removed the probed neuron/vertex list from all config files, as this code no longer exists.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [ ] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "zshaikh5",
"id": 129341293,
"node_id": "U_kgDOB7WXbQ",
"avatar_url": "https://avatars.githubusercontent.com/u/129341293?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zshaikh5",
"html_url": "https://github.com/zshaikh5",
"followers_url": "https://api.github.com/users/zshaikh5/followers",
"following_url": "https://api.github.com/users/zshaikh5/following{/other_user}",
"gists_url": "https://api.github.com/users/zshaikh5/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zshaikh5/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zshaikh5/subscriptions",
"organizations_url": "https://api.github.com/users/zshaikh5/orgs",
"repos_url": "https://api.github.com/users/zshaikh5/repos",
"events_url": "https://api.github.com/users/zshaikh5/events{/privacy}",
"received_events_url": "https://api.github.com/users/zshaikh5/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/810/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/810/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/810",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/810",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/810.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/810.patch",
"merged_at": "2025-03-10T06:37:16"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/809 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/809/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/809/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/809/events | https://github.com/UWB-Biocomputing/Graphitti/pull/809 | 2,899,043,169 | PR_kwDOEEdqD86NkUDJ | 809 | STDP Full Graph | {
"login": "jasleenksaini",
"id": 129341344,
"node_id": "U_kgDOB7WXoA",
"avatar_url": "https://avatars.githubusercontent.com/u/129341344?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jasleenksaini",
"html_url": "https://github.com/jasleenksaini",
"followers_url": "https://api.github.com/users/jasleenksaini/followers",
"following_url": "https://api.github.com/users/jasleenksaini/following{/other_user}",
"gists_url": "https://api.github.com/users/jasleenksaini/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jasleenksaini/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jasleenksaini/subscriptions",
"organizations_url": "https://api.github.com/users/jasleenksaini/orgs",
"repos_url": "https://api.github.com/users/jasleenksaini/repos",
"events_url": "https://api.github.com/users/jasleenksaini/events{/privacy}",
"received_events_url": "https://api.github.com/users/jasleenksaini/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | {
"login": "jasleenksaini",
"id": 129341344,
"node_id": "U_kgDOB7WXoA",
"avatar_url": "https://avatars.githubusercontent.com/u/129341344?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jasleenksaini",
"html_url": "https://github.com/jasleenksaini",
"followers_url": "https://api.github.com/users/jasleenksaini/followers",
"following_url": "https://api.github.com/users/jasleenksaini/following{/other_user}",
"gists_url": "https://api.github.com/users/jasleenksaini/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jasleenksaini/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jasleenksaini/subscriptions",
"organizations_url": "https://api.github.com/users/jasleenksaini/orgs",
"repos_url": "https://api.github.com/users/jasleenksaini/repos",
"events_url": "https://api.github.com/users/jasleenksaini/events{/privacy}",
"received_events_url": "https://api.github.com/users/jasleenksaini/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "jasleenksaini",
"id": 129341344,
"node_id": "U_kgDOB7WXoA",
"avatar_url": "https://avatars.githubusercontent.com/u/129341344?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jasleenksaini",
"html_url": "https://github.com/jasleenksaini",
"followers_url": "htt... | null | [] | 2025-03-06T01:32:21 | 2025-03-14T22:23:37 | 2025-03-14T22:23:36 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #648
Closes #734
<!-- Please provide a brief overview of the changes implemented -->
#### Description
Add in STDP ability to have connections with source, destination and weight. Update Global.h with NeuroEdgeProperties struct and ConnStatic code.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [x] Added Documentation
- [x] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "jasleenksaini",
"id": 129341344,
"node_id": "U_kgDOB7WXoA",
"avatar_url": "https://avatars.githubusercontent.com/u/129341344?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jasleenksaini",
"html_url": "https://github.com/jasleenksaini",
"followers_url": "https://api.github.com/users/jasleenksaini/followers",
"following_url": "https://api.github.com/users/jasleenksaini/following{/other_user}",
"gists_url": "https://api.github.com/users/jasleenksaini/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jasleenksaini/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jasleenksaini/subscriptions",
"organizations_url": "https://api.github.com/users/jasleenksaini/orgs",
"repos_url": "https://api.github.com/users/jasleenksaini/repos",
"events_url": "https://api.github.com/users/jasleenksaini/events{/privacy}",
"received_events_url": "https://api.github.com/users/jasleenksaini/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/809/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/809/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/809",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/809",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/809.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/809.patch",
"merged_at": null
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/808 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/808/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/808/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/808/events | https://github.com/UWB-Biocomputing/Graphitti/pull/808 | 2,895,414,246 | PR_kwDOEEdqD86NX5LN | 808 | [ISSUE 805] Fix Segmentation Fault in STDP Simulation After Deserialization of Large GPU-based Growth Simulation | {
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.github.com/users/d-kamath/followers",
"following_url": "https://api.github.com/users/d-kamath/following{/other_user}",
"gists_url": "https://api.github.com/users/d-kamath/gists{/gist_id}",
"starred_url": "https://api.github.com/users/d-kamath/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/d-kamath/subscriptions",
"organizations_url": "https://api.github.com/users/d-kamath/orgs",
"repos_url": "https://api.github.com/users/d-kamath/repos",
"events_url": "https://api.github.com/users/d-kamath/events{/privacy}",
"received_events_url": "https://api.github.com/users/d-kamath/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | {
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.github.com/users/d-kamath/followers",
"following_url": "https://api.github.com/users/d-kamath/following{/other_user}",
"gists_url": "https://api.github.com/users/d-kamath/gists{/gist_id}",
"starred_url": "https://api.github.com/users/d-kamath/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/d-kamath/subscriptions",
"organizations_url": "https://api.github.com/users/d-kamath/orgs",
"repos_url": "https://api.github.com/users/d-kamath/repos",
"events_url": "https://api.github.com/users/d-kamath/events{/privacy}",
"received_events_url": "https://api.github.com/users/d-kamath/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.... | null | [] | 2025-03-04T21:07:33 | 2025-03-07T04:16:21 | 2025-03-07T04:16:08 | COLLABORATOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #805
<!-- Please provide a brief overview of the changes implemented -->
#### Description
This pull request addresses a segmentation fault observed during the STDP simulation after deserializing a large, GPU-based growth simulation.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [ ] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
The simulation was tested using the following commands:
GPU-based simulation:
ggraphitti -g 1 -c ../configfiles/tR_1.0--fE_0.90_10000.xml -s Output/Results/tR_1.0--fE_0.90_10000_serialized.xml
CPU-based simulation:
cgraphitti -c ../configfiles/stdp_fE_0.90_10000.xml -d ./Output/Results/tR_1.0--fE_0.90_10000_serialized.xml
Both commands were successfully executed without encountering the segmentation fault after the proposed fixes were applied
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.github.com/users/d-kamath/followers",
"following_url": "https://api.github.com/users/d-kamath/following{/other_user}",
"gists_url": "https://api.github.com/users/d-kamath/gists{/gist_id}",
"starred_url": "https://api.github.com/users/d-kamath/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/d-kamath/subscriptions",
"organizations_url": "https://api.github.com/users/d-kamath/orgs",
"repos_url": "https://api.github.com/users/d-kamath/repos",
"events_url": "https://api.github.com/users/d-kamath/events{/privacy}",
"received_events_url": "https://api.github.com/users/d-kamath/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/808/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/808/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/808",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/808",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/808.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/808.patch",
"merged_at": "2025-03-07T04:16:08"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/807 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/807/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/807/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/807/events | https://github.com/UWB-Biocomputing/Graphitti/pull/807 | 2,890,102,701 | PR_kwDOEEdqD86NF1ap | 807 | [issue-806] Implement integrateVertexInputs in All911Vertices | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2911226130,
"node_id": "MDU6TGFiZWwyOTExMjI2MTMw",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/refactor",
"name": "refactor",
"color": "d4c5f9",
"default": false,
"description": "doesn't change functionality, just improves code"
},
{
"id": 30922... | closed | false | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url"... | null | [
"@stiber based on the edge state not being updated until after we know that we need to transfer the call to the vertex, I think it's reasonable for all of the current advanceEdges implementation to be moved into integrateVertexInput. Lets discuss this PR at our 1:1 later this week."
] | 2025-03-03T04:00:41 | 2025-03-07T04:41:48 | 2025-03-07T04:41:40 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #806
<!-- Please provide a brief overview of the changes implemented -->
#### Description
Since advanceEdges doesn't update the edge state until after we know that we can transfer the call, we move all of the advanceEdges logic into integrateVertexInputs.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [ ] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [ ] GPU Test: `test-medium-connected.xml` Passed
- [ ] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/807/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/807/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/807",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/807",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/807.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/807.patch",
"merged_at": "2025-03-07T04:41:40"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/806 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/806/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/806/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/806/events | https://github.com/UWB-Biocomputing/Graphitti/issues/806 | 2,889,939,346 | I_kwDOEEdqD86sQPmS | 806 | Implement All911Vertices::integrateVertexInputs | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2911226130,
"node_id": "MDU6TGFiZWwyOTExMjI2MTMw",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/refactor",
"name": "refactor",
"color": "d4c5f9",
"default": false,
"description": "doesn't change functionality, just improves code"
},
{
"id": 30922... | closed | false | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url"... | null | [] | 2025-03-03T01:23:37 | 2025-03-07T04:42:03 | 2025-03-07T04:42:03 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | During the refactor of the GPU model, we created a new method called integrateVertexInputs. This was implemented in the neuro model. The 911 model was left alone and a placeholder implementation was created so that the code could be compiled and run while we thought out what logic should move into this method. | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/806/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/806/timeline | null | completed | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/805 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/805/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/805/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/805/events | https://github.com/UWB-Biocomputing/Graphitti/issues/805 | 2,888,311,894 | I_kwDOEEdqD86sKCRW | 805 | Segmentation Fault During STDP Simulation on Deserializing Large GPU Growth Simulation | {
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.github.com/users/d-kamath/followers",
"following_url": "https://api.github.com/users/d-kamath/following{/other_user}",
"gists_url": "https://api.github.com/users/d-kamath/gists{/gist_id}",
"starred_url": "https://api.github.com/users/d-kamath/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/d-kamath/subscriptions",
"organizations_url": "https://api.github.com/users/d-kamath/orgs",
"repos_url": "https://api.github.com/users/d-kamath/repos",
"events_url": "https://api.github.com/users/d-kamath/events{/privacy}",
"received_events_url": "https://api.github.com/users/d-kamath/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423149,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTQ5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/bug",
"name": "bug",
"color": "d73a4a",
"default": true,
"description": "Something isn't working"
},
{
"id": 4511960660,
"node_id": "LA_kwDOEEdqD8... | closed | false | {
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.github.com/users/d-kamath/followers",
"following_url": "https://api.github.com/users/d-kamath/following{/other_user}",
"gists_url": "https://api.github.com/users/d-kamath/gists{/gist_id}",
"starred_url": "https://api.github.com/users/d-kamath/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/d-kamath/subscriptions",
"organizations_url": "https://api.github.com/users/d-kamath/orgs",
"repos_url": "https://api.github.com/users/d-kamath/repos",
"events_url": "https://api.github.com/users/d-kamath/events{/privacy}",
"received_events_url": "https://api.github.com/users/d-kamath/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.... | null | [] | 2025-03-01T00:42:00 | 2025-03-07T05:17:26 | 2025-03-07T05:17:26 | COLLABORATOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | A segmentation fault is observed during the STDP simulation after deserializing a large, GPU-based growth simulation. This crash has been identified by @varndorfer and she traced to an inconsistent state of the `summationPoints_` variable.
On debugging we found the follwing two root causes:
1. The `summationPoints_` variable under the class `AllSpikingNeurons` was intentionally left uninitialized on the CPU side. This design decision was made to prevent accidental or incorrect usage of this variable within GPU-specific code. However, with the introduction of serialization and deserialization functionalities, this uninitialized state becomes problematic. During deserialization, the saved state of `summationPoints_` needs to be loaded onto the CPU, and subsequently transferred to the GPU. Without proper initialization, the CPU memory location is undefined, leading to potential errors.
2. Corresponding to the intentional un-initialization, there was no need for a mechanism to synchronize the `summationPoints_` data between the CPU and GPU. Now, this lack of synchronization is revealed as a critical flaw. Deserialization involves loading data onto the CPU, but without a transfer or synchronization step, the GPU is unable to populate the deserialized `summationPoints_` values. This disparity results in the GPU accessing incorrect memory locations during STDP execution, leading to the segmentation fault. | {
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.github.com/users/d-kamath/followers",
"following_url": "https://api.github.com/users/d-kamath/following{/other_user}",
"gists_url": "https://api.github.com/users/d-kamath/gists{/gist_id}",
"starred_url": "https://api.github.com/users/d-kamath/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/d-kamath/subscriptions",
"organizations_url": "https://api.github.com/users/d-kamath/orgs",
"repos_url": "https://api.github.com/users/d-kamath/repos",
"events_url": "https://api.github.com/users/d-kamath/events{/privacy}",
"received_events_url": "https://api.github.com/users/d-kamath/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/805/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/805/timeline | null | completed | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/804 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/804/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/804/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/804/events | https://github.com/UWB-Biocomputing/Graphitti/pull/804 | 2,885,932,993 | PR_kwDOEEdqD86M39wP | 804 | [issue-786] Add 911 test to RunTests.sh | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 3092239149,
"node_id": "MDU6TGFiZWwzMDkyMjM5MTQ5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/NG911",
"name": "NG911",
"color": "f9d0c4",
"default": false,
"description": ""
},
{
"id": 4080571584,
"node_id": "LA_kwDOEEdqD87zOJTA",
"url"... | closed | false | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url"... | null | [
"@stiber this should be a quick review, but it is ready when you get a chance. I'll then set up a PR to merge this into Shared Development."
] | 2025-02-28T01:00:42 | 2025-03-07T04:03:39 | 2025-03-07T04:03:27 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #786
<!-- Please provide a brief overview of the changes implemented -->
#### Description
It looks like the 911 file wasn't moved when the Cpu and Gpu testing subfolders were created. Moved small 911 test into Cpu subfolder since it was generated with Cpu code. This required corresponding update to github actions. Then updated RunTests so that it would build the appropriate list of tests based on the current processing unit.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [ ] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/804/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/804/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/804",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/804",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/804.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/804.patch",
"merged_at": "2025-03-07T04:03:27"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/803 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/803/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/803/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/803/events | https://github.com/UWB-Biocomputing/Graphitti/issues/803 | 2,880,258,205 | I_kwDOEEdqD86rrUCd | 803 | Investigate PlantUML github-action repo & replacement | {
"login": "lscott-uw",
"id": 146515488,
"node_id": "U_kgDOCLumIA",
"avatar_url": "https://avatars.githubusercontent.com/u/146515488?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lscott-uw",
"html_url": "https://github.com/lscott-uw",
"followers_url": "https://api.github.com/users/lscott-uw/followers",
"following_url": "https://api.github.com/users/lscott-uw/following{/other_user}",
"gists_url": "https://api.github.com/users/lscott-uw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lscott-uw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lscott-uw/subscriptions",
"organizations_url": "https://api.github.com/users/lscott-uw/orgs",
"repos_url": "https://api.github.com/users/lscott-uw/repos",
"events_url": "https://api.github.com/users/lscott-uw/events{/privacy}",
"received_events_url": "https://api.github.com/users/lscott-uw/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | open | false | null | [] | null | [] | 2025-02-26T05:32:32 | 2025-02-26T05:32:32 | null | NONE | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | [PlantUML Action](https://uwb-biocomputing.github.io/Graphitti/Developer/GHActions.html#plantuml-action)
CloudBees' repo for the PlantUML github-action is no longer available.
Investigation is needed. | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/803/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/803/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/802 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/802/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/802/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/802/events | https://github.com/UWB-Biocomputing/Graphitti/pull/802 | 2,880,225,399 | PR_kwDOEEdqD86MkYuw | 802 | Fix for issue #788 | {
"login": "lscott-uw",
"id": 146515488,
"node_id": "U_kgDOCLumIA",
"avatar_url": "https://avatars.githubusercontent.com/u/146515488?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lscott-uw",
"html_url": "https://github.com/lscott-uw",
"followers_url": "https://api.github.com/users/lscott-uw/followers",
"following_url": "https://api.github.com/users/lscott-uw/following{/other_user}",
"gists_url": "https://api.github.com/users/lscott-uw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lscott-uw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lscott-uw/subscriptions",
"organizations_url": "https://api.github.com/users/lscott-uw/orgs",
"repos_url": "https://api.github.com/users/lscott-uw/repos",
"events_url": "https://api.github.com/users/lscott-uw/events{/privacy}",
"received_events_url": "https://api.github.com/users/lscott-uw/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | {
"login": "lscott-uw",
"id": 146515488,
"node_id": "U_kgDOCLumIA",
"avatar_url": "https://avatars.githubusercontent.com/u/146515488?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lscott-uw",
"html_url": "https://github.com/lscott-uw",
"followers_url": "https://api.github.com/users/lscott-uw/followers",
"following_url": "https://api.github.com/users/lscott-uw/following{/other_user}",
"gists_url": "https://api.github.com/users/lscott-uw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lscott-uw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lscott-uw/subscriptions",
"organizations_url": "https://api.github.com/users/lscott-uw/orgs",
"repos_url": "https://api.github.com/users/lscott-uw/repos",
"events_url": "https://api.github.com/users/lscott-uw/events{/privacy}",
"received_events_url": "https://api.github.com/users/lscott-uw/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "lscott-uw",
"id": 146515488,
"node_id": "U_kgDOCLumIA",
"avatar_url": "https://avatars.githubusercontent.com/u/146515488?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lscott-uw",
"html_url": "https://github.com/lscott-uw",
"followers_url": "https://api.git... | null | [] | 2025-02-26T05:06:31 | 2025-02-26T05:29:29 | 2025-02-26T05:29:13 | NONE | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Majority of links updated.
PlantUML link is more than just a broken link, and may require an alternative repo. Should be opened as its' own issue.
<!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #
<!-- Please provide a brief overview of the changes implemented -->
#### Description
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [x] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [ ] GPU Test: `test-medium-connected.xml` Passed - N/A
- [ ] GPU Test: `test-large-long.xml` Passed - N/A
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "lscott-uw",
"id": 146515488,
"node_id": "U_kgDOCLumIA",
"avatar_url": "https://avatars.githubusercontent.com/u/146515488?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lscott-uw",
"html_url": "https://github.com/lscott-uw",
"followers_url": "https://api.github.com/users/lscott-uw/followers",
"following_url": "https://api.github.com/users/lscott-uw/following{/other_user}",
"gists_url": "https://api.github.com/users/lscott-uw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lscott-uw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lscott-uw/subscriptions",
"organizations_url": "https://api.github.com/users/lscott-uw/orgs",
"repos_url": "https://api.github.com/users/lscott-uw/repos",
"events_url": "https://api.github.com/users/lscott-uw/events{/privacy}",
"received_events_url": "https://api.github.com/users/lscott-uw/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/802/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/802/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/802",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/802",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/802.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/802.patch",
"merged_at": "2025-02-26T05:29:13"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/801 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/801/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/801/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/801/events | https://github.com/UWB-Biocomputing/Graphitti/issues/801 | 2,880,215,857 | I_kwDOEEdqD86rrJsx | 801 | Neuro reference in 911 recorder | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423165,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTY1",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/question",
"name": "question",
"color": "d876e3",
"default": true,
"description": "Further information is requested"
},
{
"id": 4511960660,
"node_... | open | false | null | [] | null | [
"Well, on the bright side, this problem will go away in the not-too-distant future, since this recorder class is a hack and the 911 simulations will switch over to using the standard recorder classes. See #719 ",
"@stiber ahhh okay. That makes sense. Is that why the 911Edges.h doesn't have the Cereal serializatio... | 2025-02-26T04:58:49 | 2025-03-06T22:52:04 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Looks like we are using the vertexType::EXC (which is a neuro vertex type) in the 911 recorder.
https://github.com/UWB-Biocomputing/Graphitti/blob/212fb1df8950cf5cd040ef2a0bf0f80b32e8af64/Simulator/Recorders/NG911/Xml911Recorder.cpp#L35-L40
Not sure why this is or if/why its needed. | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/801/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/801/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/800 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/800/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/800/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/800/events | https://github.com/UWB-Biocomputing/Graphitti/pull/800 | 2,867,209,152 | PR_kwDOEEdqD86L9FNk | 800 | Adding VertexType to Recorders | {
"login": "zshaikh5",
"id": 129341293,
"node_id": "U_kgDOB7WXbQ",
"avatar_url": "https://avatars.githubusercontent.com/u/129341293?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zshaikh5",
"html_url": "https://github.com/zshaikh5",
"followers_url": "https://api.github.com/users/zshaikh5/followers",
"following_url": "https://api.github.com/users/zshaikh5/following{/other_user}",
"gists_url": "https://api.github.com/users/zshaikh5/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zshaikh5/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zshaikh5/subscriptions",
"organizations_url": "https://api.github.com/users/zshaikh5/orgs",
"repos_url": "https://api.github.com/users/zshaikh5/repos",
"events_url": "https://api.github.com/users/zshaikh5/events{/privacy}",
"received_events_url": "https://api.github.com/users/zshaikh5/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | {
"login": "zshaikh5",
"id": 129341293,
"node_id": "U_kgDOB7WXbQ",
"avatar_url": "https://avatars.githubusercontent.com/u/129341293?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zshaikh5",
"html_url": "https://github.com/zshaikh5",
"followers_url": "https://api.github.com/users/zshaikh5/followers",
"following_url": "https://api.github.com/users/zshaikh5/following{/other_user}",
"gists_url": "https://api.github.com/users/zshaikh5/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zshaikh5/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zshaikh5/subscriptions",
"organizations_url": "https://api.github.com/users/zshaikh5/orgs",
"repos_url": "https://api.github.com/users/zshaikh5/repos",
"events_url": "https://api.github.com/users/zshaikh5/events{/privacy}",
"received_events_url": "https://api.github.com/users/zshaikh5/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "zshaikh5",
"id": 129341293,
"node_id": "U_kgDOB7WXbQ",
"avatar_url": "https://avatars.githubusercontent.com/u/129341293?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zshaikh5",
"html_url": "https://github.com/zshaikh5",
"followers_url": "https://api.github... | null | [] | 2025-02-20T20:33:44 | 2025-03-06T06:01:45 | 2025-03-06T06:01:44 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Closes #
<!-- Please provide a brief overview of the changes implemented -->
#### Description
Adding VertexType to Recorders
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [x] Added Documentation
- [x] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "zshaikh5",
"id": 129341293,
"node_id": "U_kgDOB7WXbQ",
"avatar_url": "https://avatars.githubusercontent.com/u/129341293?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zshaikh5",
"html_url": "https://github.com/zshaikh5",
"followers_url": "https://api.github.com/users/zshaikh5/followers",
"following_url": "https://api.github.com/users/zshaikh5/following{/other_user}",
"gists_url": "https://api.github.com/users/zshaikh5/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zshaikh5/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zshaikh5/subscriptions",
"organizations_url": "https://api.github.com/users/zshaikh5/orgs",
"repos_url": "https://api.github.com/users/zshaikh5/repos",
"events_url": "https://api.github.com/users/zshaikh5/events{/privacy}",
"received_events_url": "https://api.github.com/users/zshaikh5/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/800/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/800/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/800",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/800",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/800.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/800.patch",
"merged_at": "2025-03-06T06:01:44"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/799 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/799/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/799/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/799/events | https://github.com/UWB-Biocomputing/Graphitti/pull/799 | 2,861,837,124 | PR_kwDOEEdqD86LrCV2 | 799 | [ISSUE-648] Templatize GraphManager Class and Add Inheritance to VertexProperty | {
"login": "jasleenksaini",
"id": 129341344,
"node_id": "U_kgDOB7WXoA",
"avatar_url": "https://avatars.githubusercontent.com/u/129341344?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jasleenksaini",
"html_url": "https://github.com/jasleenksaini",
"followers_url": "https://api.github.com/users/jasleenksaini/followers",
"following_url": "https://api.github.com/users/jasleenksaini/following{/other_user}",
"gists_url": "https://api.github.com/users/jasleenksaini/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jasleenksaini/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jasleenksaini/subscriptions",
"organizations_url": "https://api.github.com/users/jasleenksaini/orgs",
"repos_url": "https://api.github.com/users/jasleenksaini/repos",
"events_url": "https://api.github.com/users/jasleenksaini/events{/privacy}",
"received_events_url": "https://api.github.com/users/jasleenksaini/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | {
"login": "jasleenksaini",
"id": 129341344,
"node_id": "U_kgDOB7WXoA",
"avatar_url": "https://avatars.githubusercontent.com/u/129341344?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jasleenksaini",
"html_url": "https://github.com/jasleenksaini",
"followers_url": "https://api.github.com/users/jasleenksaini/followers",
"following_url": "https://api.github.com/users/jasleenksaini/following{/other_user}",
"gists_url": "https://api.github.com/users/jasleenksaini/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jasleenksaini/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jasleenksaini/subscriptions",
"organizations_url": "https://api.github.com/users/jasleenksaini/orgs",
"repos_url": "https://api.github.com/users/jasleenksaini/repos",
"events_url": "https://api.github.com/users/jasleenksaini/events{/privacy}",
"received_events_url": "https://api.github.com/users/jasleenksaini/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "jasleenksaini",
"id": 129341344,
"node_id": "U_kgDOB7WXoA",
"avatar_url": "https://avatars.githubusercontent.com/u/129341344?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jasleenksaini",
"html_url": "https://github.com/jasleenksaini",
"followers_url": "htt... | null | [] | 2025-02-18T23:17:49 | 2025-03-09T00:30:38 | 2025-03-09T00:30:38 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Closes #648
<!-- Please provide a brief overview of the changes implemented -->
#### Description
The GraphManager class needs to be modified to support different property structs for specific application domains. This enhancement will involve templating the class and adding inheritance to the VertexProperty.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [x] Added Documentation
- [x] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "jasleenksaini",
"id": 129341344,
"node_id": "U_kgDOB7WXoA",
"avatar_url": "https://avatars.githubusercontent.com/u/129341344?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jasleenksaini",
"html_url": "https://github.com/jasleenksaini",
"followers_url": "https://api.github.com/users/jasleenksaini/followers",
"following_url": "https://api.github.com/users/jasleenksaini/following{/other_user}",
"gists_url": "https://api.github.com/users/jasleenksaini/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jasleenksaini/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jasleenksaini/subscriptions",
"organizations_url": "https://api.github.com/users/jasleenksaini/orgs",
"repos_url": "https://api.github.com/users/jasleenksaini/repos",
"events_url": "https://api.github.com/users/jasleenksaini/events{/privacy}",
"received_events_url": "https://api.github.com/users/jasleenksaini/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/799/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/799/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/799",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/799",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/799.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/799.patch",
"merged_at": null
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/798 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/798/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/798/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/798/events | https://github.com/UWB-Biocomputing/Graphitti/pull/798 | 2,859,369,576 | PR_kwDOEEdqD86LijwS | 798 | Merge PoseyDevelopment into SharedDevelopment | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2159406989,
"node_id": "MDU6TGFiZWwyMTU5NDA2OTg5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/GPU",
"name": "GPU",
"color": "009800",
"default": false,
"description": ""
},
{
"id": 2159503249,
"node_id": "MDU6TGFiZWwyMTU5NTAzMjQ5",
"url... | closed | false | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url"... | null | [
"@stiber this PR is to merge my PoseyDevelopment branch into SharedDevelopment. This will merge PRs 777 and 789 into SharedDevelopment. Per the above commits, it is now up-to-date with SharedDevelopment. I took a quick look through the file changes and it looks like it only contains the changes from the two PRs so ... | 2025-02-18T05:16:51 | 2025-02-19T19:45:52 | 2025-02-19T19:45:52 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #745 #785
<!-- Please provide a brief overview of the changes implemented -->
#### Description
Merge includes two PRs. PR 777 which moved the vertex integration logic that lived in the Edges class into the Vertices class and PR 789 which cleaned up neuro-specific references in the GPU and CPU models.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [x] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/798/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/798/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/798",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/798",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/798.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/798.patch",
"merged_at": "2025-02-19T19:45:52"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/797 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/797/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/797/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/797/events | https://github.com/UWB-Biocomputing/Graphitti/issues/797 | 2,854,797,531 | I_kwDOEEdqD86qKMDb | 797 | Add check that all classes specified in the config file are consistent | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423156,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTU2",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/enhancement",
"name": "enhancement",
"color": "a2eeef",
"default": true,
"description": "New feature or request"
},
{
"id": 4080571584,
"node_id":... | open | false | null | [] | null | [] | 2025-02-14T22:20:52 | 2025-02-14T22:20:52 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Just as a sanity check, to grab all of the class names (maybe in the model class?) and make sure they are all compatible (i.e., all from the same domain). | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/797/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/797/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/796 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/796/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/796/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/796/events | https://github.com/UWB-Biocomputing/Graphitti/pull/796 | 2,849,342,857 | PR_kwDOEEdqD86LBAVs | 796 | Copy weights from GPU | {
"login": "priyadhanu14",
"id": 71185173,
"node_id": "MDQ6VXNlcjcxMTg1MTcz",
"avatar_url": "https://avatars.githubusercontent.com/u/71185173?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/priyadhanu14",
"html_url": "https://github.com/priyadhanu14",
"followers_url": "https://api.github.com/users/priyadhanu14/followers",
"following_url": "https://api.github.com/users/priyadhanu14/following{/other_user}",
"gists_url": "https://api.github.com/users/priyadhanu14/gists{/gist_id}",
"starred_url": "https://api.github.com/users/priyadhanu14/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/priyadhanu14/subscriptions",
"organizations_url": "https://api.github.com/users/priyadhanu14/orgs",
"repos_url": "https://api.github.com/users/priyadhanu14/repos",
"events_url": "https://api.github.com/users/priyadhanu14/events{/privacy}",
"received_events_url": "https://api.github.com/users/priyadhanu14/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | open | false | {
"login": "varndorfer",
"id": 20168613,
"node_id": "MDQ6VXNlcjIwMTY4NjEz",
"avatar_url": "https://avatars.githubusercontent.com/u/20168613?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/varndorfer",
"html_url": "https://github.com/varndorfer",
"followers_url": "https://api.github.com/users/varndorfer/followers",
"following_url": "https://api.github.com/users/varndorfer/following{/other_user}",
"gists_url": "https://api.github.com/users/varndorfer/gists{/gist_id}",
"starred_url": "https://api.github.com/users/varndorfer/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/varndorfer/subscriptions",
"organizations_url": "https://api.github.com/users/varndorfer/orgs",
"repos_url": "https://api.github.com/users/varndorfer/repos",
"events_url": "https://api.github.com/users/varndorfer/events{/privacy}",
"received_events_url": "https://api.github.com/users/varndorfer/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "varndorfer",
"id": 20168613,
"node_id": "MDQ6VXNlcjIwMTY4NjEz",
"avatar_url": "https://avatars.githubusercontent.com/u/20168613?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/varndorfer",
"html_url": "https://github.com/varndorfer",
"followers_url": "https:... | null | [] | 2025-02-12T21:00:21 | 2025-03-24T16:44:23 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Please provide a brief overview of the changes implemented -->
#### Description
Code to copy the weights back from the GPU after each epoch.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [x] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [ ] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/796/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/796/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/796",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/796",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/796.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/796.patch",
"merged_at": null
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/795 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/795/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/795/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/795/events | https://github.com/UWB-Biocomputing/Graphitti/issues/795 | 2,846,965,674 | I_kwDOEEdqD86psT-q | 795 | Add Padmanabh Patil to Contributor List | {
"login": "PadPatil",
"id": 56707394,
"node_id": "MDQ6VXNlcjU2NzA3Mzk0",
"avatar_url": "https://avatars.githubusercontent.com/u/56707394?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/PadPatil",
"html_url": "https://github.com/PadPatil",
"followers_url": "https://api.github.com/users/PadPatil/followers",
"following_url": "https://api.github.com/users/PadPatil/following{/other_user}",
"gists_url": "https://api.github.com/users/PadPatil/gists{/gist_id}",
"starred_url": "https://api.github.com/users/PadPatil/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/PadPatil/subscriptions",
"organizations_url": "https://api.github.com/users/PadPatil/orgs",
"repos_url": "https://api.github.com/users/PadPatil/repos",
"events_url": "https://api.github.com/users/PadPatil/events{/privacy}",
"received_events_url": "https://api.github.com/users/PadPatil/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423152,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTUy",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/documentation",
"name": "documentation",
"color": "0075ca",
"default": true,
"description": "Improvements or additions to documentation"
}
] | open | false | {
"login": "PadPatil",
"id": 56707394,
"node_id": "MDQ6VXNlcjU2NzA3Mzk0",
"avatar_url": "https://avatars.githubusercontent.com/u/56707394?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/PadPatil",
"html_url": "https://github.com/PadPatil",
"followers_url": "https://api.github.com/users/PadPatil/followers",
"following_url": "https://api.github.com/users/PadPatil/following{/other_user}",
"gists_url": "https://api.github.com/users/PadPatil/gists{/gist_id}",
"starred_url": "https://api.github.com/users/PadPatil/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/PadPatil/subscriptions",
"organizations_url": "https://api.github.com/users/PadPatil/orgs",
"repos_url": "https://api.github.com/users/PadPatil/repos",
"events_url": "https://api.github.com/users/PadPatil/events{/privacy}",
"received_events_url": "https://api.github.com/users/PadPatil/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "PadPatil",
"id": 56707394,
"node_id": "MDQ6VXNlcjU2NzA3Mzk0",
"avatar_url": "https://avatars.githubusercontent.com/u/56707394?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/PadPatil",
"html_url": "https://github.com/PadPatil",
"followers_url": "https://api.... | null | [] | 2025-02-12T01:41:45 | 2025-02-12T01:41:45 | null | NONE | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | #### Description
As a part of the onboarding task add Padmanabh Patil to the Contributors list of Graphitti.
#### Files
Contributors.txt | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/795/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/795/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/794 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/794/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/794/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/794/events | https://github.com/UWB-Biocomputing/Graphitti/pull/794 | 2,843,910,613 | PR_kwDOEEdqD86KuXWu | 794 | [ISSUE-783] [ISSUE-773] Target Architecture | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_u... | null | [] | 2025-02-10T22:59:45 | 2025-03-07T00:43:26 | 2025-03-07T00:43:26 | NONE | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #783
Closes #773
<!-- Please provide a brief overview of the changes implemented -->
#### Description
CMAKE build types cleaned up in cmakelists
```
# Build Type Configuration
#
# CMake support for different build types controlling optimization, debugging and profiling:
#
# - Debug : No optimizations (`-O0`), includes debug symbols (`-g`).
# - Release : Optimized build (`-O3`), removes debug symbols.
# - RelWithDebInfo: Optimized (`-O2`) but keeps debug symbols (`-g`) for profiling.
# - Profiling : Custom build type (defined in this project) that enables:
# - CPU profiling via `-pg` (GPROF)
# - CUDA profiling via `-lineinfo` (for Nsight Compute)
#
# Selecting a Build Type:
# - By default, CMake does NOT set a build type for single-config generators.
# - If no build type is specified, this script defaults to "Release" for performance.
# - You can explicitly set the build type when configuring CMake:
#
# cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug # Debug mode
# cmake -S . -B build -DCMAKE_BUILD_TYPE=Release # Release mode
# cmake -S . -B build -DCMAKE_BUILD_TYPE=Profiling # Profiling mode
#
# If you don't want to pass in the build type flag, you can edit this file and add...
# set(CMAKE_BUILD_TYPE "Debug") or whichever build type you want
# -----------------------------------------------------------------------------
```
Additionally, added a new conditional flag to change the target architecture for cuda compilation.
```
#CONDITIONAL FLAG to change target architecture for the GPU simulator from the default
#
#You can pass this flag when running cmake from the command line like this, setting TARGET_ARCH \
# to your desired architecture: \
#
#cmake -D ENABLE_CUDA=YES -D TARGET_ARCH=70 ..
#
#"YES" / GPU choice only available if CUDA library is installed and the GPU is CUDA capable.
#If no TARGET_ARCH is passed in then it will default to 37 which is the kepler architecture
```
Quickstart guide, StudentSetup, and codingConventions documentation was updated.
Added support for nvtx profiling tools. The profiling build option will enable this if the nvtx libraries are present.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [x] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/794/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/794/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/794",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/794",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/794.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/794.patch",
"merged_at": null
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/793 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/793/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/793/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/793/events | https://github.com/UWB-Biocomputing/Graphitti/issues/793 | 2,843,798,663 | I_kwDOEEdqD86pgOyH | 793 | ConnGrowth::updateConns() should be called something like ConnGrowth::updateRadii() | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2911226130,
"node_id": "MDU6TGFiZWwyOTExMjI2MTMw",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/refactor",
"name": "refactor",
"color": "d4c5f9",
"default": false,
"description": "doesn't change functionality, just improves code"
}
] | open | false | null | [] | null | [] | 2025-02-10T22:06:53 | 2025-02-10T22:06:53 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | null | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/793/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/793/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/792 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/792/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/792/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/792/events | https://github.com/UWB-Biocomputing/Graphitti/issues/792 | 2,834,100,271 | I_kwDOEEdqD86o7PAv | 792 | Move vertexType definition to AllVertices and make enum class | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2911226130,
"node_id": "MDU6TGFiZWwyOTExMjI2MTMw",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/refactor",
"name": "refactor",
"color": "d4c5f9",
"default": false,
"description": "doesn't change functionality, just improves code"
}
] | open | false | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_u... | null | [] | 2025-02-05T22:35:55 | 2025-02-20T02:10:34 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | ERROR: type should be string, got "\n\n\nhttps://github.com/UWB-Biocomputing/Graphitti/blob/291506208498bfaa2d5d13372c069dabe290c86c/Simulator/Utils/Global.h#L93-L113" | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/792/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/792/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/791 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/791/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/791/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/791/events | https://github.com/UWB-Biocomputing/Graphitti/issues/791 | 2,834,094,621 | I_kwDOEEdqD86o7Nod | 791 | Refactor neuronTypeToString() from Global.cpp | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2911226130,
"node_id": "MDU6TGFiZWwyOTExMjI2MTMw",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/refactor",
"name": "refactor",
"color": "d4c5f9",
"default": false,
"description": "doesn't change functionality, just improves code"
}
] | open | false | {
"login": "zshaikh5",
"id": 129341293,
"node_id": "U_kgDOB7WXbQ",
"avatar_url": "https://avatars.githubusercontent.com/u/129341293?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zshaikh5",
"html_url": "https://github.com/zshaikh5",
"followers_url": "https://api.github.com/users/zshaikh5/followers",
"following_url": "https://api.github.com/users/zshaikh5/following{/other_user}",
"gists_url": "https://api.github.com/users/zshaikh5/gists{/gist_id}",
"starred_url": "https://api.github.com/users/zshaikh5/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/zshaikh5/subscriptions",
"organizations_url": "https://api.github.com/users/zshaikh5/orgs",
"repos_url": "https://api.github.com/users/zshaikh5/repos",
"events_url": "https://api.github.com/users/zshaikh5/events{/privacy}",
"received_events_url": "https://api.github.com/users/zshaikh5/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "zshaikh5",
"id": 129341293,
"node_id": "U_kgDOB7WXbQ",
"avatar_url": "https://avatars.githubusercontent.com/u/129341293?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/zshaikh5",
"html_url": "https://github.com/zshaikh5",
"followers_url": "https://api.github... | null | [] | 2025-02-05T22:31:26 | 2025-03-05T22:13:27 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | 1. Rename to `vertexTypeToString()`
2. Move it to `AllVertices`
3. Should this be a utility function or a method?
https://github.com/UWB-Biocomputing/Graphitti/blob/62ad162a8472397f2a5436f0a9a52da23c4f2f7b/Simulator/Utils/Global.cpp#L56-L70 | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/791/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/791/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/790 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/790/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/790/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/790/events | https://github.com/UWB-Biocomputing/Graphitti/issues/790 | 2,831,632,424 | I_kwDOEEdqD86ox0go | 790 | .clang-format formats AllSTDPSynapses.cpp in such a way that it violates code style check | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423149,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTQ5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/bug",
"name": "bug",
"color": "d73a4a",
"default": true,
"description": "Something isn't working"
}
] | open | false | null | [] | null | [] | 2025-02-05T01:21:50 | 2025-02-05T01:21:50 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Specifically, it formats the AllSTDPSynapses::printParameters() method in such a way that the resulting file causes our code style violation check to fail. This could indicate a bug with the .clang-format tool. Files formatted using the .clang-format tool should not fail a code style check. | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/790/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/790/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/789 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/789/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/789/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/789/events | https://github.com/UWB-Biocomputing/Graphitti/pull/789 | 2,831,477,842 | PR_kwDOEEdqD86KEAu5 | 789 | [issue-785] Remove neuro items from gpu model | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2159406989,
"node_id": "MDU6TGFiZWwyMTU5NDA2OTg5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/GPU",
"name": "GPU",
"color": "009800",
"default": false,
"description": ""
},
{
"id": 2911226130,
"node_id": "MDU6TGFiZWwyOTExMjI2MTMw",
"url... | closed | false | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url"... | null | [
"@stiber this is ready for review. We can discuss at our 1:1 this Thursday."
] | 2025-02-04T23:11:34 | 2025-03-06T08:53:57 | 2025-02-18T03:51:24 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #785
<!-- Please provide a brief overview of the changes implemented -->
#### Description
Focus was on refactoring the GPUModel class to not refer to anything neuro-related. This was mostly renaming variables and methods.
The one except to this being the AllSpikingSynapsesDeviceProperties and AllSpikingNeuronsDeviceProperties types being changed to AllEdgesDeviceProperties and AllVerticesDeviceProperties respectively. The required a refactor of the device properties. The AllEdgesDeviceProperties now lives in AllEdges.h instead of AllNeuroEdges.h. AllNeuroEdgesDeviceProperties inherits from this and adds the PSR property. The summation points properties were moved from AllVertices.h to AllSpikingNeurons.h since it's not a general vertex property.
The change to AllSTDPSynapses.cpp was a bug exposed after moving the summation points property out of AllSpikingNeurons.h. It should have been removed when we added integrateVertexInputs.
The other except was after removing the dynamic cast in the GPUModel::updateHistory() method. This is a private method in GPUModel that called clearNeuronSpikeCounts. This method was renamed to clearVertexHistory and pulled up from AllSpikingNeurons.h to AllVertices.h.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [x] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/789/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/789/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/789",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/789",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/789.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/789.patch",
"merged_at": "2025-02-18T03:51:24"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/788 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/788/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/788/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/788/events | https://github.com/UWB-Biocomputing/Graphitti/issues/788 | 2,828,750,142 | I_kwDOEEdqD86om00- | 788 | Fix Broken Links in Documentation | {
"login": "lscott-uw",
"id": 146515488,
"node_id": "U_kgDOCLumIA",
"avatar_url": "https://avatars.githubusercontent.com/u/146515488?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lscott-uw",
"html_url": "https://github.com/lscott-uw",
"followers_url": "https://api.github.com/users/lscott-uw/followers",
"following_url": "https://api.github.com/users/lscott-uw/following{/other_user}",
"gists_url": "https://api.github.com/users/lscott-uw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lscott-uw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lscott-uw/subscriptions",
"organizations_url": "https://api.github.com/users/lscott-uw/orgs",
"repos_url": "https://api.github.com/users/lscott-uw/repos",
"events_url": "https://api.github.com/users/lscott-uw/events{/privacy}",
"received_events_url": "https://api.github.com/users/lscott-uw/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423152,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTUy",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/documentation",
"name": "documentation",
"color": "0075ca",
"default": true,
"description": "Improvements or additions to documentation"
},
{
"id": 21... | closed | false | {
"login": "lscott-uw",
"id": 146515488,
"node_id": "U_kgDOCLumIA",
"avatar_url": "https://avatars.githubusercontent.com/u/146515488?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lscott-uw",
"html_url": "https://github.com/lscott-uw",
"followers_url": "https://api.github.com/users/lscott-uw/followers",
"following_url": "https://api.github.com/users/lscott-uw/following{/other_user}",
"gists_url": "https://api.github.com/users/lscott-uw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lscott-uw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lscott-uw/subscriptions",
"organizations_url": "https://api.github.com/users/lscott-uw/orgs",
"repos_url": "https://api.github.com/users/lscott-uw/repos",
"events_url": "https://api.github.com/users/lscott-uw/events{/privacy}",
"received_events_url": "https://api.github.com/users/lscott-uw/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "lscott-uw",
"id": 146515488,
"node_id": "U_kgDOCLumIA",
"avatar_url": "https://avatars.githubusercontent.com/u/146515488?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lscott-uw",
"html_url": "https://github.com/lscott-uw",
"followers_url": "https://api.git... | null | [
"Repo for CloudBees/plantuml-github-action no longer exists: https://github.com/cloudbees/plantuml-github-action\n\nNeed to verify if this action is still being utilized in the repo.",
"[Introducing GitFlow](https://uwb-biocomputing.github.io/Graphitti/Developer/GitFlowDiagram.html)\nLink already fixed in current... | 2025-02-03T23:06:11 | 2025-02-26T05:30:08 | 2025-02-26T05:30:08 | NONE | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Documentation:
1.2 Installation
1.2.2.1 [Fork and clone Graphitt](https://uwb-biocomputing.github.io/Graphitti/User/installation.html)
Contribute to Graphitti - Correct link location.
1.2.3
h5c++ link no longer works
2. Developer Documentation
[PlantUML Action](https://uwb-biocomputing.github.io/Graphitti/Developer/GHActions.html#plantuml-action)
Link to CloudBees github-action broken
[Introducing GitFlow](https://uwb-biocomputing.github.io/Graphitti/Developer/GitFlowDiagram.html)
Contributing link broken.
3. Testing
3.1 Unit Tests
[docs/Testing/GoogleTest](../docs/testing/GoogleTestsTutorial.md)
File no longer exists.
| {
"login": "lscott-uw",
"id": 146515488,
"node_id": "U_kgDOCLumIA",
"avatar_url": "https://avatars.githubusercontent.com/u/146515488?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lscott-uw",
"html_url": "https://github.com/lscott-uw",
"followers_url": "https://api.github.com/users/lscott-uw/followers",
"following_url": "https://api.github.com/users/lscott-uw/following{/other_user}",
"gists_url": "https://api.github.com/users/lscott-uw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lscott-uw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lscott-uw/subscriptions",
"organizations_url": "https://api.github.com/users/lscott-uw/orgs",
"repos_url": "https://api.github.com/users/lscott-uw/repos",
"events_url": "https://api.github.com/users/lscott-uw/events{/privacy}",
"received_events_url": "https://api.github.com/users/lscott-uw/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/788/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/788/timeline | null | completed | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/787 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/787/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/787/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/787/events | https://github.com/UWB-Biocomputing/Graphitti/pull/787 | 2,828,675,959 | PR_kwDOEEdqD86J6Xgz | 787 | Fix for issues #443 and #444 | {
"login": "lscott-uw",
"id": 146515488,
"node_id": "U_kgDOCLumIA",
"avatar_url": "https://avatars.githubusercontent.com/u/146515488?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lscott-uw",
"html_url": "https://github.com/lscott-uw",
"followers_url": "https://api.github.com/users/lscott-uw/followers",
"following_url": "https://api.github.com/users/lscott-uw/following{/other_user}",
"gists_url": "https://api.github.com/users/lscott-uw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lscott-uw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lscott-uw/subscriptions",
"organizations_url": "https://api.github.com/users/lscott-uw/orgs",
"repos_url": "https://api.github.com/users/lscott-uw/repos",
"events_url": "https://api.github.com/users/lscott-uw/events{/privacy}",
"received_events_url": "https://api.github.com/users/lscott-uw/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | null | [] | null | [] | 2025-02-03T22:20:27 | 2025-02-03T23:14:39 | 2025-02-03T22:40:47 | NONE | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #443
Closes #444
<!-- Please provide a brief overview of the changes implemented -->
#### Description
Documetnation links updated from relative to absolute.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [x] Updated Documentation
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
N/A - documentation only changes
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "lscott-uw",
"id": 146515488,
"node_id": "U_kgDOCLumIA",
"avatar_url": "https://avatars.githubusercontent.com/u/146515488?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/lscott-uw",
"html_url": "https://github.com/lscott-uw",
"followers_url": "https://api.github.com/users/lscott-uw/followers",
"following_url": "https://api.github.com/users/lscott-uw/following{/other_user}",
"gists_url": "https://api.github.com/users/lscott-uw/gists{/gist_id}",
"starred_url": "https://api.github.com/users/lscott-uw/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/lscott-uw/subscriptions",
"organizations_url": "https://api.github.com/users/lscott-uw/orgs",
"repos_url": "https://api.github.com/users/lscott-uw/repos",
"events_url": "https://api.github.com/users/lscott-uw/events{/privacy}",
"received_events_url": "https://api.github.com/users/lscott-uw/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/787/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/787/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/787",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/787",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/787.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/787.patch",
"merged_at": "2025-02-03T22:40:47"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/786 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/786/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/786/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/786/events | https://github.com/UWB-Biocomputing/Graphitti/issues/786 | 2,824,879,733 | I_kwDOEEdqD86oYD51 | 786 | 911 regression config not being run | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 3092239149,
"node_id": "MDU6TGFiZWwzMDkyMjM5MTQ5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/NG911",
"name": "NG911",
"color": "f9d0c4",
"default": false,
"description": ""
},
{
"id": 4080571584,
"node_id": "LA_kwDOEEdqD87zOJTA",
"url"... | closed | false | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url"... | null | [
"Nope, no reason to not include this. Will need to ensure there is a good output file. I note that it is already running in the GitHub action, so this is likely an oversight.",
"I can confirm that there is already a test-small-911-out.xml file in the GoodOutput directory. It would need to be moved into the GoodOu... | 2025-02-01T04:20:04 | 2025-03-07T04:10:46 | 2025-03-07T04:10:45 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Below is the output from a branch based off SharedDevelopment

There is a "test-small-911.xml" in Testing/RegressionTesting/configFiles. It doesn't look like this is being run when we run the CPU regression tests.
I suspect it's because it needs to manually be added to the TEST_FILES in RunTests.sh

@stiber is there a reason NOT to add the test-small-911.xml to TEST_FILES so that it is run with the other CPU tests? We might have to do an if else so that we only add it when the processing unit is CPU. | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/786/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/786/timeline | null | completed | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/785 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/785/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/785/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/785/events | https://github.com/UWB-Biocomputing/Graphitti/issues/785 | 2,824,737,258 | I_kwDOEEdqD86oXhHq | 785 | Fix some remaining neuro specific items in GPUModel.h | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2159503249,
"node_id": "MDU6TGFiZWwyMTU5NTAzMjQ5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/cleanup",
"name": "cleanup",
"color": "0075ca",
"default": false,
"description": ""
}
] | closed | false | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url"... | null | [
"Completed and pushed into SharedDevelopment"
] | 2025-02-01T02:00:07 | 2025-02-19T19:53:08 | 2025-02-19T19:53:06 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Such as:
https://github.com/UWB-Biocomputing/Graphitti/blob/291506208498bfaa2d5d13372c069dabe290c86c/Simulator/Core/GPUModel.h#L126-L130 | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/785/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/785/timeline | null | completed | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/784 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/784/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/784/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/784/events | https://github.com/UWB-Biocomputing/Graphitti/issues/784 | 2,824,730,898 | I_kwDOEEdqD86oXfkS | 784 | Overridden methods should be marked "override" | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2159503249,
"node_id": "MDU6TGFiZWwyMTU5NTAzMjQ5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/cleanup",
"name": "cleanup",
"color": "0075ca",
"default": false,
"description": ""
}
] | open | false | null | [] | null | [] | 2025-02-01T01:52:37 | 2025-02-01T01:52:37 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Yes, it's really just a decoration, but for things like:
https://github.com/UWB-Biocomputing/Graphitti/blob/291506208498bfaa2d5d13372c069dabe290c86c/Simulator/Vertices/Neuro/AllIFNeurons.h#L86-L87
overridden methods should be marked `override` | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/784/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/784/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/783 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/783/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/783/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/783/events | https://github.com/UWB-Biocomputing/Graphitti/issues/783 | 2,822,509,695 | I_kwDOEEdqD86oPBR_ | 783 | Add new conditional cmake flag to enable specification of cuda architecture at build time | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | open | false | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_u... | null | [] | 2025-01-31T05:53:24 | 2025-01-31T05:53:24 | null | NONE | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Add a conditional flag to set alternate cuda architecture in build.
The cache variable TARGET_ARCH can be passed in on the command line to change the cuda architecture used.
e.g. when running the GPU simulation on target architecture 70:
`cmake -D ENABLE_CUDA=YES -D TARGET_ARCH=70 ..`
The quickstart guide also needs to be updated for this change. | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/783/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/783/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/782 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/782/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/782/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/782/events | https://github.com/UWB-Biocomputing/Graphitti/issues/782 | 2,822,439,043 | I_kwDOEEdqD86oOwCD | 782 | Document Empty Recorder Output | {
"login": "varndorfer",
"id": 20168613,
"node_id": "MDQ6VXNlcjIwMTY4NjEz",
"avatar_url": "https://avatars.githubusercontent.com/u/20168613?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/varndorfer",
"html_url": "https://github.com/varndorfer",
"followers_url": "https://api.github.com/users/varndorfer/followers",
"following_url": "https://api.github.com/users/varndorfer/following{/other_user}",
"gists_url": "https://api.github.com/users/varndorfer/gists{/gist_id}",
"starred_url": "https://api.github.com/users/varndorfer/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/varndorfer/subscriptions",
"organizations_url": "https://api.github.com/users/varndorfer/orgs",
"repos_url": "https://api.github.com/users/varndorfer/repos",
"events_url": "https://api.github.com/users/varndorfer/events{/privacy}",
"received_events_url": "https://api.github.com/users/varndorfer/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423152,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTUy",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/documentation",
"name": "documentation",
"color": "0075ca",
"default": true,
"description": "Improvements or additions to documentation"
},
{
"id": 21... | open | false | null | [] | null | [] | 2025-01-31T04:50:16 | 2025-01-31T04:50:16 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | If no events are recorded for a given element, then no output is produced by the recorders (ex: `XMLRecorder::saveSimData()`). This can be confusing for new users, for example, when you run a short Neuro simulation, only the endogenously active neurons will output spiking activity. New users may think there is something wrong with their configuration or the simulation because they are missing output for most of the neurons.
We should add documentation to clearly explain that elements will only display in the output if an event is recorded for that element.
| null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/782/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/782/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/781 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/781/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/781/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/781/events | https://github.com/UWB-Biocomputing/Graphitti/pull/781 | 2,820,179,101 | PR_kwDOEEdqD86Jdyxy | 781 | [ISSUE-644] Add Rimjhim Sudhesh to Contributors List | {
"login": "rimjhimsudhesh",
"id": 110277428,
"node_id": "U_kgDOBpKzNA",
"avatar_url": "https://avatars.githubusercontent.com/u/110277428?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rimjhimsudhesh",
"html_url": "https://github.com/rimjhimsudhesh",
"followers_url": "https://api.github.com/users/rimjhimsudhesh/followers",
"following_url": "https://api.github.com/users/rimjhimsudhesh/following{/other_user}",
"gists_url": "https://api.github.com/users/rimjhimsudhesh/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rimjhimsudhesh/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rimjhimsudhesh/subscriptions",
"organizations_url": "https://api.github.com/users/rimjhimsudhesh/orgs",
"repos_url": "https://api.github.com/users/rimjhimsudhesh/repos",
"events_url": "https://api.github.com/users/rimjhimsudhesh/events{/privacy}",
"received_events_url": "https://api.github.com/users/rimjhimsudhesh/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | {
"login": "rimjhimsudhesh",
"id": 110277428,
"node_id": "U_kgDOBpKzNA",
"avatar_url": "https://avatars.githubusercontent.com/u/110277428?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rimjhimsudhesh",
"html_url": "https://github.com/rimjhimsudhesh",
"followers_url": "https://api.github.com/users/rimjhimsudhesh/followers",
"following_url": "https://api.github.com/users/rimjhimsudhesh/following{/other_user}",
"gists_url": "https://api.github.com/users/rimjhimsudhesh/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rimjhimsudhesh/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rimjhimsudhesh/subscriptions",
"organizations_url": "https://api.github.com/users/rimjhimsudhesh/orgs",
"repos_url": "https://api.github.com/users/rimjhimsudhesh/repos",
"events_url": "https://api.github.com/users/rimjhimsudhesh/events{/privacy}",
"received_events_url": "https://api.github.com/users/rimjhimsudhesh/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "rimjhimsudhesh",
"id": 110277428,
"node_id": "U_kgDOBpKzNA",
"avatar_url": "https://avatars.githubusercontent.com/u/110277428?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rimjhimsudhesh",
"html_url": "https://github.com/rimjhimsudhesh",
"followers_url": "... | null | [] | 2025-01-30T08:17:08 | 2025-03-05T20:18:40 | 2025-03-05T20:18:34 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #644
<!-- Please provide a brief overview of the changes implemented -->
#### Description
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [ ] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [ ] GPU Test: `test-medium-connected.xml` Passed
- [ ] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/781/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/781/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/781",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/781",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/781.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/781.patch",
"merged_at": "2025-03-05T20:18:34"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/780 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/780/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/780/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/780/events | https://github.com/UWB-Biocomputing/Graphitti/pull/780 | 2,820,167,458 | PR_kwDOEEdqD86JdwQo | 780 | [ISSUE-768] Update comments for 911 input generation code | {
"login": "rimjhimsudhesh",
"id": 110277428,
"node_id": "U_kgDOBpKzNA",
"avatar_url": "https://avatars.githubusercontent.com/u/110277428?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rimjhimsudhesh",
"html_url": "https://github.com/rimjhimsudhesh",
"followers_url": "https://api.github.com/users/rimjhimsudhesh/followers",
"following_url": "https://api.github.com/users/rimjhimsudhesh/following{/other_user}",
"gists_url": "https://api.github.com/users/rimjhimsudhesh/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rimjhimsudhesh/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rimjhimsudhesh/subscriptions",
"organizations_url": "https://api.github.com/users/rimjhimsudhesh/orgs",
"repos_url": "https://api.github.com/users/rimjhimsudhesh/repos",
"events_url": "https://api.github.com/users/rimjhimsudhesh/events{/privacy}",
"received_events_url": "https://api.github.com/users/rimjhimsudhesh/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | {
"login": "rimjhimsudhesh",
"id": 110277428,
"node_id": "U_kgDOBpKzNA",
"avatar_url": "https://avatars.githubusercontent.com/u/110277428?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rimjhimsudhesh",
"html_url": "https://github.com/rimjhimsudhesh",
"followers_url": "https://api.github.com/users/rimjhimsudhesh/followers",
"following_url": "https://api.github.com/users/rimjhimsudhesh/following{/other_user}",
"gists_url": "https://api.github.com/users/rimjhimsudhesh/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rimjhimsudhesh/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rimjhimsudhesh/subscriptions",
"organizations_url": "https://api.github.com/users/rimjhimsudhesh/orgs",
"repos_url": "https://api.github.com/users/rimjhimsudhesh/repos",
"events_url": "https://api.github.com/users/rimjhimsudhesh/events{/privacy}",
"received_events_url": "https://api.github.com/users/rimjhimsudhesh/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "rimjhimsudhesh",
"id": 110277428,
"node_id": "U_kgDOBpKzNA",
"avatar_url": "https://avatars.githubusercontent.com/u/110277428?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rimjhimsudhesh",
"html_url": "https://github.com/rimjhimsudhesh",
"followers_url": "... | null | [] | 2025-01-30T08:10:02 | 2025-03-05T20:17:30 | 2025-03-05T20:16:50 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #768
<!-- Please provide a brief overview of the changes implemented -->
#### Description
Changes in comments
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [Check] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/780/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/780/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/780",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/780",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/780.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/780.patch",
"merged_at": "2025-03-05T20:16:50"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/779 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/779/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/779/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/779/events | https://github.com/UWB-Biocomputing/Graphitti/issues/779 | 2,819,660,711 | I_kwDOEEdqD86oEJun | 779 | Ensure Recordable Class Supports Variables for STDP Simulations | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 3753459431,
"node_id": "LA_kwDOEEdqD87fuT7n",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/Recorders",
"name": "Recorders",
"color": "8711C9",
"default": false,
"description": "Re-engineering recorders"
}
] | open | false | {
"login": "priyadhanu14",
"id": 71185173,
"node_id": "MDQ6VXNlcjcxMTg1MTcz",
"avatar_url": "https://avatars.githubusercontent.com/u/71185173?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/priyadhanu14",
"html_url": "https://github.com/priyadhanu14",
"followers_url": "https://api.github.com/users/priyadhanu14/followers",
"following_url": "https://api.github.com/users/priyadhanu14/following{/other_user}",
"gists_url": "https://api.github.com/users/priyadhanu14/gists{/gist_id}",
"starred_url": "https://api.github.com/users/priyadhanu14/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/priyadhanu14/subscriptions",
"organizations_url": "https://api.github.com/users/priyadhanu14/orgs",
"repos_url": "https://api.github.com/users/priyadhanu14/repos",
"events_url": "https://api.github.com/users/priyadhanu14/events{/privacy}",
"received_events_url": "https://api.github.com/users/priyadhanu14/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "priyadhanu14",
"id": 71185173,
"node_id": "MDQ6VXNlcjcxMTg1MTcz",
"avatar_url": "https://avatars.githubusercontent.com/u/71185173?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/priyadhanu14",
"html_url": "https://github.com/priyadhanu14",
"followers_url": "... | null | [
"This may only be \"easily\" working for CPU simulations, because weights currently aren't copied back for GPU simulations."
] | 2025-01-30T00:56:42 | 2025-01-30T01:10:08 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | In particular, the following edge information needs to be savable:
- source vertex
- destination vertex
- edge weight
@priyadhanu14 is hacking code to do this for growth simulations. | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/779/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/779/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/778 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/778/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/778/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/778/events | https://github.com/UWB-Biocomputing/Graphitti/pull/778 | 2,814,507,767 | PR_kwDOEEdqD86JKhun | 778 | [ISSUE-732] Enum Classes | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_u... | null | [] | 2025-01-28T02:54:29 | 2025-02-07T02:45:35 | 2025-02-07T02:45:35 | NONE | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #732
<!-- Please provide a brief overview of the changes implemented -->
#### Description
Replaced all enums with C++ enum classes and added streaming operator<< functions where needed.
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/778/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/778/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/778",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/778",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/778.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/778.patch",
"merged_at": "2025-02-07T02:45:35"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/777 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/777/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/777/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/777/events | https://github.com/UWB-Biocomputing/Graphitti/pull/777 | 2,811,441,374 | PR_kwDOEEdqD86JAKE6 | 777 | [issue-745] Refactor where summation is calculated | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2159406989,
"node_id": "MDU6TGFiZWwyMTU5NDA2OTg5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/GPU",
"name": "GPU",
"color": "009800",
"default": false,
"description": ""
},
{
"id": 2911226130,
"node_id": "MDU6TGFiZWwyOTExMjI2MTMw",
"url... | closed | false | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url"... | null | [
"@stiber ran the GPU unit and regression tests as well and they all passed so I think this change is ready for a review.",
"Nick, did you want to request a review from me? That's done under \"reviewers\", not \"assignees\"...",
"@stiber yes, that was my intention. Sorry about that. I will switch that around.",
... | 2025-01-26T10:10:05 | 2025-02-03T23:32:49 | 2025-02-03T23:32:39 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #745
<!-- Please provide a brief overview of the changes implemented -->
#### Description
The summation point logic was being done in the neuron edges for the CPU model while the GPU model had a calcSummationPoint method that handled the GPU-side summation point logic. The feature branch refactors this by introducing a integrateVertexInputs method to AllVertices for both CPU and GPU. The neuron implementation of AllVertices can then implement the summation point logic in this method. This refactor also allows models types other than neuron (such as 911) to define how they want to integration their vertex inputs since not all model types will use summation point logic.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [ ] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/777/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/777/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/777",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/777",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/777.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/777.patch",
"merged_at": "2025-02-03T23:32:39"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/776 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/776/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/776/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/776/events | https://github.com/UWB-Biocomputing/Graphitti/issues/776 | 2,811,380,479 | I_kwDOEEdqD86nkkL_ | 776 | Remove note regarding GPU regression tests in Unit Test page | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423152,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTUy",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/documentation",
"name": "documentation",
"color": "0075ca",
"default": true,
"description": "Improvements or additions to documentation"
},
{
"id": 21... | open | false | null | [] | null | [] | 2025-01-26T07:53:53 | 2025-01-26T07:53:53 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | The below note is no longer correct. We now have a separate GPU regression GoodOutput folder that is tested against when we do the regression tests. These files were generated when running the GPU-version of the simulator so the results should match exactly. Therefore, the note should be removed.
 | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/776/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/776/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/775 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/775/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/775/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/775/events | https://github.com/UWB-Biocomputing/Graphitti/issues/775 | 2,808,132,739 | I_kwDOEEdqD86nYLSD | 775 | Determine if it's possible to apply version constraints on dependencies in cmake | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423156,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTU2",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/enhancement",
"name": "enhancement",
"color": "a2eeef",
"default": true,
"description": "New feature or request"
},
{
"id": 2144423165,
"node_id":... | open | false | null | [] | null | [] | 2025-01-23T23:16:30 | 2025-01-23T23:16:30 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | And, if so, let's do it to avoid problems building on other systems. | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/775/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/775/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/774 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/774/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/774/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/774/events | https://github.com/UWB-Biocomputing/Graphitti/pull/774 | 2,805,786,794 | PR_kwDOEEdqD86Is-QN | 774 | [ISSUE-404] Create New Conditional Compilation Switch for Testing | {
"login": "priyadhanu14",
"id": 71185173,
"node_id": "MDQ6VXNlcjcxMTg1MTcz",
"avatar_url": "https://avatars.githubusercontent.com/u/71185173?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/priyadhanu14",
"html_url": "https://github.com/priyadhanu14",
"followers_url": "https://api.github.com/users/priyadhanu14/followers",
"following_url": "https://api.github.com/users/priyadhanu14/following{/other_user}",
"gists_url": "https://api.github.com/users/priyadhanu14/gists{/gist_id}",
"starred_url": "https://api.github.com/users/priyadhanu14/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/priyadhanu14/subscriptions",
"organizations_url": "https://api.github.com/users/priyadhanu14/orgs",
"repos_url": "https://api.github.com/users/priyadhanu14/repos",
"events_url": "https://api.github.com/users/priyadhanu14/events{/privacy}",
"received_events_url": "https://api.github.com/users/priyadhanu14/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | open | false | {
"login": "priyadhanu14",
"id": 71185173,
"node_id": "MDQ6VXNlcjcxMTg1MTcz",
"avatar_url": "https://avatars.githubusercontent.com/u/71185173?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/priyadhanu14",
"html_url": "https://github.com/priyadhanu14",
"followers_url": "https://api.github.com/users/priyadhanu14/followers",
"following_url": "https://api.github.com/users/priyadhanu14/following{/other_user}",
"gists_url": "https://api.github.com/users/priyadhanu14/gists{/gist_id}",
"starred_url": "https://api.github.com/users/priyadhanu14/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/priyadhanu14/subscriptions",
"organizations_url": "https://api.github.com/users/priyadhanu14/orgs",
"repos_url": "https://api.github.com/users/priyadhanu14/repos",
"events_url": "https://api.github.com/users/priyadhanu14/events{/privacy}",
"received_events_url": "https://api.github.com/users/priyadhanu14/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "priyadhanu14",
"id": 71185173,
"node_id": "MDQ6VXNlcjcxMTg1MTcz",
"avatar_url": "https://avatars.githubusercontent.com/u/71185173?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/priyadhanu14",
"html_url": "https://github.com/priyadhanu14",
"followers_url": "... | null | [] | 2025-01-23T03:01:12 | 2025-02-02T23:43:09 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #404
<!-- Please provide a brief overview of the changes implemented -->
#### Description
Created new conditional compilation switch for testing.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [ ] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/774/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/774/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/774",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/774",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/774.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/774.patch",
"merged_at": null
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/773 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/773/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/773/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/773/events | https://github.com/UWB-Biocomputing/Graphitti/issues/773 | 2,805,349,583 | I_kwDOEEdqD86nNjzP | 773 | Fix documentation and comments for GPU build | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423152,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTUy",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/documentation",
"name": "documentation",
"color": "0075ca",
"default": true,
"description": "Improvements or additions to documentation"
},
{
"id": 21... | open | false | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_u... | null | [] | 2025-01-22T21:08:31 | 2025-01-31T05:20:44 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | The following line of code has its spacing almost completely wrong:
https://github.com/UWB-Biocomputing/Graphitti/blob/617ada45a934d47e1a5e5cbe602a8ea35fa34d3d/CMakeLists.txt#L11
Moreover, this information should be added to the student Quickstart to make it clear how to compile and build for the GPU. | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/773/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/773/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/772 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/772/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/772/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/772/events | https://github.com/UWB-Biocomputing/Graphitti/issues/772 | 2,805,295,156 | I_kwDOEEdqD86nNWg0 | 772 | Rename and clean up ConnGrowth methods | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2159406989,
"node_id": "MDU6TGFiZWwyMTU5NDA2OTg5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/GPU",
"name": "GPU",
"color": "009800",
"default": false,
"description": ""
},
{
"id": 2159503249,
"node_id": "MDU6TGFiZWwyMTU5NTAzMjQ5",
"url... | open | false | null | [] | null | [] | 2025-01-22T20:35:58 | 2025-01-22T20:35:58 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Look at the support methods. For example, `ConnGrowth::updateConns()` doesn't do what its name implies. Moreover, its computation of results seems inefficient and makes weird use of the weight matrix, and seems to make the GPU implementation awkward. | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/772/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/772/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/771 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/771/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/771/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/771/events | https://github.com/UWB-Biocomputing/Graphitti/issues/771 | 2,805,290,546 | I_kwDOEEdqD86nNVYy | 771 | Resolve ownership of edge weight information between edge and connections classes | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2159406989,
"node_id": "MDU6TGFiZWwyMTU5NDA2OTg5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/GPU",
"name": "GPU",
"color": "009800",
"default": false,
"description": ""
},
{
"id": 2911226130,
"node_id": "MDU6TGFiZWwyOTExMjI2MTMw",
"url... | open | false | null | [] | null | [] | 2025-01-22T20:33:00 | 2025-01-22T20:33:00 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Right now, this is tied too deeply into the `ConnGrowth` class, due to historical reasons and the fact that `ConnGrowth` needs to update the edge weights. But it perhaps makes sense for the edges to own their weights. Moreover, for other connections classes, such as `ConnStatic` and STDP simulations, the edges update their own weights. Also, I think that the different apparent weight matrix data actually holds different values: one may be just area of overlap during a growth simulation, while the other has signed and scaled down actual weight values.
There is of course an intersection with the GPU implementation, and the GPU implementation needs to mirror the CPU implementation (including any modifications). This should also take into account the ability to copy such information back and forth between the host and device. | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/771/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/771/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/770 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/770/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/770/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/770/events | https://github.com/UWB-Biocomputing/Graphitti/issues/770 | 2,805,236,785 | I_kwDOEEdqD86nNIQx | 770 | Refactor Edge class data members | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2159406989,
"node_id": "MDU6TGFiZWwyMTU5NDA2OTg5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/GPU",
"name": "GPU",
"color": "009800",
"default": false,
"description": ""
},
{
"id": 2911226130,
"node_id": "MDU6TGFiZWwyOTExMjI2MTMw",
"url... | open | false | null | [] | null | [] | 2025-01-22T20:00:47 | 2025-01-22T20:00:47 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | The edge classes have a number of data members that are almost certainly members of the wrong classes. For instance, `AllEdges` owns the `W_` edge weights; these aren't relevant to the 911 edge classes. Moreover, data member ownership is not consistent between the class members and the corresponding GPU device structs (and they should always be identical). | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/770/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/770/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/769 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/769/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/769/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/769/events | https://github.com/UWB-Biocomputing/Graphitti/issues/769 | 2,800,989,334 | I_kwDOEEdqD86m87SW | 769 | Add dependency management to OperationManager | {
"login": "BenYang2002",
"id": 96927991,
"node_id": "U_kgDOBccA9w",
"avatar_url": "https://avatars.githubusercontent.com/u/96927991?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/BenYang2002",
"html_url": "https://github.com/BenYang2002",
"followers_url": "https://api.github.com/users/BenYang2002/followers",
"following_url": "https://api.github.com/users/BenYang2002/following{/other_user}",
"gists_url": "https://api.github.com/users/BenYang2002/gists{/gist_id}",
"starred_url": "https://api.github.com/users/BenYang2002/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/BenYang2002/subscriptions",
"organizations_url": "https://api.github.com/users/BenYang2002/orgs",
"repos_url": "https://api.github.com/users/BenYang2002/repos",
"events_url": "https://api.github.com/users/BenYang2002/events{/privacy}",
"received_events_url": "https://api.github.com/users/BenYang2002/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423156,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTU2",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/enhancement",
"name": "enhancement",
"color": "a2eeef",
"default": true,
"description": "New feature or request"
},
{
"id": 4213476467,
"node_id":... | open | false | {
"login": "BenYang2002",
"id": 96927991,
"node_id": "U_kgDOBccA9w",
"avatar_url": "https://avatars.githubusercontent.com/u/96927991?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/BenYang2002",
"html_url": "https://github.com/BenYang2002",
"followers_url": "https://api.github.com/users/BenYang2002/followers",
"following_url": "https://api.github.com/users/BenYang2002/following{/other_user}",
"gists_url": "https://api.github.com/users/BenYang2002/gists{/gist_id}",
"starred_url": "https://api.github.com/users/BenYang2002/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/BenYang2002/subscriptions",
"organizations_url": "https://api.github.com/users/BenYang2002/orgs",
"repos_url": "https://api.github.com/users/BenYang2002/repos",
"events_url": "https://api.github.com/users/BenYang2002/events{/privacy}",
"received_events_url": "https://api.github.com/users/BenYang2002/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "BenYang2002",
"id": 96927991,
"node_id": "U_kgDOBccA9w",
"avatar_url": "https://avatars.githubusercontent.com/u/96927991?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/BenYang2002",
"html_url": "https://github.com/BenYang2002",
"followers_url": "https://api... | null | [] | 2025-01-21T08:07:39 | 2025-01-22T17:32:45 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Refactor OperationManager to support dependency management, enabling operations to declare and resolve dependencies automatically. This will ensure that when a top-level operation (e.g., A) is executed, its dependencies (e.g., B and C) are resolved and executed in the correct order. Update the registration process to include dependencies, enhance executeOperation to handle resolution recursively, and add cycle detection to prevent invalid dependencies. This change simplifies operation workflows, improves modularity, and reduces the potential for manual errors in execution order. | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/769/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/769/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/768 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/768/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/768/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/768/events | https://github.com/UWB-Biocomputing/Graphitti/issues/768 | 2,800,152,107 | I_kwDOEEdqD86m5u4r | 768 | Update comments for 911 input generation code | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423152,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTUy",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/documentation",
"name": "documentation",
"color": "0075ca",
"default": true,
"description": "Improvements or additions to documentation"
},
{
"id": 30... | open | false | {
"login": "rimjhimsudhesh",
"id": 110277428,
"node_id": "U_kgDOBpKzNA",
"avatar_url": "https://avatars.githubusercontent.com/u/110277428?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rimjhimsudhesh",
"html_url": "https://github.com/rimjhimsudhesh",
"followers_url": "https://api.github.com/users/rimjhimsudhesh/followers",
"following_url": "https://api.github.com/users/rimjhimsudhesh/following{/other_user}",
"gists_url": "https://api.github.com/users/rimjhimsudhesh/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rimjhimsudhesh/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rimjhimsudhesh/subscriptions",
"organizations_url": "https://api.github.com/users/rimjhimsudhesh/orgs",
"repos_url": "https://api.github.com/users/rimjhimsudhesh/repos",
"events_url": "https://api.github.com/users/rimjhimsudhesh/events{/privacy}",
"received_events_url": "https://api.github.com/users/rimjhimsudhesh/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "rimjhimsudhesh",
"id": 110277428,
"node_id": "U_kgDOBpKzNA",
"avatar_url": "https://avatars.githubusercontent.com/u/110277428?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rimjhimsudhesh",
"html_url": "https://github.com/rimjhimsudhesh",
"followers_url": "... | null | [] | 2025-01-20T19:30:15 | 2025-01-20T19:30:15 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | null | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/768/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/768/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/767 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/767/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/767/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/767/events | https://github.com/UWB-Biocomputing/Graphitti/pull/767 | 2,794,268,612 | PR_kwDOEEdqD86IFzkB | 767 | [ISSUE-753] CMakeLists fixes | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2159406989,
"node_id": "MDU6TGFiZWwyMTU5NDA2OTg5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/GPU",
"name": "GPU",
"color": "009800",
"default": false,
"description": ""
},
{
"id": 2159503249,
"node_id": "MDU6TGFiZWwyMTU5NTAzMjQ5",
"url... | closed | false | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_u... | null | [
"I wanted to provide a complete update regarding the segmentation fault issue in GGraphitti. After investigation, I discovered that two shared libraries were each including AllSynapsesDeviceFunc.cpp (and its corresponding header). This file declares a device variable\r\n\r\n`extern __device__ enumClassSynapses clas... | 2025-01-17T02:00:51 | 2025-01-25T00:32:09 | 2025-01-25T00:31:48 | NONE | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Closes #753
#### Description
I was unable to run ggraphitti with the old CMakeLists configuration. I was able to compile and link, but when the program loaded there was a seg fault. I investigated and there is an external variable, classSynapses_d, that is defined in AllSynapsesDeviceFuncs_d.cpp. Under the old CMakeLists configuration, this file was included in multiple libraries, two of which were linked together. I am not sure how this works.
I changed the source files for the three libraries, edges, vertices, and connections, to only include the necessary sources for each library. In addition to this change, I made the libraries static. This solved the problem I had, and now ggraphitti loads and runs correctly.
#### Checklist (Mandatory for new features)
- [ ] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/767/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/767/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/767",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/767",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/767.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/767.patch",
"merged_at": "2025-01-25T00:31:48"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/766 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/766/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/766/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/766/events | https://github.com/UWB-Biocomputing/Graphitti/pull/766 | 2,793,931,365 | PR_kwDOEEdqD86IEnl2 | 766 | [ISSUE-749] Add Andrew Madison to the Contributors.md file. | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_u... | null | [] | 2025-01-16T22:44:11 | 2025-01-20T20:50:02 | 2025-01-20T20:49:52 | NONE | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Closes #749
This PR adds Andrew Madison to the Contributors.md file.
| {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/766/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/766/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/766",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/766",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/766.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/766.patch",
"merged_at": "2025-01-20T20:49:52"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/765 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/765/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/765/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/765/events | https://github.com/UWB-Biocomputing/Graphitti/pull/765 | 2,793,606,454 | PR_kwDOEEdqD86IDfg1 | 765 | [Issue-688] Renamed folder from Graph Generation to GraphGeneration | {
"login": "jasleenksaini",
"id": 129341344,
"node_id": "U_kgDOB7WXoA",
"avatar_url": "https://avatars.githubusercontent.com/u/129341344?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jasleenksaini",
"html_url": "https://github.com/jasleenksaini",
"followers_url": "https://api.github.com/users/jasleenksaini/followers",
"following_url": "https://api.github.com/users/jasleenksaini/following{/other_user}",
"gists_url": "https://api.github.com/users/jasleenksaini/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jasleenksaini/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jasleenksaini/subscriptions",
"organizations_url": "https://api.github.com/users/jasleenksaini/orgs",
"repos_url": "https://api.github.com/users/jasleenksaini/repos",
"events_url": "https://api.github.com/users/jasleenksaini/events{/privacy}",
"received_events_url": "https://api.github.com/users/jasleenksaini/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | {
"login": "jasleenksaini",
"id": 129341344,
"node_id": "U_kgDOB7WXoA",
"avatar_url": "https://avatars.githubusercontent.com/u/129341344?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jasleenksaini",
"html_url": "https://github.com/jasleenksaini",
"followers_url": "https://api.github.com/users/jasleenksaini/followers",
"following_url": "https://api.github.com/users/jasleenksaini/following{/other_user}",
"gists_url": "https://api.github.com/users/jasleenksaini/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jasleenksaini/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jasleenksaini/subscriptions",
"organizations_url": "https://api.github.com/users/jasleenksaini/orgs",
"repos_url": "https://api.github.com/users/jasleenksaini/repos",
"events_url": "https://api.github.com/users/jasleenksaini/events{/privacy}",
"received_events_url": "https://api.github.com/users/jasleenksaini/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "jasleenksaini",
"id": 129341344,
"node_id": "U_kgDOB7WXoA",
"avatar_url": "https://avatars.githubusercontent.com/u/129341344?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jasleenksaini",
"html_url": "https://github.com/jasleenksaini",
"followers_url": "htt... | null | [] | 2025-01-16T19:31:17 | 2025-01-20T18:46:59 | 2025-01-20T18:46:58 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Resolves #688
#### Description
Renamed folder from Graph Generation to GraphGeneration for accessibility. No changes to code or documentation.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [ ] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed
| {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/765/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/765/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/765",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/765",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/765.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/765.patch",
"merged_at": null
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/764 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/764/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/764/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/764/events | https://github.com/UWB-Biocomputing/Graphitti/pull/764 | 2,791,923,197 | PR_kwDOEEdqD86H9rm8 | 764 | [ISSUE 762] Publishing machine learning models | {
"login": "rimjhimsudhesh",
"id": 110277428,
"node_id": "U_kgDOBpKzNA",
"avatar_url": "https://avatars.githubusercontent.com/u/110277428?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rimjhimsudhesh",
"html_url": "https://github.com/rimjhimsudhesh",
"followers_url": "https://api.github.com/users/rimjhimsudhesh/followers",
"following_url": "https://api.github.com/users/rimjhimsudhesh/following{/other_user}",
"gists_url": "https://api.github.com/users/rimjhimsudhesh/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rimjhimsudhesh/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rimjhimsudhesh/subscriptions",
"organizations_url": "https://api.github.com/users/rimjhimsudhesh/orgs",
"repos_url": "https://api.github.com/users/rimjhimsudhesh/repos",
"events_url": "https://api.github.com/users/rimjhimsudhesh/events{/privacy}",
"received_events_url": "https://api.github.com/users/rimjhimsudhesh/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | open | false | null | [] | null | [] | 2025-01-16T07:36:23 | 2025-01-19T00:48:10 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #
<!-- Please provide a brief overview of the changes implemented -->
#### Description
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [ ] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [ ] GPU Test: `test-medium-connected.xml` Passed
- [ ] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/764/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/764/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/764",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/764",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/764.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/764.patch",
"merged_at": null
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/763 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/763/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/763/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/763/events | https://github.com/UWB-Biocomputing/Graphitti/pull/763 | 2,791,337,623 | PR_kwDOEEdqD86H7qX4 | 763 | [ISSUE-747] STDP Configfile Cleanup | {
"login": "varndorfer",
"id": 20168613,
"node_id": "MDQ6VXNlcjIwMTY4NjEz",
"avatar_url": "https://avatars.githubusercontent.com/u/20168613?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/varndorfer",
"html_url": "https://github.com/varndorfer",
"followers_url": "https://api.github.com/users/varndorfer/followers",
"following_url": "https://api.github.com/users/varndorfer/following{/other_user}",
"gists_url": "https://api.github.com/users/varndorfer/gists{/gist_id}",
"starred_url": "https://api.github.com/users/varndorfer/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/varndorfer/subscriptions",
"organizations_url": "https://api.github.com/users/varndorfer/orgs",
"repos_url": "https://api.github.com/users/varndorfer/repos",
"events_url": "https://api.github.com/users/varndorfer/events{/privacy}",
"received_events_url": "https://api.github.com/users/varndorfer/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | {
"login": "varndorfer",
"id": 20168613,
"node_id": "MDQ6VXNlcjIwMTY4NjEz",
"avatar_url": "https://avatars.githubusercontent.com/u/20168613?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/varndorfer",
"html_url": "https://github.com/varndorfer",
"followers_url": "https://api.github.com/users/varndorfer/followers",
"following_url": "https://api.github.com/users/varndorfer/following{/other_user}",
"gists_url": "https://api.github.com/users/varndorfer/gists{/gist_id}",
"starred_url": "https://api.github.com/users/varndorfer/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/varndorfer/subscriptions",
"organizations_url": "https://api.github.com/users/varndorfer/orgs",
"repos_url": "https://api.github.com/users/varndorfer/repos",
"events_url": "https://api.github.com/users/varndorfer/events{/privacy}",
"received_events_url": "https://api.github.com/users/varndorfer/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "varndorfer",
"id": 20168613,
"node_id": "MDQ6VXNlcjIwMTY4NjEz",
"avatar_url": "https://avatars.githubusercontent.com/u/20168613?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/varndorfer",
"html_url": "https://github.com/varndorfer",
"followers_url": "https:... | null | [] | 2025-01-16T00:30:32 | 2025-01-20T23:31:20 | 2025-01-20T23:31:12 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Keep the canonical STDP config files known to exhibit bursting behavior:
* tR_1.0--fE_0.90_10000.xml
* tR_1.0--fE_0.98_10000.xml
* tR_1.9--fE_0.90_10000.xml
* tR_1.9--fE_0.98_10000.xml
* fE_0.90_10000.graphml
* fE_0.98_10000.graphml
Remove:
* tR_0.1*
* fE_0.80*
* full_*
* half_*
* any other duplicate files
Add:
* STDP config file to run after the canonical growth simulations (stdp_fE_0.90_10000.xml)
Also commented out the lines that need serialFileAccessTest in CMakeLists.txt. These test files should be re-added by issue-754
<!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #747
<!-- Please provide a brief overview of the changes implemented -->
#### Description
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [ ] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "varndorfer",
"id": 20168613,
"node_id": "MDQ6VXNlcjIwMTY4NjEz",
"avatar_url": "https://avatars.githubusercontent.com/u/20168613?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/varndorfer",
"html_url": "https://github.com/varndorfer",
"followers_url": "https://api.github.com/users/varndorfer/followers",
"following_url": "https://api.github.com/users/varndorfer/following{/other_user}",
"gists_url": "https://api.github.com/users/varndorfer/gists{/gist_id}",
"starred_url": "https://api.github.com/users/varndorfer/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/varndorfer/subscriptions",
"organizations_url": "https://api.github.com/users/varndorfer/orgs",
"repos_url": "https://api.github.com/users/varndorfer/repos",
"events_url": "https://api.github.com/users/varndorfer/events{/privacy}",
"received_events_url": "https://api.github.com/users/varndorfer/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/763/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/763/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/763",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/763",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/763.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/763.patch",
"merged_at": "2025-01-20T23:31:12"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/762 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/762/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/762/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/762/events | https://github.com/UWB-Biocomputing/Graphitti/issues/762 | 2,790,943,249 | I_kwDOEEdqD86mWmoR | 762 | Publishing Code for Machine Learning Models for Analyzing 911 calls | {
"login": "rimjhimsudhesh",
"id": 110277428,
"node_id": "U_kgDOBpKzNA",
"avatar_url": "https://avatars.githubusercontent.com/u/110277428?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rimjhimsudhesh",
"html_url": "https://github.com/rimjhimsudhesh",
"followers_url": "https://api.github.com/users/rimjhimsudhesh/followers",
"following_url": "https://api.github.com/users/rimjhimsudhesh/following{/other_user}",
"gists_url": "https://api.github.com/users/rimjhimsudhesh/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rimjhimsudhesh/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rimjhimsudhesh/subscriptions",
"organizations_url": "https://api.github.com/users/rimjhimsudhesh/orgs",
"repos_url": "https://api.github.com/users/rimjhimsudhesh/repos",
"events_url": "https://api.github.com/users/rimjhimsudhesh/events{/privacy}",
"received_events_url": "https://api.github.com/users/rimjhimsudhesh/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | {
"login": "rimjhimsudhesh",
"id": 110277428,
"node_id": "U_kgDOBpKzNA",
"avatar_url": "https://avatars.githubusercontent.com/u/110277428?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rimjhimsudhesh",
"html_url": "https://github.com/rimjhimsudhesh",
"followers_url": "https://api.github.com/users/rimjhimsudhesh/followers",
"following_url": "https://api.github.com/users/rimjhimsudhesh/following{/other_user}",
"gists_url": "https://api.github.com/users/rimjhimsudhesh/gists{/gist_id}",
"starred_url": "https://api.github.com/users/rimjhimsudhesh/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/rimjhimsudhesh/subscriptions",
"organizations_url": "https://api.github.com/users/rimjhimsudhesh/orgs",
"repos_url": "https://api.github.com/users/rimjhimsudhesh/repos",
"events_url": "https://api.github.com/users/rimjhimsudhesh/events{/privacy}",
"received_events_url": "https://api.github.com/users/rimjhimsudhesh/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "rimjhimsudhesh",
"id": 110277428,
"node_id": "U_kgDOBpKzNA",
"avatar_url": "https://avatars.githubusercontent.com/u/110277428?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/rimjhimsudhesh",
"html_url": "https://github.com/rimjhimsudhesh",
"followers_url": "... | null | [
"No need to publish this into the repo."
] | 2025-01-15T21:25:03 | 2025-01-20T19:28:10 | 2025-01-20T19:28:09 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | null | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/762/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/762/timeline | null | completed | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/761 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/761/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/761/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/761/events | https://github.com/UWB-Biocomputing/Graphitti/pull/761 | 2,790,674,664 | PR_kwDOEEdqD86H5TA1 | 761 | [Issue-752] add per user dev branch docs | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423152,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTUy",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/documentation",
"name": "documentation",
"color": "0075ca",
"default": true,
"description": "Improvements or additions to documentation"
}
] | closed | false | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.c... | null | [
"Hi @d-kamath how does this describe things? If you select \"View file\" from the `...` menu for the Markdown file, GitHub will render all of the Mermaid diagrams.",
"The failed checks have me worried.",
"I have merged my PR #755. Please pull the remote `SharedDevelopment` branch into `issue-752-add-per-user-de... | 2025-01-15T19:34:01 | 2025-01-20T18:45:00 | 2025-01-20T18:42:53 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #752
<!-- Please provide a brief overview of the changes implemented -->
#### Description
Rewrite of GitFlow documentation to describe shared/personal development branches. All Mermaid diagrams now included using the GitHub Mermaid code block facility (which renders the diagrams within the GitHub Markdown renderer, without needing to go out to Mermaid for image rendering).
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/761/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/761/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/761",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/761",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/761.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/761.patch",
"merged_at": "2025-01-20T18:42:53"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/760 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/760/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/760/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/760/events | https://github.com/UWB-Biocomputing/Graphitti/pull/760 | 2,790,663,463 | PR_kwDOEEdqD86H5Qjb | 760 | [Issue-752] add per user dev branch docs | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423152,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTUy",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/documentation",
"name": "documentation",
"color": "0075ca",
"default": true,
"description": "Improvements or additions to documentation"
}
] | closed | false | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.c... | null | [
"Wrong base branch; should merge into SharedDevelopment."
] | 2025-01-15T19:27:00 | 2025-01-15T19:34:47 | 2025-01-15T19:34:46 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #752
<!-- Please provide a brief overview of the changes implemented -->
#### Description
Rewrite of GitFlow documentation to describe shared/personal development branches. All Mermaid diagrams now included using the GitHub Mermaid code block facility (which renders the diagrams within the GitHub Markdown renderer, without needing to go out to Mermaid for image rendering).
| {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/760/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/760/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/760",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/760",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/760.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/760.patch",
"merged_at": null
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/759 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/759/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/759/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/759/events | https://github.com/UWB-Biocomputing/Graphitti/issues/759 | 2,790,305,372 | I_kwDOEEdqD86mUK5c | 759 | Do we need both of these conditions to trigger testing? | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423158,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTU4",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/good%20first%20issue",
"name": "good first issue",
"color": "7057ff",
"default": true,
"description": "Good for newcomers"
},
{
"id": 2144423165,
... | open | false | null | [] | null | [] | 2025-01-15T16:32:22 | 2025-01-15T16:32:23 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | For both the testing and format actions, do we need to trigger on both pushes and PRs? Maybe I could imagine that for format checks, but perhaps this is generating duplicate action executions in PRs? Worth looking into, and an opportunity to learn more about GitHub actions.
https://github.com/UWB-Biocomputing/Graphitti/blob/62ad162a8472397f2a5436f0a9a52da23c4f2f7b/.github/workflows/tests.yml#L3-L7 | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/759/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/759/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/758 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/758/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/758/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/758/events | https://github.com/UWB-Biocomputing/Graphitti/pull/758 | 2,788,606,923 | PR_kwDOEEdqD86HyMlo | 758 | [hotfix-issue-756] Apply hotfixes to SharedDevelopment | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2159503249,
"node_id": "MDU6TGFiZWwyMTU5NTAzMjQ5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/cleanup",
"name": "cleanup",
"color": "0075ca",
"default": false,
"description": ""
},
{
"id": 3524965898,
"node_id": "LA_kwDOEEdqD87SGrYK",
"... | closed | false | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.c... | null | [
"We need to merge PR #755 to fix the regression test. Additionally, we should consider adding the following configuration to avoid running regression tests on documentation files:\r\n```\r\npaths-ignore:\r\n - '**.md'\r\n - '**.yml'\r\n``` "
] | 2025-01-15T01:16:49 | 2025-01-15T16:27:29 | 2025-01-15T16:27:28 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | null | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/758/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/758/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/758",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/758",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/758.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/758.patch",
"merged_at": "2025-01-15T16:27:28"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/757 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/757/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/757/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/757/events | https://github.com/UWB-Biocomputing/Graphitti/pull/757 | 2,785,921,460 | PR_kwDOEEdqD86Ho6vb | 757 | [hotfix-issue-756] Change test actions to work on any PR | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2159503249,
"node_id": "MDU6TGFiZWwyMTU5NTAzMjQ5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/cleanup",
"name": "cleanup",
"color": "0075ca",
"default": false,
"description": ""
},
{
"id": 3524965898,
"node_id": "LA_kwDOEEdqD87SGrYK",
"... | closed | false | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.c... | null | [] | 2025-01-14T01:30:25 | 2025-01-15T01:13:07 | 2025-01-15T01:11:40 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | So, all tests will run for any PR.
<!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #756
<!-- Please provide a brief overview of the changes implemented -->
#### Description
Changed the two testing actions to trigger on type of PR activity, rather than only the master and development base branches.
| {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/757/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/757/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/757",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/757",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/757.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/757.patch",
"merged_at": "2025-01-15T01:11:40"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/756 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/756/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/756/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/756/events | https://github.com/UWB-Biocomputing/Graphitti/issues/756 | 2,785,897,989 | I_kwDOEEdqD86mDW4F | 756 | Hotfix GitHub actions, etc. to accommodate new personal development branch model | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2159503249,
"node_id": "MDU6TGFiZWwyMTU5NTAzMjQ5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/cleanup",
"name": "cleanup",
"color": "0075ca",
"default": false,
"description": ""
},
{
"id": 3524965898,
"node_id": "LA_kwDOEEdqD87SGrYK",
"... | closed | false | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.c... | null | [
"When you create a pull request to merge branch A into branch B on GitHub, the version of the action that will run is the one from the base branch of the pull request, which in this case is branch B[1][8]. This is because GitHub Actions uses the workflow definition from the base branch when processing pull requests... | 2025-01-14T01:17:15 | 2025-01-15T01:11:41 | 2025-01-15T01:11:41 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | - Change pull request so that it will work for any PR, with no restriction to specific branches. This will make it run for any PR merging into any personal or shared development branch. Suggest the following:
```
on:
pull_request:
types: [opened, synchronize, reopened]
```
- Rename "development" to "SharedDevelopment"
This will need to be a hotfix, to merge into both "master" and "SharedDevelopment". See next comment for (lengthy, of course) LLM explanation. | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/756/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/756/timeline | null | completed | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/755 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/755/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/755/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/755/events | https://github.com/UWB-Biocomputing/Graphitti/pull/755 | 2,781,266,527 | PR_kwDOEEdqD86HZB_B | 755 | [ISSUE 754] Add serial-File-Access-Test Removed During Serialization Test Update | {
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.github.com/users/d-kamath/followers",
"following_url": "https://api.github.com/users/d-kamath/following{/other_user}",
"gists_url": "https://api.github.com/users/d-kamath/gists{/gist_id}",
"starred_url": "https://api.github.com/users/d-kamath/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/d-kamath/subscriptions",
"organizations_url": "https://api.github.com/users/d-kamath/orgs",
"repos_url": "https://api.github.com/users/d-kamath/repos",
"events_url": "https://api.github.com/users/d-kamath/events{/privacy}",
"received_events_url": "https://api.github.com/users/d-kamath/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423149,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTQ5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/bug",
"name": "bug",
"color": "d73a4a",
"default": true,
"description": "Something isn't working"
},
{
"id": 3524965898,
"node_id": "LA_kwDOEEdqD8... | closed | false | {
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.github.com/users/d-kamath/followers",
"following_url": "https://api.github.com/users/d-kamath/following{/other_user}",
"gists_url": "https://api.github.com/users/d-kamath/gists{/gist_id}",
"starred_url": "https://api.github.com/users/d-kamath/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/d-kamath/subscriptions",
"organizations_url": "https://api.github.com/users/d-kamath/orgs",
"repos_url": "https://api.github.com/users/d-kamath/repos",
"events_url": "https://api.github.com/users/d-kamath/events{/privacy}",
"received_events_url": "https://api.github.com/users/d-kamath/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.... | null | [] | 2025-01-10T21:59:32 | 2025-01-16T04:21:15 | 2025-01-16T04:21:10 | COLLABORATOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #754
<!-- Please provide a brief overview of the changes implemented -->
#### Description
The `serialFileAccessTest` was removed during the cleanup of serialization unit tests. However, the CMake file still had the test linked, which caused a build failure. To resolve this, we are restoring the unit test and ensuring the CMake configuration is updated accordingly.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [ ] Added Documentation
- [x] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [ ] GPU Test: `test-medium-connected.xml` Passed
- [ ] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.github.com/users/d-kamath/followers",
"following_url": "https://api.github.com/users/d-kamath/following{/other_user}",
"gists_url": "https://api.github.com/users/d-kamath/gists{/gist_id}",
"starred_url": "https://api.github.com/users/d-kamath/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/d-kamath/subscriptions",
"organizations_url": "https://api.github.com/users/d-kamath/orgs",
"repos_url": "https://api.github.com/users/d-kamath/repos",
"events_url": "https://api.github.com/users/d-kamath/events{/privacy}",
"received_events_url": "https://api.github.com/users/d-kamath/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/755/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/755/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/755",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/755",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/755.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/755.patch",
"merged_at": "2025-01-16T04:21:09"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/754 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/754/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/754/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/754/events | https://github.com/UWB-Biocomputing/Graphitti/issues/754 | 2,781,240,888 | I_kwDOEEdqD86lxl44 | 754 | Add serialFileAccessTest Removed During Serialization Test Addition | {
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.github.com/users/d-kamath/followers",
"following_url": "https://api.github.com/users/d-kamath/following{/other_user}",
"gists_url": "https://api.github.com/users/d-kamath/gists{/gist_id}",
"starred_url": "https://api.github.com/users/d-kamath/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/d-kamath/subscriptions",
"organizations_url": "https://api.github.com/users/d-kamath/orgs",
"repos_url": "https://api.github.com/users/d-kamath/repos",
"events_url": "https://api.github.com/users/d-kamath/events{/privacy}",
"received_events_url": "https://api.github.com/users/d-kamath/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2159503249,
"node_id": "MDU6TGFiZWwyMTU5NTAzMjQ5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/cleanup",
"name": "cleanup",
"color": "0075ca",
"default": false,
"description": ""
},
{
"id": 4080571584,
"node_id": "LA_kwDOEEdqD87zOJTA",
"... | closed | false | {
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.github.com/users/d-kamath/followers",
"following_url": "https://api.github.com/users/d-kamath/following{/other_user}",
"gists_url": "https://api.github.com/users/d-kamath/gists{/gist_id}",
"starred_url": "https://api.github.com/users/d-kamath/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/d-kamath/subscriptions",
"organizations_url": "https://api.github.com/users/d-kamath/orgs",
"repos_url": "https://api.github.com/users/d-kamath/repos",
"events_url": "https://api.github.com/users/d-kamath/events{/privacy}",
"received_events_url": "https://api.github.com/users/d-kamath/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.... | null | [] | 2025-01-10T21:46:08 | 2025-01-24T22:07:37 | 2025-01-24T22:07:37 | COLLABORATOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | null | {
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.github.com/users/d-kamath/followers",
"following_url": "https://api.github.com/users/d-kamath/following{/other_user}",
"gists_url": "https://api.github.com/users/d-kamath/gists{/gist_id}",
"starred_url": "https://api.github.com/users/d-kamath/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/d-kamath/subscriptions",
"organizations_url": "https://api.github.com/users/d-kamath/orgs",
"repos_url": "https://api.github.com/users/d-kamath/repos",
"events_url": "https://api.github.com/users/d-kamath/events{/privacy}",
"received_events_url": "https://api.github.com/users/d-kamath/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/754/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/754/timeline | null | completed | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/753 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/753/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/753/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/753/events | https://github.com/UWB-Biocomputing/Graphitti/issues/753 | 2,781,234,087 | I_kwDOEEdqD86lxkOn | 753 | CMakeLists needs to have its CUDA files/library creation cleaned up | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2159406989,
"node_id": "MDU6TGFiZWwyMTU5NDA2OTg5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/GPU",
"name": "GPU",
"color": "009800",
"default": false,
"description": ""
},
{
"id": 2159503249,
"node_id": "MDU6TGFiZWwyMTU5NTAzMjQ5",
"url... | open | false | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_u... | null | [] | 2025-01-10T21:43:36 | 2025-01-10T21:56:05 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Right now, it looks like all of the CUDA files get added to a STATIC library and to a bunch of SHARED libraries. They are also individually deleted from libraries (but maybe not all; maybe just the ones under each subdirectory) explicitly. Instead, we might make all libraries STATIC and only include the relevant CUDA files in each library. Or, alternatively, we might make a single STATIC library with all CUDA files, putting none in with the various subsystems.
This needs to be figure out by someone who really understands CMake.
https://github.com/UWB-Biocomputing/Graphitti/blob/7a50b56ad048c1bdb610d5b6e1351a3e1640ea1a/CMakeLists.txt#L162-L191 | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/753/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/753/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/752 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/752/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/752/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/752/events | https://github.com/UWB-Biocomputing/Graphitti/issues/752 | 2,780,721,547 | I_kwDOEEdqD86lvnGL | 752 | Add documentation of per-user development branch workflow | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423152,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTUy",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/documentation",
"name": "documentation",
"color": "0075ca",
"default": true,
"description": "Improvements or additions to documentation"
},
{
"id": 35... | open | false | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.c... | null | [
"Naming convention for per-user development branch: \"Username-Dev\"\r\n\r\nHotfix branch naming convention: \"hotfix-issue-#-short-desc\"\r\nNote that this is a branch off of \"master\".\r\nStill would have a PR, with naming based on branch, as usual. Assumption is that there are no commits to or releases on \"mas... | 2025-01-10T17:38:27 | 2025-01-10T18:34:29 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | null | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/752/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/752/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/751 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/751/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/751/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/751/events | https://github.com/UWB-Biocomputing/Graphitti/pull/751 | 2,779,314,005 | PR_kwDOEEdqD86HSUbr | 751 | [ISSUE-749] Add Andrew Madison to the Contributors.md file | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_u... | null | [] | 2025-01-10T05:20:35 | 2025-01-16T20:54:50 | 2025-01-16T20:54:49 | NONE | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Closes #749
This PR adds Andrew Madison to the Contributors.txt file.
| {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/751/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/751/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/751",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/751",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/751.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/751.patch",
"merged_at": null
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/750 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/750/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/750/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/750/events | https://github.com/UWB-Biocomputing/Graphitti/pull/750 | 2,779,288,518 | PR_kwDOEEdqD86HSO18 | 750 | [ISSUE-749] Add Andrew Madison to the Contributors.md file. | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_u... | null | [] | 2025-01-10T04:59:42 | 2025-01-10T05:13:40 | 2025-01-10T05:10:22 | NONE | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Closes #749
This PR adds Andrew Madison to the Contributors.md file.
| {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/750/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/750/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/750",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/750",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/750.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/750.patch",
"merged_at": null
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/749 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/749/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/749/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/749/events | https://github.com/UWB-Biocomputing/Graphitti/issues/749 | 2,779,267,974 | I_kwDOEEdqD86lqEOG | 749 | Add Andrew Madison to Contributor List. | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423152,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTUy",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/documentation",
"name": "documentation",
"color": "0075ca",
"default": true,
"description": "Improvements or additions to documentation"
}
] | closed | false | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_u... | null | [] | 2025-01-10T04:41:07 | 2025-01-22T19:26:00 | 2025-01-22T19:26:00 | NONE | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | #### Description
As a part of the onboarding task add Andrew Madison to the Contributors list of Graphitti.
#### Files
Contributors.txt | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/749/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/749/timeline | null | completed | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/748 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/748/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/748/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/748/events | https://github.com/UWB-Biocomputing/Graphitti/issues/748 | 2,778,800,485 | I_kwDOEEdqD86loSFl | 748 | Remove backpropagation support from neurons | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423158,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTU4",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/good%20first%20issue",
"name": "good first issue",
"color": "7057ff",
"default": true,
"description": "Good for newcomers"
},
{
"id": 2159406989,
... | open | false | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_u... | null | [] | 2025-01-09T21:41:42 | 2025-01-25T01:01:00 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | While remnants of this aspirational code still exist, it has never been used or tested and we have no immediate plans for it.
https://github.com/UWB-Biocomputing/Graphitti/blob/d22f59d90a1e5a097d4f26151d6a6e7dc8b11e22/Simulator/Vertices/Neuro/AllLIFNeurons_d.cpp#L148-L176 | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/748/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/748/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/747 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/747/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/747/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/747/events | https://github.com/UWB-Biocomputing/Graphitti/issues/747 | 2,768,276,313 | I_kwDOEEdqD86lAItZ | 747 | Clean Up STDP Config Files | {
"login": "varndorfer",
"id": 20168613,
"node_id": "MDQ6VXNlcjIwMTY4NjEz",
"avatar_url": "https://avatars.githubusercontent.com/u/20168613?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/varndorfer",
"html_url": "https://github.com/varndorfer",
"followers_url": "https://api.github.com/users/varndorfer/followers",
"following_url": "https://api.github.com/users/varndorfer/following{/other_user}",
"gists_url": "https://api.github.com/users/varndorfer/gists{/gist_id}",
"starred_url": "https://api.github.com/users/varndorfer/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/varndorfer/subscriptions",
"organizations_url": "https://api.github.com/users/varndorfer/orgs",
"repos_url": "https://api.github.com/users/varndorfer/repos",
"events_url": "https://api.github.com/users/varndorfer/events{/privacy}",
"received_events_url": "https://api.github.com/users/varndorfer/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2159503249,
"node_id": "MDU6TGFiZWwyMTU5NTAzMjQ5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/cleanup",
"name": "cleanup",
"color": "0075ca",
"default": false,
"description": ""
}
] | closed | false | {
"login": "varndorfer",
"id": 20168613,
"node_id": "MDQ6VXNlcjIwMTY4NjEz",
"avatar_url": "https://avatars.githubusercontent.com/u/20168613?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/varndorfer",
"html_url": "https://github.com/varndorfer",
"followers_url": "https://api.github.com/users/varndorfer/followers",
"following_url": "https://api.github.com/users/varndorfer/following{/other_user}",
"gists_url": "https://api.github.com/users/varndorfer/gists{/gist_id}",
"starred_url": "https://api.github.com/users/varndorfer/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/varndorfer/subscriptions",
"organizations_url": "https://api.github.com/users/varndorfer/orgs",
"repos_url": "https://api.github.com/users/varndorfer/repos",
"events_url": "https://api.github.com/users/varndorfer/events{/privacy}",
"received_events_url": "https://api.github.com/users/varndorfer/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "varndorfer",
"id": 20168613,
"node_id": "MDQ6VXNlcjIwMTY4NjEz",
"avatar_url": "https://avatars.githubusercontent.com/u/20168613?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/varndorfer",
"html_url": "https://github.com/varndorfer",
"followers_url": "https:... | null | [
"Closed by #763 "
] | 2025-01-03T23:07:30 | 2025-01-20T23:33:43 | 2025-01-20T23:33:42 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Keep:
- tR_1.0--fE_0.90_10000.xml
- tR_1.0--fE_0.98_10000.xml
- tR_1.9--fE_0.90_10000.xml
- tR_1.9--fE_0.98_10000.xml
Remove any duplicates of those files. Examples include:
- files that start with full_ and half_
- tR_0.1--*
- fE_0.80* | {
"login": "varndorfer",
"id": 20168613,
"node_id": "MDQ6VXNlcjIwMTY4NjEz",
"avatar_url": "https://avatars.githubusercontent.com/u/20168613?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/varndorfer",
"html_url": "https://github.com/varndorfer",
"followers_url": "https://api.github.com/users/varndorfer/followers",
"following_url": "https://api.github.com/users/varndorfer/following{/other_user}",
"gists_url": "https://api.github.com/users/varndorfer/gists{/gist_id}",
"starred_url": "https://api.github.com/users/varndorfer/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/varndorfer/subscriptions",
"organizations_url": "https://api.github.com/users/varndorfer/orgs",
"repos_url": "https://api.github.com/users/varndorfer/repos",
"events_url": "https://api.github.com/users/varndorfer/events{/privacy}",
"received_events_url": "https://api.github.com/users/varndorfer/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/747/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/747/timeline | null | completed | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/746 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/746/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/746/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/746/events | https://github.com/UWB-Biocomputing/Graphitti/issues/746 | 2,765,372,668 | I_kwDOEEdqD86k1Dz8 | 746 | Update Call struct type member to better mirror GPU | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2159406989,
"node_id": "MDU6TGFiZWwyMTU5NDA2OTg5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/GPU",
"name": "GPU",
"color": "009800",
"default": false,
"description": ""
},
{
"id": 2159503249,
"node_id": "MDU6TGFiZWwyMTU5NTAzMjQ5",
"url... | open | false | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url"... | null | [
"After some reading and testing, this implementation will not work. Below is the logical flow of the change.\n\n1. Start by changing Call.type from string to char[].\n2. Call.type is passed to the InputManager.registerProperty method through the EventMemberPtr argument.\n3. Therefore, EventMemberPtr needs to suppor... | 2025-01-02T02:30:31 | 2025-02-27T23:44:20 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Can likely still use Call types in the GPU world, but the structs definitely can't be of variable size such as string. No neuro type GPU device properties have variable size so we need the NG911 implementation to mirror this.
Lets change the type to a char array. The size of the array is TBH, but we will try starting with size 4.
This will require an update to the InputManager. We plan to leave the type in the input files as string and pull out the first 4 characters for our char array member. | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/746/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/746/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/745 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/745/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/745/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/745/events | https://github.com/UWB-Biocomputing/Graphitti/issues/745 | 2,762,638,618 | I_kwDOEEdqD86kqoUa | 745 | Refactor summation point logic in CPU neuron model to better align with GPU model | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2159406989,
"node_id": "MDU6TGFiZWwyMTU5NDA2OTg5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/GPU",
"name": "GPU",
"color": "009800",
"default": false,
"description": ""
},
{
"id": 2911226130,
"node_id": "MDU6TGFiZWwyOTExMjI2MTMw",
"url... | closed | false | {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url"... | null | [
"@stiber I spent some time thinking about the calcSummationPoint logic issue and outlined my thoughts above. I believe we had worked up to bullet 2 in our last meeting, but didn't really discuss whether that required bullet 3 or not.\r\n\r\nLet me know if the above makes sense or if there is anything that I am miss... | 2024-12-30T04:40:34 | 2025-02-19T19:53:35 | 2025-02-19T19:53:33 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | The GPUModel.cpp has a calcSummationPoint method that implements the GPU version of the summation point logic. On the CPU side, this logic is embedded in the AllSpikingSynapses::advanceEdge method.
This should be pulled out into a calcSummationPoint method that the CPUModel.cpp implements. This method would then get called in the CPUModel::advance method after advancing the edges, similar to to how the GPUModel::advance method behaves.
Some other related changes that could be made:
- Since CPUModel and GPUModel would both be implementing a calcSummationPoint method, this could be added as a virtual method in Model.h for a derived type of model to implement.
- The name "calcSummationPoint" would not be an appropriate name for an NG911 model. Therefore, if we make change 1, we should rename "calcSummationPoint". I propose this method is named "updateVertexState".
- In addition, we wouldn't expect the NG911 model to have the same implementation logic as a neuron model for updateVertexState. I see two ways to resolve this issue:
1. The first is that we could consider changing the current "CPUModel" and "GPUModel" classes to "NeuronCPUModel" and "NeuronGPUModel" respectively. This would allow us to define different logic for updating the vertex state in a NG911 model while keeping the changes relatively minimal. I estimate that at least the Simulator.cpp class and the Model classes would need to be changed (assuming we can get the derived type information from what is currently in the config files).
2. The second is that we could add a updateVertexState method to the AllVertices class and call updateVertexState as a AllVertices method instead of a Model method. This would allow vertex-related stuff to live in a more appropriate place.
The last point can be summarized as such:
- Make Model be extensible for neuron and NG911 models
- Pros: Implementation would mostly look like it currently does for the area we are trying to update.
- Cons: Model type would contain vertex-related logic. Vertices are already extensible for neuron and NG911 models. Introduces new model types which may require changes to config files.
- Add current calcSummationPoint logic into AllVertices
- Pros: Cleaner separation of model and vertex logic. No need to add new derived model types.
- Cons: Less files being touched, but are touched more (e.g. the summation point kernel would need to be moved from the GPUModel.cpp into the AllVertices_d.cpp).
| {
"login": "NicolasJPosey",
"id": 44657018,
"node_id": "MDQ6VXNlcjQ0NjU3MDE4",
"avatar_url": "https://avatars.githubusercontent.com/u/44657018?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/NicolasJPosey",
"html_url": "https://github.com/NicolasJPosey",
"followers_url": "https://api.github.com/users/NicolasJPosey/followers",
"following_url": "https://api.github.com/users/NicolasJPosey/following{/other_user}",
"gists_url": "https://api.github.com/users/NicolasJPosey/gists{/gist_id}",
"starred_url": "https://api.github.com/users/NicolasJPosey/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/NicolasJPosey/subscriptions",
"organizations_url": "https://api.github.com/users/NicolasJPosey/orgs",
"repos_url": "https://api.github.com/users/NicolasJPosey/repos",
"events_url": "https://api.github.com/users/NicolasJPosey/events{/privacy}",
"received_events_url": "https://api.github.com/users/NicolasJPosey/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/745/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/745/timeline | null | completed | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/744 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/744/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/744/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/744/events | https://github.com/UWB-Biocomputing/Graphitti/issues/744 | 2,753,659,208 | I_kwDOEEdqD86kIYFI | 744 | Avoid Running GitHub Actions for Documentation Updates | {
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.github.com/users/d-kamath/followers",
"following_url": "https://api.github.com/users/d-kamath/following{/other_user}",
"gists_url": "https://api.github.com/users/d-kamath/gists{/gist_id}",
"starred_url": "https://api.github.com/users/d-kamath/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/d-kamath/subscriptions",
"organizations_url": "https://api.github.com/users/d-kamath/orgs",
"repos_url": "https://api.github.com/users/d-kamath/repos",
"events_url": "https://api.github.com/users/d-kamath/events{/privacy}",
"received_events_url": "https://api.github.com/users/d-kamath/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423152,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTUy",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/documentation",
"name": "documentation",
"color": "0075ca",
"default": true,
"description": "Improvements or additions to documentation"
},
{
"id": 21... | open | false | null | [] | null | [] | 2024-12-21T00:20:02 | 2025-01-22T17:34:37 | null | COLLABORATOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Currently, our GitHub Actions are triggered for all commits, including those that involve only documentation updates. This can result in unnecessary workflow runs and increased build times. We need to update the GitHub Actions workflow configuration to skip runs for documentation-only changes. | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/744/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/744/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/743 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/743/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/743/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/743/events | https://github.com/UWB-Biocomputing/Graphitti/pull/743 | 2,753,647,021 | PR_kwDOEEdqD86F9oTx | 743 | [ISSUE-207] Doxygen document | {
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.github.com/users/d-kamath/followers",
"following_url": "https://api.github.com/users/d-kamath/following{/other_user}",
"gists_url": "https://api.github.com/users/d-kamath/gists{/gist_id}",
"starred_url": "https://api.github.com/users/d-kamath/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/d-kamath/subscriptions",
"organizations_url": "https://api.github.com/users/d-kamath/orgs",
"repos_url": "https://api.github.com/users/d-kamath/repos",
"events_url": "https://api.github.com/users/d-kamath/events{/privacy}",
"received_events_url": "https://api.github.com/users/d-kamath/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423152,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTUy",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/documentation",
"name": "documentation",
"color": "0075ca",
"default": true,
"description": "Improvements or additions to documentation"
}
] | open | false | {
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.github.com/users/d-kamath/followers",
"following_url": "https://api.github.com/users/d-kamath/following{/other_user}",
"gists_url": "https://api.github.com/users/d-kamath/gists{/gist_id}",
"starred_url": "https://api.github.com/users/d-kamath/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/d-kamath/subscriptions",
"organizations_url": "https://api.github.com/users/d-kamath/orgs",
"repos_url": "https://api.github.com/users/d-kamath/repos",
"events_url": "https://api.github.com/users/d-kamath/events{/privacy}",
"received_events_url": "https://api.github.com/users/d-kamath/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.... | null | [
"Some cleanup needed in the two `index.md` files."
] | 2024-12-21T00:00:23 | 2025-01-14T01:32:36 | null | COLLABORATOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #207
<!-- Please provide a brief overview of the changes implemented -->
#### Description
This PR has been recreated to incorporate the updates originally made by silvercube227 in [PR-545](https://github.com/UWB-Biocomputing/Graphitti/pull/545). The previous PR had become stale and could not be merged due to changes in the merge base.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [x] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [ ] GPU Test: `test-medium-connected.xml` Passed
- [ ] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/743/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/743/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/743",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/743",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/743.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/743.patch",
"merged_at": null
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/742 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/742/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/742/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/742/events | https://github.com/UWB-Biocomputing/Graphitti/pull/742 | 2,753,494,339 | PR_kwDOEEdqD86F9G0Z | 742 | Update Documentation: XML files and hyperlink | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423152,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTUy",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/documentation",
"name": "documentation",
"color": "0075ca",
"default": true,
"description": "Improvements or additions to documentation"
}
] | closed | false | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.c... | null | [] | 2024-12-20T21:17:08 | 2024-12-20T21:39:35 | 2024-12-20T21:39:29 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #705
<!-- Please provide a brief overview of the changes implemented -->
#### Description
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [ ] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [ ] GPU Test: `test-medium-connected.xml` Passed
- [ ] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.github.com/users/d-kamath/followers",
"following_url": "https://api.github.com/users/d-kamath/following{/other_user}",
"gists_url": "https://api.github.com/users/d-kamath/gists{/gist_id}",
"starred_url": "https://api.github.com/users/d-kamath/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/d-kamath/subscriptions",
"organizations_url": "https://api.github.com/users/d-kamath/orgs",
"repos_url": "https://api.github.com/users/d-kamath/repos",
"events_url": "https://api.github.com/users/d-kamath/events{/privacy}",
"received_events_url": "https://api.github.com/users/d-kamath/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/742/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/742/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/742",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/742",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/742.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/742.patch",
"merged_at": "2024-12-20T21:39:29"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/741 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/741/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/741/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/741/events | https://github.com/UWB-Biocomputing/Graphitti/issues/741 | 2,746,421,847 | I_kwDOEEdqD86jsxJX | 741 | Add Regression Test for Serialization and Deserialization | {
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.github.com/users/d-kamath/followers",
"following_url": "https://api.github.com/users/d-kamath/following{/other_user}",
"gists_url": "https://api.github.com/users/d-kamath/gists{/gist_id}",
"starred_url": "https://api.github.com/users/d-kamath/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/d-kamath/subscriptions",
"organizations_url": "https://api.github.com/users/d-kamath/orgs",
"repos_url": "https://api.github.com/users/d-kamath/repos",
"events_url": "https://api.github.com/users/d-kamath/events{/privacy}",
"received_events_url": "https://api.github.com/users/d-kamath/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 4080571584,
"node_id": "LA_kwDOEEdqD87zOJTA",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/testing",
"name": "testing",
"color": "C3C92B",
"default": false,
"description": ""
},
{
"id": 4511960660,
"node_id": "LA_kwDOEEdqD88AAAABDO8OVA",
... | open | false | {
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.github.com/users/d-kamath/followers",
"following_url": "https://api.github.com/users/d-kamath/following{/other_user}",
"gists_url": "https://api.github.com/users/d-kamath/gists{/gist_id}",
"starred_url": "https://api.github.com/users/d-kamath/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/d-kamath/subscriptions",
"organizations_url": "https://api.github.com/users/d-kamath/orgs",
"repos_url": "https://api.github.com/users/d-kamath/repos",
"events_url": "https://api.github.com/users/d-kamath/events{/privacy}",
"received_events_url": "https://api.github.com/users/d-kamath/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "d-kamath",
"id": 53545471,
"node_id": "MDQ6VXNlcjUzNTQ1NDcx",
"avatar_url": "https://avatars.githubusercontent.com/u/53545471?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/d-kamath",
"html_url": "https://github.com/d-kamath",
"followers_url": "https://api.... | null | [] | 2024-12-18T00:32:52 | 2025-03-06T22:52:03 | null | COLLABORATOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | We need to add a new test specifically for serialization and deserialization. This test should ensure that data is correctly serialized into the expected format and can be deserialized back without any data loss or corruption.
| null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/741/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/741/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/740 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/740/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/740/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/740/events | https://github.com/UWB-Biocomputing/Graphitti/pull/740 | 2,716,400,374 | PR_kwDOEEdqD86D95gJ | 740 | Update development to include EventBuffer unit tests | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 4080571584,
"node_id": "LA_kwDOEEdqD87zOJTA",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/testing",
"name": "testing",
"color": "C3C92B",
"default": false,
"description": ""
}
] | closed | false | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.c... | null | [] | 2024-12-04T02:20:33 | 2024-12-04T17:58:44 | 2024-12-04T17:58:44 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | null | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/740/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/740/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/740",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/740",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/740.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/740.patch",
"merged_at": "2024-12-04T17:58:43"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/739 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/739/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/739/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/739/events | https://github.com/UWB-Biocomputing/Graphitti/pull/739 | 2,716,281,643 | PR_kwDOEEdqD86D9foI | 739 | Issue 404 conditional compilation switch testing | {
"login": "priyadhanu14",
"id": 71185173,
"node_id": "MDQ6VXNlcjcxMTg1MTcz",
"avatar_url": "https://avatars.githubusercontent.com/u/71185173?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/priyadhanu14",
"html_url": "https://github.com/priyadhanu14",
"followers_url": "https://api.github.com/users/priyadhanu14/followers",
"following_url": "https://api.github.com/users/priyadhanu14/following{/other_user}",
"gists_url": "https://api.github.com/users/priyadhanu14/gists{/gist_id}",
"starred_url": "https://api.github.com/users/priyadhanu14/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/priyadhanu14/subscriptions",
"organizations_url": "https://api.github.com/users/priyadhanu14/orgs",
"repos_url": "https://api.github.com/users/priyadhanu14/repos",
"events_url": "https://api.github.com/users/priyadhanu14/events{/privacy}",
"received_events_url": "https://api.github.com/users/priyadhanu14/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | {
"login": "priyadhanu14",
"id": 71185173,
"node_id": "MDQ6VXNlcjcxMTg1MTcz",
"avatar_url": "https://avatars.githubusercontent.com/u/71185173?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/priyadhanu14",
"html_url": "https://github.com/priyadhanu14",
"followers_url": "https://api.github.com/users/priyadhanu14/followers",
"following_url": "https://api.github.com/users/priyadhanu14/following{/other_user}",
"gists_url": "https://api.github.com/users/priyadhanu14/gists{/gist_id}",
"starred_url": "https://api.github.com/users/priyadhanu14/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/priyadhanu14/subscriptions",
"organizations_url": "https://api.github.com/users/priyadhanu14/orgs",
"repos_url": "https://api.github.com/users/priyadhanu14/repos",
"events_url": "https://api.github.com/users/priyadhanu14/events{/privacy}",
"received_events_url": "https://api.github.com/users/priyadhanu14/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "priyadhanu14",
"id": 71185173,
"node_id": "MDQ6VXNlcjcxMTg1MTcz",
"avatar_url": "https://avatars.githubusercontent.com/u/71185173?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/priyadhanu14",
"html_url": "https://github.com/priyadhanu14",
"followers_url": "... | null | [] | 2024-12-04T00:31:08 | 2025-01-20T21:04:24 | 2025-01-20T21:04:24 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #404
<!-- Please provide a brief overview of the changes implemented -->
#### Description
Added Conditional compilation switch- testing
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [x] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [ ] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "priyadhanu14",
"id": 71185173,
"node_id": "MDQ6VXNlcjcxMTg1MTcz",
"avatar_url": "https://avatars.githubusercontent.com/u/71185173?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/priyadhanu14",
"html_url": "https://github.com/priyadhanu14",
"followers_url": "https://api.github.com/users/priyadhanu14/followers",
"following_url": "https://api.github.com/users/priyadhanu14/following{/other_user}",
"gists_url": "https://api.github.com/users/priyadhanu14/gists{/gist_id}",
"starred_url": "https://api.github.com/users/priyadhanu14/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/priyadhanu14/subscriptions",
"organizations_url": "https://api.github.com/users/priyadhanu14/orgs",
"repos_url": "https://api.github.com/users/priyadhanu14/repos",
"events_url": "https://api.github.com/users/priyadhanu14/events{/privacy}",
"received_events_url": "https://api.github.com/users/priyadhanu14/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/739/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/739/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/739",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/739",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/739.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/739.patch",
"merged_at": null
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/738 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/738/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/738/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/738/events | https://github.com/UWB-Biocomputing/Graphitti/issues/738 | 2,713,093,445 | I_kwDOEEdqD86htoVF | 738 | Regression Test Clean-Up | {
"login": "varndorfer",
"id": 20168613,
"node_id": "MDQ6VXNlcjIwMTY4NjEz",
"avatar_url": "https://avatars.githubusercontent.com/u/20168613?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/varndorfer",
"html_url": "https://github.com/varndorfer",
"followers_url": "https://api.github.com/users/varndorfer/followers",
"following_url": "https://api.github.com/users/varndorfer/following{/other_user}",
"gists_url": "https://api.github.com/users/varndorfer/gists{/gist_id}",
"starred_url": "https://api.github.com/users/varndorfer/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/varndorfer/subscriptions",
"organizations_url": "https://api.github.com/users/varndorfer/orgs",
"repos_url": "https://api.github.com/users/varndorfer/repos",
"events_url": "https://api.github.com/users/varndorfer/events{/privacy}",
"received_events_url": "https://api.github.com/users/varndorfer/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2159503249,
"node_id": "MDU6TGFiZWwyMTU5NTAzMjQ5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/cleanup",
"name": "cleanup",
"color": "0075ca",
"default": false,
"description": ""
},
{
"id": 4080571584,
"node_id": "LA_kwDOEEdqD87zOJTA",
"... | open | false | {
"login": "BenYang2002",
"id": 96927991,
"node_id": "U_kgDOBccA9w",
"avatar_url": "https://avatars.githubusercontent.com/u/96927991?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/BenYang2002",
"html_url": "https://github.com/BenYang2002",
"followers_url": "https://api.github.com/users/BenYang2002/followers",
"following_url": "https://api.github.com/users/BenYang2002/following{/other_user}",
"gists_url": "https://api.github.com/users/BenYang2002/gists{/gist_id}",
"starred_url": "https://api.github.com/users/BenYang2002/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/BenYang2002/subscriptions",
"organizations_url": "https://api.github.com/users/BenYang2002/orgs",
"repos_url": "https://api.github.com/users/BenYang2002/repos",
"events_url": "https://api.github.com/users/BenYang2002/events{/privacy}",
"received_events_url": "https://api.github.com/users/BenYang2002/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "BenYang2002",
"id": 96927991,
"node_id": "U_kgDOBccA9w",
"avatar_url": "https://avatars.githubusercontent.com/u/96927991?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/BenYang2002",
"html_url": "https://github.com/BenYang2002",
"followers_url": "https://api... | null | [
"Would be good to put a complete list of tests to be retained, with proposed modifications, if any, in test config file names or content."
] | 2024-12-02T19:19:27 | 2024-12-03T21:11:41 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | * Use only the tests with the small graph `configfiles/graphs/test-small.graphml`
* small, small-connected-stdp, small-connected-long
* The small-connected-long graph should run for enough epochs that non-endogenously active neurons show spiking activity
* We can probably use less epochs if we set the startRadius value to 0.499 (currently it's at 0.49)
* keep 911 test
* Add a readme file detailing each of the tests and what they cover | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/738/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/738/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/737 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/737/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/737/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/737/events | https://github.com/UWB-Biocomputing/Graphitti/pull/737 | 2,685,304,485 | PR_kwDOEEdqD86C5P_h | 737 | Issue 624 add unit test for event buffer | {
"login": "priyadhanu14",
"id": 71185173,
"node_id": "MDQ6VXNlcjcxMTg1MTcz",
"avatar_url": "https://avatars.githubusercontent.com/u/71185173?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/priyadhanu14",
"html_url": "https://github.com/priyadhanu14",
"followers_url": "https://api.github.com/users/priyadhanu14/followers",
"following_url": "https://api.github.com/users/priyadhanu14/following{/other_user}",
"gists_url": "https://api.github.com/users/priyadhanu14/gists{/gist_id}",
"starred_url": "https://api.github.com/users/priyadhanu14/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/priyadhanu14/subscriptions",
"organizations_url": "https://api.github.com/users/priyadhanu14/orgs",
"repos_url": "https://api.github.com/users/priyadhanu14/repos",
"events_url": "https://api.github.com/users/priyadhanu14/events{/privacy}",
"received_events_url": "https://api.github.com/users/priyadhanu14/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | {
"login": "priyadhanu14",
"id": 71185173,
"node_id": "MDQ6VXNlcjcxMTg1MTcz",
"avatar_url": "https://avatars.githubusercontent.com/u/71185173?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/priyadhanu14",
"html_url": "https://github.com/priyadhanu14",
"followers_url": "https://api.github.com/users/priyadhanu14/followers",
"following_url": "https://api.github.com/users/priyadhanu14/following{/other_user}",
"gists_url": "https://api.github.com/users/priyadhanu14/gists{/gist_id}",
"starred_url": "https://api.github.com/users/priyadhanu14/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/priyadhanu14/subscriptions",
"organizations_url": "https://api.github.com/users/priyadhanu14/orgs",
"repos_url": "https://api.github.com/users/priyadhanu14/repos",
"events_url": "https://api.github.com/users/priyadhanu14/events{/privacy}",
"received_events_url": "https://api.github.com/users/priyadhanu14/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "priyadhanu14",
"id": 71185173,
"node_id": "MDQ6VXNlcjcxMTg1MTcz",
"avatar_url": "https://avatars.githubusercontent.com/u/71185173?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/priyadhanu14",
"html_url": "https://github.com/priyadhanu14",
"followers_url": "... | null | [] | 2024-11-23T04:26:41 | 2024-12-04T02:09:50 | 2024-12-04T02:06:43 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #
<!-- Please provide a brief overview of the changes implemented -->
#### Description
Added Unit tests for Event Buffer class.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [ ] Added Documentation
- [x] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [ ] GPU Test: `test-medium-connected.xml` Passed
- [ ] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "priyadhanu14",
"id": 71185173,
"node_id": "MDQ6VXNlcjcxMTg1MTcz",
"avatar_url": "https://avatars.githubusercontent.com/u/71185173?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/priyadhanu14",
"html_url": "https://github.com/priyadhanu14",
"followers_url": "https://api.github.com/users/priyadhanu14/followers",
"following_url": "https://api.github.com/users/priyadhanu14/following{/other_user}",
"gists_url": "https://api.github.com/users/priyadhanu14/gists{/gist_id}",
"starred_url": "https://api.github.com/users/priyadhanu14/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/priyadhanu14/subscriptions",
"organizations_url": "https://api.github.com/users/priyadhanu14/orgs",
"repos_url": "https://api.github.com/users/priyadhanu14/repos",
"events_url": "https://api.github.com/users/priyadhanu14/events{/privacy}",
"received_events_url": "https://api.github.com/users/priyadhanu14/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/737/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/737/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/737",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/737",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/737.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/737.patch",
"merged_at": "2024-12-04T02:06:43"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/736 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/736/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/736/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/736/events | https://github.com/UWB-Biocomputing/Graphitti/issues/736 | 2,685,109,963 | I_kwDOEEdqD86gC4bL | 736 | Is this EventBuffer comment wrong, or is the code wrong? | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423158,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTU4",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/good%20first%20issue",
"name": "good first issue",
"color": "7057ff",
"default": true,
"description": "Good for newcomers"
},
{
"id": 2144423165,
... | open | false | null | [] | null | [] | 2024-11-23T02:09:04 | 2025-01-22T17:41:00 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Comment (linked below) says that EventBuffer size is max+1, but the code in `EventBuffer.cpp` looks like it's only max.
https://github.com/UWB-Biocomputing/Graphitti/blob/b507ae9a4ccc6377c36fde9413af726366734b07/Simulator/Vertices/EventBuffer.h#L40-L41 | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/736/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/736/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/735 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/735/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/735/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/735/events | https://github.com/UWB-Biocomputing/Graphitti/issues/735 | 2,676,813,196 | I_kwDOEEdqD86fjO2M | 735 | Refactor common code from HDF5 and XML recorders into parent class | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423158,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTU4",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/good%20first%20issue",
"name": "good first issue",
"color": "7057ff",
"default": true,
"description": "Good for newcomers"
},
{
"id": 3753459431,
... | closed | false | null | [] | null | [
"Duplicates #660 "
] | 2024-11-20T18:45:54 | 2024-11-20T23:30:59 | 2024-11-20T23:30:59 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | null | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/735/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/735/timeline | null | not_planned | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/734 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/734/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/734/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/734/events | https://github.com/UWB-Biocomputing/Graphitti/issues/734 | 2,673,576,214 | I_kwDOEEdqD86fW4kW | 734 | Add in ability to initialize full graph for STDP simulations | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423156,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTU2",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/enhancement",
"name": "enhancement",
"color": "a2eeef",
"default": true,
"description": "New feature or request"
},
{
"id": 5995832092,
"node_id":... | closed | false | {
"login": "jasleenksaini",
"id": 129341344,
"node_id": "U_kgDOB7WXoA",
"avatar_url": "https://avatars.githubusercontent.com/u/129341344?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jasleenksaini",
"html_url": "https://github.com/jasleenksaini",
"followers_url": "https://api.github.com/users/jasleenksaini/followers",
"following_url": "https://api.github.com/users/jasleenksaini/following{/other_user}",
"gists_url": "https://api.github.com/users/jasleenksaini/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jasleenksaini/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jasleenksaini/subscriptions",
"organizations_url": "https://api.github.com/users/jasleenksaini/orgs",
"repos_url": "https://api.github.com/users/jasleenksaini/repos",
"events_url": "https://api.github.com/users/jasleenksaini/events{/privacy}",
"received_events_url": "https://api.github.com/users/jasleenksaini/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "jasleenksaini",
"id": 129341344,
"node_id": "U_kgDOB7WXoA",
"avatar_url": "https://avatars.githubusercontent.com/u/129341344?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jasleenksaini",
"html_url": "https://github.com/jasleenksaini",
"followers_url": "htt... | null | [] | 2024-11-19T21:25:52 | 2025-03-19T20:53:42 | 2025-03-19T20:53:42 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | null | {
"login": "jasleenksaini",
"id": 129341344,
"node_id": "U_kgDOB7WXoA",
"avatar_url": "https://avatars.githubusercontent.com/u/129341344?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/jasleenksaini",
"html_url": "https://github.com/jasleenksaini",
"followers_url": "https://api.github.com/users/jasleenksaini/followers",
"following_url": "https://api.github.com/users/jasleenksaini/following{/other_user}",
"gists_url": "https://api.github.com/users/jasleenksaini/gists{/gist_id}",
"starred_url": "https://api.github.com/users/jasleenksaini/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/jasleenksaini/subscriptions",
"organizations_url": "https://api.github.com/users/jasleenksaini/orgs",
"repos_url": "https://api.github.com/users/jasleenksaini/repos",
"events_url": "https://api.github.com/users/jasleenksaini/events{/privacy}",
"received_events_url": "https://api.github.com/users/jasleenksaini/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/734/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/734/timeline | null | completed | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/733 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/733/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/733/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/733/events | https://github.com/UWB-Biocomputing/Graphitti/pull/733 | 2,670,562,464 | PR_kwDOEEdqD86CVAMl | 733 | [ISSUE-680] Record Zero Length Variables | {
"login": "varndorfer",
"id": 20168613,
"node_id": "MDQ6VXNlcjIwMTY4NjEz",
"avatar_url": "https://avatars.githubusercontent.com/u/20168613?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/varndorfer",
"html_url": "https://github.com/varndorfer",
"followers_url": "https://api.github.com/users/varndorfer/followers",
"following_url": "https://api.github.com/users/varndorfer/following{/other_user}",
"gists_url": "https://api.github.com/users/varndorfer/gists{/gist_id}",
"starred_url": "https://api.github.com/users/varndorfer/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/varndorfer/subscriptions",
"organizations_url": "https://api.github.com/users/varndorfer/orgs",
"repos_url": "https://api.github.com/users/varndorfer/repos",
"events_url": "https://api.github.com/users/varndorfer/events{/privacy}",
"received_events_url": "https://api.github.com/users/varndorfer/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 3753459431,
"node_id": "LA_kwDOEEdqD87fuT7n",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/Recorders",
"name": "Recorders",
"color": "8711C9",
"default": false,
"description": "Re-engineering recorders"
}
] | closed | false | {
"login": "varndorfer",
"id": 20168613,
"node_id": "MDQ6VXNlcjIwMTY4NjEz",
"avatar_url": "https://avatars.githubusercontent.com/u/20168613?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/varndorfer",
"html_url": "https://github.com/varndorfer",
"followers_url": "https://api.github.com/users/varndorfer/followers",
"following_url": "https://api.github.com/users/varndorfer/following{/other_user}",
"gists_url": "https://api.github.com/users/varndorfer/gists{/gist_id}",
"starred_url": "https://api.github.com/users/varndorfer/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/varndorfer/subscriptions",
"organizations_url": "https://api.github.com/users/varndorfer/orgs",
"repos_url": "https://api.github.com/users/varndorfer/repos",
"events_url": "https://api.github.com/users/varndorfer/events{/privacy}",
"received_events_url": "https://api.github.com/users/varndorfer/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "varndorfer",
"id": 20168613,
"node_id": "MDQ6VXNlcjIwMTY4NjEz",
"avatar_url": "https://avatars.githubusercontent.com/u/20168613?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/varndorfer",
"html_url": "https://github.com/varndorfer",
"followers_url": "https:... | null | [
"Are any changes needed to `Hdf5Recorder`?",
"So, do we really want to do this? Let's discuss it at a lab meeting; I think there are arguments either way, but maybe not; maybe this was just something different than before. After all, if we don't output a variable, then we know 100% what's in it. OTOH, if we regis... | 2024-11-19T03:04:27 | 2025-01-31T04:32:47 | 2025-01-31T04:32:47 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #680
<!-- Please provide a brief overview of the changes implemented -->
#### Description
XML Recorder should produce an empty output for variables with no values. Tested and now the output is as in the below image:
<img width="383" alt="image" src="https://github.com/user-attachments/assets/2351fad9-e380-4e03-84fe-43abccf4a061">
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [ ] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "varndorfer",
"id": 20168613,
"node_id": "MDQ6VXNlcjIwMTY4NjEz",
"avatar_url": "https://avatars.githubusercontent.com/u/20168613?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/varndorfer",
"html_url": "https://github.com/varndorfer",
"followers_url": "https://api.github.com/users/varndorfer/followers",
"following_url": "https://api.github.com/users/varndorfer/following{/other_user}",
"gists_url": "https://api.github.com/users/varndorfer/gists{/gist_id}",
"starred_url": "https://api.github.com/users/varndorfer/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/varndorfer/subscriptions",
"organizations_url": "https://api.github.com/users/varndorfer/orgs",
"repos_url": "https://api.github.com/users/varndorfer/repos",
"events_url": "https://api.github.com/users/varndorfer/events{/privacy}",
"received_events_url": "https://api.github.com/users/varndorfer/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/733/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/733/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/733",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/733",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/733.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/733.patch",
"merged_at": null
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/732 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/732/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/732/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/732/events | https://github.com/UWB-Biocomputing/Graphitti/issues/732 | 2,660,287,220 | I_kwDOEEdqD86ekML0 | 732 | enums should be replaced with C++ enum class | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423158,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTU4",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/good%20first%20issue",
"name": "good first issue",
"color": "7057ff",
"default": true,
"description": "Good for newcomers"
},
{
"id": 2159503249,
... | open | false | {
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_url": "https://api.github.com/users/AndrewBMadison/followers",
"following_url": "https://api.github.com/users/AndrewBMadison/following{/other_user}",
"gists_url": "https://api.github.com/users/AndrewBMadison/gists{/gist_id}",
"starred_url": "https://api.github.com/users/AndrewBMadison/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/AndrewBMadison/subscriptions",
"organizations_url": "https://api.github.com/users/AndrewBMadison/orgs",
"repos_url": "https://api.github.com/users/AndrewBMadison/repos",
"events_url": "https://api.github.com/users/AndrewBMadison/events{/privacy}",
"received_events_url": "https://api.github.com/users/AndrewBMadison/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "AndrewBMadison",
"id": 31545117,
"node_id": "MDQ6VXNlcjMxNTQ1MTE3",
"avatar_url": "https://avatars.githubusercontent.com/u/31545117?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/AndrewBMadison",
"html_url": "https://github.com/AndrewBMadison",
"followers_u... | null | [
"Actually, this needs to copy to the GPU and work in a GPU-side `switch` statement. It may or may not work this way, depending on whether we can rely on the \"data footprint\" on the GPU matching up well with the CPU implementation of this language feature."
] | 2024-11-14T22:56:17 | 2025-01-10T22:00:46 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | An example of this currently implemented with C `enum` is:
https://github.com/UWB-Biocomputing/Graphitti/blob/b507ae9a4ccc6377c36fde9413af726366734b07/Simulator/Edges/Neuro/AllNeuroEdges.h#L42-L48
See https://en.cppreference.com/w/cpp/language/enum for more information about this language feature. | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/732/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/732/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/731 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/731/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/731/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/731/events | https://github.com/UWB-Biocomputing/Graphitti/pull/731 | 2,650,647,679 | PR_kwDOEEdqD86BkRSn | 731 | [ISSUE-730] Add Nayana Yeshlur to the Contributors.txt file. | {
"login": "nyeshlur",
"id": 72169901,
"node_id": "MDQ6VXNlcjcyMTY5OTAx",
"avatar_url": "https://avatars.githubusercontent.com/u/72169901?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/nyeshlur",
"html_url": "https://github.com/nyeshlur",
"followers_url": "https://api.github.com/users/nyeshlur/followers",
"following_url": "https://api.github.com/users/nyeshlur/following{/other_user}",
"gists_url": "https://api.github.com/users/nyeshlur/gists{/gist_id}",
"starred_url": "https://api.github.com/users/nyeshlur/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/nyeshlur/subscriptions",
"organizations_url": "https://api.github.com/users/nyeshlur/orgs",
"repos_url": "https://api.github.com/users/nyeshlur/repos",
"events_url": "https://api.github.com/users/nyeshlur/events{/privacy}",
"received_events_url": "https://api.github.com/users/nyeshlur/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | {
"login": "nyeshlur",
"id": 72169901,
"node_id": "MDQ6VXNlcjcyMTY5OTAx",
"avatar_url": "https://avatars.githubusercontent.com/u/72169901?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/nyeshlur",
"html_url": "https://github.com/nyeshlur",
"followers_url": "https://api.github.com/users/nyeshlur/followers",
"following_url": "https://api.github.com/users/nyeshlur/following{/other_user}",
"gists_url": "https://api.github.com/users/nyeshlur/gists{/gist_id}",
"starred_url": "https://api.github.com/users/nyeshlur/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/nyeshlur/subscriptions",
"organizations_url": "https://api.github.com/users/nyeshlur/orgs",
"repos_url": "https://api.github.com/users/nyeshlur/repos",
"events_url": "https://api.github.com/users/nyeshlur/events{/privacy}",
"received_events_url": "https://api.github.com/users/nyeshlur/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "nyeshlur",
"id": 72169901,
"node_id": "MDQ6VXNlcjcyMTY5OTAx",
"avatar_url": "https://avatars.githubusercontent.com/u/72169901?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/nyeshlur",
"html_url": "https://github.com/nyeshlur",
"followers_url": "https://api.... | null | [] | 2024-11-11T23:33:11 | 2024-11-18T19:02:47 | 2024-11-18T19:02:36 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #730
<!-- Please provide a brief overview of the changes implemented -->
#### Description
This PR adds Nayana Yeshlur to the Contributors.txt file.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [x] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [x] GPU Test: `test-medium-connected.xml` Passed
- [x] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "nyeshlur",
"id": 72169901,
"node_id": "MDQ6VXNlcjcyMTY5OTAx",
"avatar_url": "https://avatars.githubusercontent.com/u/72169901?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/nyeshlur",
"html_url": "https://github.com/nyeshlur",
"followers_url": "https://api.github.com/users/nyeshlur/followers",
"following_url": "https://api.github.com/users/nyeshlur/following{/other_user}",
"gists_url": "https://api.github.com/users/nyeshlur/gists{/gist_id}",
"starred_url": "https://api.github.com/users/nyeshlur/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/nyeshlur/subscriptions",
"organizations_url": "https://api.github.com/users/nyeshlur/orgs",
"repos_url": "https://api.github.com/users/nyeshlur/repos",
"events_url": "https://api.github.com/users/nyeshlur/events{/privacy}",
"received_events_url": "https://api.github.com/users/nyeshlur/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/731/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/731/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/731",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/731",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/731.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/731.patch",
"merged_at": "2024-11-18T19:02:36"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/730 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/730/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/730/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/730/events | https://github.com/UWB-Biocomputing/Graphitti/issues/730 | 2,650,615,164 | I_kwDOEEdqD86d_S18 | 730 | Add Nayana Yeshlur to Contributor List. | {
"login": "nyeshlur",
"id": 72169901,
"node_id": "MDQ6VXNlcjcyMTY5OTAx",
"avatar_url": "https://avatars.githubusercontent.com/u/72169901?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/nyeshlur",
"html_url": "https://github.com/nyeshlur",
"followers_url": "https://api.github.com/users/nyeshlur/followers",
"following_url": "https://api.github.com/users/nyeshlur/following{/other_user}",
"gists_url": "https://api.github.com/users/nyeshlur/gists{/gist_id}",
"starred_url": "https://api.github.com/users/nyeshlur/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/nyeshlur/subscriptions",
"organizations_url": "https://api.github.com/users/nyeshlur/orgs",
"repos_url": "https://api.github.com/users/nyeshlur/repos",
"events_url": "https://api.github.com/users/nyeshlur/events{/privacy}",
"received_events_url": "https://api.github.com/users/nyeshlur/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423152,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTUy",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/documentation",
"name": "documentation",
"color": "0075ca",
"default": true,
"description": "Improvements or additions to documentation"
}
] | open | false | {
"login": "nyeshlur",
"id": 72169901,
"node_id": "MDQ6VXNlcjcyMTY5OTAx",
"avatar_url": "https://avatars.githubusercontent.com/u/72169901?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/nyeshlur",
"html_url": "https://github.com/nyeshlur",
"followers_url": "https://api.github.com/users/nyeshlur/followers",
"following_url": "https://api.github.com/users/nyeshlur/following{/other_user}",
"gists_url": "https://api.github.com/users/nyeshlur/gists{/gist_id}",
"starred_url": "https://api.github.com/users/nyeshlur/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/nyeshlur/subscriptions",
"organizations_url": "https://api.github.com/users/nyeshlur/orgs",
"repos_url": "https://api.github.com/users/nyeshlur/repos",
"events_url": "https://api.github.com/users/nyeshlur/events{/privacy}",
"received_events_url": "https://api.github.com/users/nyeshlur/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "nyeshlur",
"id": 72169901,
"node_id": "MDQ6VXNlcjcyMTY5OTAx",
"avatar_url": "https://avatars.githubusercontent.com/u/72169901?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/nyeshlur",
"html_url": "https://github.com/nyeshlur",
"followers_url": "https://api.... | null | [] | 2024-11-11T23:18:20 | 2024-11-11T23:18:20 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | #### Description
As a part of the onboarding task add Nayana Yeshlur to the Contributors list of Graphitti.
#### Files
Contributors.txt | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/730/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/730/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/729 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/729/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/729/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/729/events | https://github.com/UWB-Biocomputing/Graphitti/pull/729 | 2,646,715,078 | PR_kwDOEEdqD86BarZD | 729 | [ISSUE-671] Add <Hari Priya Dhanasekaran> to the Contributors.txt file. | {
"login": "priyadhanu14",
"id": 71185173,
"node_id": "MDQ6VXNlcjcxMTg1MTcz",
"avatar_url": "https://avatars.githubusercontent.com/u/71185173?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/priyadhanu14",
"html_url": "https://github.com/priyadhanu14",
"followers_url": "https://api.github.com/users/priyadhanu14/followers",
"following_url": "https://api.github.com/users/priyadhanu14/following{/other_user}",
"gists_url": "https://api.github.com/users/priyadhanu14/gists{/gist_id}",
"starred_url": "https://api.github.com/users/priyadhanu14/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/priyadhanu14/subscriptions",
"organizations_url": "https://api.github.com/users/priyadhanu14/orgs",
"repos_url": "https://api.github.com/users/priyadhanu14/repos",
"events_url": "https://api.github.com/users/priyadhanu14/events{/privacy}",
"received_events_url": "https://api.github.com/users/priyadhanu14/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [] | closed | false | {
"login": "priyadhanu14",
"id": 71185173,
"node_id": "MDQ6VXNlcjcxMTg1MTcz",
"avatar_url": "https://avatars.githubusercontent.com/u/71185173?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/priyadhanu14",
"html_url": "https://github.com/priyadhanu14",
"followers_url": "https://api.github.com/users/priyadhanu14/followers",
"following_url": "https://api.github.com/users/priyadhanu14/following{/other_user}",
"gists_url": "https://api.github.com/users/priyadhanu14/gists{/gist_id}",
"starred_url": "https://api.github.com/users/priyadhanu14/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/priyadhanu14/subscriptions",
"organizations_url": "https://api.github.com/users/priyadhanu14/orgs",
"repos_url": "https://api.github.com/users/priyadhanu14/repos",
"events_url": "https://api.github.com/users/priyadhanu14/events{/privacy}",
"received_events_url": "https://api.github.com/users/priyadhanu14/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "priyadhanu14",
"id": 71185173,
"node_id": "MDQ6VXNlcjcxMTg1MTcz",
"avatar_url": "https://avatars.githubusercontent.com/u/71185173?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/priyadhanu14",
"html_url": "https://github.com/priyadhanu14",
"followers_url": "... | null | [] | 2024-11-10T02:00:02 | 2024-11-12T07:56:03 | 2024-11-12T07:55:41 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #671
<!-- Please provide a brief overview of the changes implemented -->
#### This PR adds <Hari Priya Dhanasekaran> to the Contributors.txt file.
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [ ] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [ ] GPU Test: `test-medium-connected.xml` Passed
- [ ] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "priyadhanu14",
"id": 71185173,
"node_id": "MDQ6VXNlcjcxMTg1MTcz",
"avatar_url": "https://avatars.githubusercontent.com/u/71185173?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/priyadhanu14",
"html_url": "https://github.com/priyadhanu14",
"followers_url": "https://api.github.com/users/priyadhanu14/followers",
"following_url": "https://api.github.com/users/priyadhanu14/following{/other_user}",
"gists_url": "https://api.github.com/users/priyadhanu14/gists{/gist_id}",
"starred_url": "https://api.github.com/users/priyadhanu14/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/priyadhanu14/subscriptions",
"organizations_url": "https://api.github.com/users/priyadhanu14/orgs",
"repos_url": "https://api.github.com/users/priyadhanu14/repos",
"events_url": "https://api.github.com/users/priyadhanu14/events{/privacy}",
"received_events_url": "https://api.github.com/users/priyadhanu14/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/729/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/729/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/729",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/729",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/729.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/729.patch",
"merged_at": "2024-11-12T07:55:41"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/728 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/728/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/728/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/728/events | https://github.com/UWB-Biocomputing/Graphitti/issues/728 | 2,639,542,424 | I_kwDOEEdqD86dVDiY | 728 | Comments for EventBuffer methods are wrong | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423152,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTUy",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/documentation",
"name": "documentation",
"color": "0075ca",
"default": true,
"description": "Improvements or additions to documentation"
},
{
"id": 21... | open | false | null | [] | null | [] | 2024-11-07T00:18:49 | 2025-01-22T17:41:11 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | https://github.com/UWB-Biocomputing/Graphitti/blob/b507ae9a4ccc6377c36fde9413af726366734b07/Simulator/Vertices/EventBuffer.h#L51 | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/728/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/728/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/727 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/727/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/727/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/727/events | https://github.com/UWB-Biocomputing/Graphitti/pull/727 | 2,634,208,445 | PR_kwDOEEdqD86A3rJz | 727 | Back merge of master into development to bring development completely up-to-date | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423152,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTUy",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/documentation",
"name": "documentation",
"color": "0075ca",
"default": true,
"description": "Improvements or additions to documentation"
},
{
"id": 21... | closed | false | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.c... | null | [] | 2024-11-05T01:31:00 | 2024-11-09T00:56:57 | 2024-11-09T00:56:57 | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | <!-- Link to the issue and use the appropriate closing keyword (e.g., Closes, Resolves) -->
Closes #
<!-- Please provide a brief overview of the changes implemented -->
#### Description
<!-- Please check the boxes as applicable -->
#### Checklist (Mandatory for new features)
- [ ] Added Documentation
- [ ] Added Unit Tests
<!-- Ensure all boxes are checked before submitting the PR -->
#### Testing (Mandatory for all changes)
- [ ] GPU Test: `test-medium-connected.xml` Passed
- [ ] GPU Test: `test-large-long.xml` Passed
<!--
PR Guidelines
1. Ensure that your changes are merged into the `development` branch. Only merge into the `master` branch if explicitly instructed.
- On GitHub, at the top of the PR page, change the base branch from `master` to `development`.
2. Assign the PR to yourself and apply the appropriate labels.
3. Only add a reviewer after submitting the PR and confirming that all GitHub Actions have passed.
Thank you for your contribution!
-->
| {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/727/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/727/timeline | null | null | false | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/pulls/727",
"html_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/727",
"diff_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/727.diff",
"patch_url": "https://github.com/UWB-Biocomputing/Graphitti/pull/727.patch",
"merged_at": "2024-11-09T00:56:57"
} | true |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/726 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/726/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/726/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/726/events | https://github.com/UWB-Biocomputing/Graphitti/issues/726 | 2,633,920,847 | I_kwDOEEdqD86c_nFP | 726 | PlantUML generation is broken | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423149,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTQ5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/bug",
"name": "bug",
"color": "d73a4a",
"default": true,
"description": "Something isn't working"
},
{
"id": 2144423152,
"node_id": "MDU6TGFiZWwyM... | open | false | {
"login": "nyeshlur",
"id": 72169901,
"node_id": "MDQ6VXNlcjcyMTY5OTAx",
"avatar_url": "https://avatars.githubusercontent.com/u/72169901?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/nyeshlur",
"html_url": "https://github.com/nyeshlur",
"followers_url": "https://api.github.com/users/nyeshlur/followers",
"following_url": "https://api.github.com/users/nyeshlur/following{/other_user}",
"gists_url": "https://api.github.com/users/nyeshlur/gists{/gist_id}",
"starred_url": "https://api.github.com/users/nyeshlur/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/nyeshlur/subscriptions",
"organizations_url": "https://api.github.com/users/nyeshlur/orgs",
"repos_url": "https://api.github.com/users/nyeshlur/repos",
"events_url": "https://api.github.com/users/nyeshlur/events{/privacy}",
"received_events_url": "https://api.github.com/users/nyeshlur/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"login": "nyeshlur",
"id": 72169901,
"node_id": "MDQ6VXNlcjcyMTY5OTAx",
"avatar_url": "https://avatars.githubusercontent.com/u/72169901?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/nyeshlur",
"html_url": "https://github.com/nyeshlur",
"followers_url": "https://api.... | null | [] | 2024-11-04T21:49:35 | 2024-11-04T21:50:05 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Our version is way too old. We should probably be using [this one](https://github.com/marketplace/actions/plantuml-github-action). Probably good to set it up according to #724 (though just need to worry about it running as part of `gh-pages.yml`). | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/726/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/726/timeline | null | null | null | null | false |
https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/725 | https://api.github.com/repos/UWB-Biocomputing/Graphitti | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/725/labels{/name} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/725/comments | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/725/events | https://github.com/UWB-Biocomputing/Graphitti/issues/725 | 2,633,899,982 | I_kwDOEEdqD86c_h_O | 725 | Recorder puml files don't match what is in the code | {
"login": "stiber",
"id": 1878411,
"node_id": "MDQ6VXNlcjE4Nzg0MTE=",
"avatar_url": "https://avatars.githubusercontent.com/u/1878411?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/stiber",
"html_url": "https://github.com/stiber",
"followers_url": "https://api.github.com/users/stiber/followers",
"following_url": "https://api.github.com/users/stiber/following{/other_user}",
"gists_url": "https://api.github.com/users/stiber/gists{/gist_id}",
"starred_url": "https://api.github.com/users/stiber/starred{/owner}{/repo}",
"subscriptions_url": "https://api.github.com/users/stiber/subscriptions",
"organizations_url": "https://api.github.com/users/stiber/orgs",
"repos_url": "https://api.github.com/users/stiber/repos",
"events_url": "https://api.github.com/users/stiber/events{/privacy}",
"received_events_url": "https://api.github.com/users/stiber/received_events",
"type": "User",
"user_view_type": "public",
"site_admin": false
} | [
{
"id": 2144423149,
"node_id": "MDU6TGFiZWwyMTQ0NDIzMTQ5",
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/labels/bug",
"name": "bug",
"color": "d73a4a",
"default": true,
"description": "Something isn't working"
},
{
"id": 2144423152,
"node_id": "MDU6TGFiZWwyM... | open | false | null | [] | null | [] | 2024-11-04T21:37:24 | 2025-03-19T18:28:54 | null | CONTRIBUTOR | null | {
"total": 0,
"completed": 0,
"percent_completed": 0
} | null | Though the "updated" one may be what we'd like to have, eventually. | null | {
"url": "https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/725/reactions",
"total_count": 0,
"+1": 0,
"-1": 0,
"laugh": 0,
"hooray": 0,
"confused": 0,
"heart": 0,
"rocket": 0,
"eyes": 0
} | https://api.github.com/repos/UWB-Biocomputing/Graphitti/issues/725/timeline | null | null | null | null | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.