Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GraphBLAS: Fix typo #663

Merged
merged 1 commit into from
Dec 30, 2023
Merged
Changes from all commits
Commits
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
6 changes: 3 additions & 3 deletions GraphBLAS/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -461,9 +461,9 @@ if ( GRAPHBLAS_HAS_OPENMP )
endif ( )
message ( STATUS "CMAKE OpenMP C flags: ${OpenMP_C_FLAGS}" )
else ( )
message ( WARNING
message ( WARNING
"WARNING: OpenMP was not found (or was disabled with "
"GRAPHBLAS_USE_OPENMP). See the GrapBLAS user guide on the consequences "
"GRAPHBLAS_USE_OPENMP). See the GraphBLAS user guide on the consequences "
"of compiling GraphBLAS without OpenMP. GraphBLAS will work but may not be "
"thread-safe, since it relies on '#pragma omp flush' to ensure the work "
"performed by one user thread is available to another, in GrB_wait. If "
Expand All @@ -476,7 +476,7 @@ else ( )
include ( SuiteSparse__thread )
if ( NOT HAVE_KEYWORD__DECLSPEC_THREAD AND NOT HAVE_KEYWORD__THREAD
AND NOT HAVE_KEYWORD__THREAD_LOCAL )
message ( WARNING
message ( WARNING
"The C compiler does not support thread-local-storage; "
"GxB_Context_engage will return GrB_NOT_IMPLEMENTED." )
endif ( )
Expand Down
Loading