1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
|
#-------------------------------------------------------------------------------
# GraphBLAS/Makefile
#-------------------------------------------------------------------------------
# SuiteSparse:GraphBLAS, Timothy A. Davis, (c) 2017-2025, All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
#-------------------------------------------------------------------------------
# simple Makefile for GraphBLAS, relies on cmake to do the actual build. Use
# the CMAKE_OPTIONS argument to this Makefile to pass options to cmake.
# For example, to compile with 40 threads, use:
#
# make JOBS=40
#
# To compile without using Google's cpu_features package, using 40 threads:
#
# make CMAKE_OPTIONS='-DGBNCPUFEAT=1' JOBS=40
#
# To use multiple options, separate them by a space. For example, to build
# just the library but not cpu_features, and to enable AVX2 but not AVX512F:
#
# make CMAKE_OPTIONS='-DGBNCPUFEAT=1 -DGBAVX2=1' JOBS=40
JOBS ?= 8
default: library
# default is to install only in /usr/local
library:
( cd build && cmake $(CMAKE_OPTIONS) .. && cmake --build . --config Release -j${JOBS} )
# install only in SuiteSparse/lib and SuiteSparse/include
local:
( cd build && cmake $(CMAKE_OPTIONS) -USUITESPARSE_PKGFILEDIR -DSUITESPARSE_LOCAL_INSTALL=1 .. && cmake --build . --config Release -j${JOBS} )
# install only in /usr/local (default)
global:
( cd build && cmake $(CMAKE_OPTIONS) -USUITESPARSE_PKGFILEDIR -DSUITESPARSE_LOCAL_INSTALL=0 .. && cmake --build . --config Release -j${JOBS} )
# enable CUDA (NOTE: not ready for production use)
cuda:
( cd build && cmake $(CMAKE_OPTIONS) -DGRAPHBLAS_USE_CUDA=1 .. && cmake --build . --config Release -j$(JOBS) )
# compile with -g
debug:
( cd build && cmake -DCMAKE_BUILD_TYPE=Debug $(CMAKE_OPTIONS) .. && cmake --build . --config Debug -j$(JOBS) )
# compile without FactoryKernels
compact:
( cd build && cmake $(CMAKE_OPTIONS) -DGRAPHBLAS_COMPACT=1 .. && cmake --build . --config Release -j$(JOBS) )
# compile with -g, and without FactoryKernels
cdebug:
( cd build && cmake -DCMAKE_BUILD_TYPE=Debug -DGRAPHBLAS_COMPACT=1 $(CMAKE_OPTIONS) .. && cmake --build . --config Debug -j$(JOBS) )
# build the dynamic library and the demos
all:
( cd build && cmake $(CMAKE_OPTIONS) -DSUITESPARSE_DEMOS=1 .. && cmake --build . --config Release -j$(JOBS) )
# run the demos
demos: all
./build/grow_demo < Demo/Matrix/west0067
./build/simple_demo > ./build/simple_demo.out
./build/complex_demo > ./build/complex_demo_out.m
./build/complex_demo 1 > ./build/complex_demo_out2.m
./build/wildtype_demo > ./build/wildtype_demo.out
./build/gauss_demo > ./build/gauss_demo1.out
./build/gauss_demo > ./build/gauss_demo.out
./build/wathen_demo > ./build/wathen_demo.out
# diff the demo output
demodiffs: demos
echo "Comparing demo output:"
- diff -w Demo/Output/simple_demo.out build/simple_demo.out
- diff -w Demo/Output/complex_demo_out.m build/complex_demo_out.m
- diff -w Demo/Output/wildtype_demo.out build/wildtype_demo.out
- diff -w Demo/Output/gauss_demo.out build/gauss_demo.out
# just do 'make' in build; do not rerun the cmake script
remake:
( cd build && cmake --build . -j$(JOBS) )
# just run cmake; do not compile
setup:
( cd build && cmake $(CMAKE_OPTIONS) .. )
# build the static library
static:
( cd build && cmake $(CMAKE_OPTIONS) -DBUILD_STATIC_LIBS=ON -DBUILD_SHARED_LIBS=OFF .. && cmake --build . --config Release -j$(JOBS) )
# installs GraphBLAS to the install location defined by cmake, usually
# /usr/local/lib and /usr/local/include
install:
( cd build && cmake --install . )
# create the Doc/GraphBLAS_UserGuide.pdf
docs:
( cd Doc && $(MAKE) )
# compile the CUDA kernels
gpu:
( cd CUDA && cmake --build . --config Release -j${JOBS} )
# remove any installed libraries and #include files
uninstall:
- xargs rm < build/install_manifest.txt
clean: distclean
purge: distclean
# remove all files not in the distribution
distclean:
- rm -rf build/* Demo/*.out Demo/complex_demo_out*.m Tcov/log.txt
- rm -rf Config/*.tmp Source/control.m4
- rm -rf Doc/html/* Doc/*.tmp
- rm -rf JITpackage/build/*
( cd GraphBLAS && $(MAKE) distclean )
( cd Test && $(MAKE) distclean )
( cd Tcov && $(MAKE) distclean )
( cd Doc && $(MAKE) distclean )
|