Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 132f67d

Browse files
committedAug 15, 2021
Import project from the old version 1.5.847 source
0 parents  commit 132f67d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+16001
-0
lines changed
 

‎Makefile

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2DECOMP_DIR=$(CURDIR)
2+
3+
.PHONY: lib examples clean install_dir
4+
5+
all: lib basic_test
6+
7+
lib:
8+
cd lib; $(MAKE) $@
9+
10+
examples:
11+
cd $@ ; $(MAKE) $@
12+
13+
basic_test: examples
14+
@echo "Basic Test target is examples"
15+
16+
clean:
17+
cd src; $(MAKE) $@
18+
cd lib; $(MAKE) $@
19+
cd include; rm -f *.mod
20+
cd examples; $(MAKE) $@
21+
22+
install_dir:
23+
mkdir -p $(DESTDIR)$(prefix)
24+
mkdir -p $(DESTDIR)$(prefix)/include
25+
mkdir -p $(DESTDIR)$(prefix)/lib
26+
mkdir -p $(DESTDIR)$(prefix)/doc
27+
28+
install: all install_dir
29+
cp $(2DECOMP_DIR)/include/*.mod $(DESTDIR)$(prefix)/include
30+
cp $(2DECOMP_DIR)/lib/lib*.a $(DESTDIR)$(prefix)/lib
31+
cp $(2DECOMP_DIR)/README $(DESTDIR)$(prefix)/README_2DECOMP
32+
cp $(2DECOMP_DIR)/doc/* $(DESTDIR)$(prefix)/doc

‎README

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2DECOMP&FFT - Library for 2D pencil decomposition and highly scalable
2+
distributed 3D Fast Fourier Transforms
3+
4+
Version 1.5
5+
6+
Copyright (C) 2009-2012 Ning Li
7+
The Numerical Algorithms Group (NAG)
8+
9+
http://www.2decomp.org
10+
11+
2DECOMP&FFT is part of the Open Petascale Libraries.
12+
13+
http://www.openpetascale.org/2decomp

0 commit comments

Comments
 (0)
Please sign in to comment.