# Cyclops Tensor Framework # # see README for more detailed instructions # # type make to build library # type make examples to build all examples # type make <example_name> # where <example_name> can be one of # gemm gemm_4D dft dft_3D trace sym3 ccsd_t3_to_t2 weight_4D HNAME := $(shell hostname | cut -d . -f 1) .PHONY: examples all $(MAKECMDGOALS): @if [ ! -f src/make/make.in ] ; then \ echo -n top_dir= > src/make/make.in; \ pwd >> src/make/make.in; \ fi; \ if [ ! -f config.mk ] ; then \ if [ $(shell hostname | grep 'edison\|hopper\|carver' ) ] ; then \ echo 'Hostname recognized as a NERSC machine, using pre-made config.mk file'; \ cp mkfiles/config.mk.nersc config.mk; \ else \ if [ $(shell hostname | grep 'surveyor\|intrepid\|udawn' ) ] ; then \ echo 'Hostname recognized as a BG/P machine, using pre-made config.mk file'; \ cp mkfiles/config.mk.bgp config.mk; \ else \ if [ $(shell hostname | grep 'vesta\|mira\|seq' ) ] ; then \ cp mkfiles/config.mk.bgq config.mk; \ else \ echo 'Hostname not recognized: assuming linux, specialize config.mk if necessary'; \ cp mkfiles/config.mk.linux config.mk; \ fi; \ fi; \ fi; \ fi; \ cd src/make; \ $(MAKE) $@;