Skip to content

Commit

Permalink
#EDITS: updates to linalg module and file seperation
Browse files Browse the repository at this point in the history
  • Loading branch information
akielaries committed Feb 16, 2024
1 parent 21fc97d commit b8cedfb
Show file tree
Hide file tree
Showing 16 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ jobs:
- name: install deps
run: |
sudo apt install lcov cmake gfortran cppcheck doxygen
sudo apt update && sudo apt upgrade
- name: Configure
run: |
sudo apt-get install libgtest-dev &&
Expand Down
4 changes: 2 additions & 2 deletions modules/linalg/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ endif()
if (BUILD_GPU_OPENCL)
message("-- [EXT] : Building OpenCL GPU Extension")
list(APPEND SOURCE_FILES
plat/_gpu_mtx_add.c
plat/_gpu_mtx_add_wrapper.cpp
gpu/_gpu_mtx_add.c
gpu/_gpu_mtx_add_wrapper.cpp
)
endif()

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ if(LCOV)
COMMAND ${CMAKE_COMMAND} -E cmake_echo_color --cyan --bold "[Generating Coverage Reports]"
COMMAND lcov --directory .. --capture --output-file lcov.info --rc geninfo_unexecuted_blocks=1 #--ignore-errors mismatch,mismatch
COMMAND lcov --remove lcov.info "*c++*" "*11*" "*/googletest/*" "*/gtest*" "/usr/*" "/src" "/build" -o lcov.info --ignore-errors unused
#COMMAND mv lcov.info ../../.coverage
COMMAND mv lcov.info ../../.coverage
)
endif()
else()
Expand Down

0 comments on commit b8cedfb

Please sign in to comment.