Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
4cbc1fb
Add initial CUDA work
tf-mac Jun 29, 2023
768af83
Fix gitignore
tf-mac Jun 29, 2023
8759a96
Couple minor changes
tf-mac Jun 30, 2023
a8be3bb
Fix parfriends.h
tf-mac Jul 3, 2023
a658d8f
Make working CUDA
tf-mac Jul 5, 2023
8d6a493
Add GALATIC and etc.
tf-mac Jul 18, 2023
d91f5fd
Update to newer ideas
tf-mac Jul 20, 2023
bd09742
Remove GALATIC submodule
tf-mac Jul 20, 2023
897088f
And move GALATIC back:
tf-mac Jul 20, 2023
853c985
Add galatic to stage 1
tf-mac Jul 27, 2023
03b63cf
Move CUDA calls to proper CUDA doublebuffer
tf-mac Jul 27, 2023
5eb0ae4
Finish proof of concept
tf-mac Jul 28, 2023
f92d58b
Add first optimizations
tf-mac Sep 18, 2023
53ca5b5
Mild bug fix
tf-mac Sep 21, 2023
5c7a99a
Various additions
tf-mac Sep 29, 2023
c438756
Whatever is different
tf-mac Oct 20, 2023
2b47264
Add new dist scheme
tf-mac Nov 8, 2023
ff20355
Add up to now work
tf-mac Nov 17, 2023
207cfa4
Add a wrapper + maybe fix dist
tf-mac Nov 29, 2023
2d706e0
Fix various bugs
tf-mac Dec 22, 2023
b273e27
Working bar a memory leak
tf-mac Jan 16, 2024
15cacf2
Various fixes
tf-mac Jan 19, 2024
447d629
Close to ready for pull request, just a bit more cleanup
tf-mac Feb 28, 2024
cad8b79
Clean up the makefiles
tf-mac Feb 28, 2024
4fe1c22
Merge branch 'master' of https://github.com/PASSIONLab/CombBLAS
tf-mac Mar 5, 2024
4eaca67
Cleanup CMake
tf-mac Mar 8, 2024
56132a8
Move to Wrap_SR
tf-mac Mar 8, 2024
7810b3c
Fix a bunch
tf-mac Oct 2, 2024
87c1492
Various changes which should be cleaned
tf-mac Jan 5, 2025
a20db09
Add accuracy test
tf-mac Jan 6, 2025
ac3511e
Seperate accuracy from timing
tf-mac Jan 6, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,7 @@ test/temp_fullydistvec
*.o
SpGEMM3D
mcl3d
_build
_install
.clangd
.cache
76 changes: 76 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
{
"files.associations": {
"array": "cpp",
"atomic": "cpp",
"bit": "cpp",
"*.tcc": "cpp",
"bitset": "cpp",
"cctype": "cpp",
"chrono": "cpp",
"clocale": "cpp",
"cmath": "cpp",
"codecvt": "cpp",
"compare": "cpp",
"complex": "cpp",
"concepts": "cpp",
"condition_variable": "cpp",
"cstdarg": "cpp",
"cstddef": "cpp",
"cstdint": "cpp",
"cstdio": "cpp",
"cstdlib": "cpp",
"cstring": "cpp",
"ctime": "cpp",
"cwchar": "cpp",
"cwctype": "cpp",
"deque": "cpp",
"forward_list": "cpp",
"list": "cpp",
"map": "cpp",
"set": "cpp",
"string": "cpp",
"unordered_map": "cpp",
"unordered_set": "cpp",
"vector": "cpp",
"exception": "cpp",
"algorithm": "cpp",
"functional": "cpp",
"iterator": "cpp",
"memory": "cpp",
"memory_resource": "cpp",
"numeric": "cpp",
"optional": "cpp",
"random": "cpp",
"ratio": "cpp",
"string_view": "cpp",
"system_error": "cpp",
"tuple": "cpp",
"type_traits": "cpp",
"utility": "cpp",
"fstream": "cpp",
"initializer_list": "cpp",
"iomanip": "cpp",
"iosfwd": "cpp",
"iostream": "cpp",
"istream": "cpp",
"limits": "cpp",
"mutex": "cpp",
"new": "cpp",
"numbers": "cpp",
"ostream": "cpp",
"semaphore": "cpp",
"sstream": "cpp",
"stdexcept": "cpp",
"stop_token": "cpp",
"streambuf": "cpp",
"thread": "cpp",
"cinttypes": "cpp",
"typeindex": "cpp",
"typeinfo": "cpp",
"__nullptr": "cpp",
"filesystem": "cpp",
"__locale": "cpp",
"locale": "cpp",
"__config": "cpp"
}
}
Loading