Skip to content
Open
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
79c9e52
updating branch
areenraj Jun 10, 2025
6686171
updating branch
areenraj Jun 10, 2025
b7591f4
Major commit: graph partitioning algorithms, level scheduling method,…
areenraj Jun 25, 2025
6f51f45
Major commit: graph partitioning algorithms, level scheduling method,…
areenraj Jun 25, 2025
cdf0225
resolving conflicts
areenraj Jun 25, 2025
9dd3028
resolving conflicts
areenraj Jun 25, 2025
2495edd
resolving some more conflicts
areenraj Jun 25, 2025
f68358e
cleaning up
areenraj Jun 25, 2025
bf561b6
apologies for repeated commits, just cleaning
areenraj Jun 25, 2025
9121e25
coalesced memory access for MVP, shared memory addition and lamda fun…
areenraj Jun 29, 2025
991e29f
bug fixes
areenraj Jul 1, 2025
9bfeff9
Merge remote-tracking branch 'upstream/master'
areenraj Jul 3, 2025
0372099
Working GPU LU_SGS Preconditioner Port
areenraj Jul 15, 2025
52b90b6
Fixed the issue with the visibility of the rowsPerBlock variable. Als…
areenraj Jul 17, 2025
d367627
Working LU_SGS Preconditioner with graph partitioned algorithms, upda…
areenraj Jul 17, 2025
661c9b8
LU_SGS Preconditioner Port
areenraj Jul 17, 2025
b5cf7dd
Merge branch 'master' of https://github.com/areenraj/SU2_GSoC_GPU
areenraj Jul 17, 2025
c4dbe5c
Fixing warnings
areenraj Jul 17, 2025
b3d2fbf
Merge branch 'develop' of https://github.com/su2code/SU2
areenraj Jul 17, 2025
1be1e2f
Syncing repo to develop
areenraj Jul 17, 2025
7472bd1
updating submodule versions
areenraj Jul 17, 2025
352e148
Fixing some more warnings
areenraj Jul 17, 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
Prev Previous commit
Next Next commit
apologies for repeated commits, just cleaning
  • Loading branch information
areenraj committed Jun 25, 2025
commit bf561b61bd93e9e0ef61c2e5de8ee46cc717e296
8 changes: 1 addition & 7 deletions Common/src/linear_algebra/CSysMatrix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,18 +68,12 @@ CSysMatrix<ScalarType>::~CSysMatrix() {
MemoryAllocation::aligned_free(matrix);
MemoryAllocation::aligned_free(invM);

<<<<<<< HEAD
GPUMemoryAllocation::gpu_free(d_matrix);
GPUMemoryAllocation::gpu_free(d_row_ptr);
GPUMemoryAllocation::gpu_free(d_col_ind);
GPUMemoryAllocation::gpu_free(d_partition_offsets);
=======
if (useCuda) {
GPUMemoryAllocation::gpu_free(d_matrix);
GPUMemoryAllocation::gpu_free(d_row_ptr);
GPUMemoryAllocation::gpu_free(d_col_ind);
GPUMemoryAllocation::gpu_free(d_partition_offsets);
}
>>>>>>> upstream/develop

#ifdef USE_MKL
mkl_jit_destroy(MatrixMatrixProductJitter);
Expand Down