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 sequencelengths 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 |
Graphitti Issues and Pull Requests Dataset Summary
This dataset contains issues, pull requests, and their associated comments from the UW Bothell Graphitti Project, a high-speed graph simulator. It includes metadata such as:
Issue/PR metadata: title, body, state (open/closed/merged), labels, milestone, timestamps, author, etc.
Comments: discussion threads associated with each issue or PR.
Pull request-specific details: lines changed, commits, merged status, etc.
Use Cases:
Researchers can analyze open-source development practices, bug triaging, and collaboration dynamics.
Machine learning tasks like text classification (by label, severity, or topic), summarization (of long discussion threads), or sentiment analysis are all possible with these data.
Supported Tasks and Leaderboards
Potential tasks include:
Issue Classification / Triage
Classifying issues by type (bug, enhancement, question, etc.) or priority.
Topic Modeling
Discovering common themes or recurring issues in the project.
Summarization
Summarizing multi-turn issue or pull request discussions.
Sentiment Analysis
Analyzing the tone of contributors’ messages (helpful, frustrated, neutral, etc.).
Pull Request Analysis
Examining typical code contribution patterns or changes over time.
There are no official leaderboards associated with this dataset. Languages
Most text in this dataset is English, as GitHub issues and pull requests are typically written in English. Additionally, code snippets or references may appear in C++ (the Graphitti project’s primary language). Dataset Structure
Each row in this dataset corresponds to either an Issue or a Pull Request from the Graphitti repository. Key fields include:
id: The numerical GitHub ID.
type: Indicates issue or pull_request.
title: Title of the issue or PR.
body: Main description text.
state: For example, open, closed, merged.
user: GitHub user metadata (e.g., username, user ID).
comments: A sequence of comments (string text).
created_at, updated_at, closed_at: Timestamps in ISO format.
Additional fields like labels, milestone, reactions, etc.
Splits: According to the YAML front matter, the dataset is currently organized into a single train split containing 923 examples (issues/PRs). Users can choose to create validation/test splits as needed. Dataset Creation Curation Rationale
The Graphitti project is a significant academic and open-source effort at UW Bothell, focusing on high-speed graph simulation. Collecting issues and pull requests offers insight into:
Common bugs, feature requests, or usage patterns.
Developer collaboration and communication.
Code quality and testing practices in real-world open-source projects.
Source Data
Repository: UWB-Biocomputing/Graphitti on GitHub
Collection Method: The dataset was extracted via GitHub’s REST API (e.g., issues and pulls endpoints), capturing all available public issues and pull requests, along with their comment threads.
Annotations
No additional manual annotations: The labels, states, and statuses are those used in the original GitHub repository.
Who are the annotators?: All metadata and labels are generated by GitHub or by Graphitti’s contributors.
Considerations for Using the Data Social Impact
Can facilitate research on open-source community practices, academic software projects, and HPC (high-performance computing) collaboration patterns.
Offers an educational perspective on real-world software engineering processes.
Potential Risks and Ethical Considerations
Personal Data:
GitHub usernames (and potentially user profiles, if included) could be considered personal data. While publicly available, re-publishing them in new contexts might raise privacy questions.
Users may inadvertently share personal information within issue discussions.
Code Snippets:
Issues or PRs may contain code under specific licenses (Graphitti is presumably under an open-source license). Ensure compliance with the original project’s license when reusing the code.
Toxic or Sensitive Language:
While not likely in an academic project, some discussions could contain rude or offensive language. Screening is recommended if you plan to use it for moderation or sentiment tasks.
GitHub Terms of Service:
This dataset is derived from content hosted on GitHub. Users should adhere to GitHub’s TOS regarding data usage and redistribution.
Discussion of Biases
The content reflects a specific project’s topics (high-speed graph simulation), so it may not generalize to other domains.
Language usage, patterns of communication, and culture are shaped by a small academic open-source community.
Additional Information Dataset Curators
UW Bothell CS Team (and community contributors). If you contributed to Graphitti’s issues or pull requests, you may be represented in the dataset. Licensing Information
Data License: GitHub repository data is generally subject to GitHub Terms of Service.
Code License: Graphitti’s source code is licensed under [ADD LICENSE HERE] (e.g., MIT, BSD, GPL?).
If you redistribute code snippets, confirm it aligns with the project’s open-source license.
Citation Information
If you use this dataset, please cite:
```bibtex @misc{graphitti_issues_prs_2025, title = {Graphitti Issues and Pull Requests}, author = {UW Bothell CS Team}, howpublished = {Hugging Face, https://huggingface.co/datasets/YOUR_DATASET_SLUG}, year = {2025} } ```
Contributions
Special thanks to:
Justin Madison for dataset creation and curation.
Graphitti Maintainers and UW Bothell for hosting the original codebase and issue discussions.
- Downloads last month
- 3