Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
TRACY3
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
PA
Optics
TRACY3
Commits
b6eccee1
Commit
b6eccee1
authored
13 years ago
by
nadolski
Browse files
Options
Downloads
Patches
Plain Diff
New for parallel and cross compilation
parent
27645253
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
tracy/README
+35
-0
35 additions, 0 deletions
tracy/README
tracy/TPSA/Makefile.am
+1
-1
1 addition, 1 deletion
tracy/TPSA/Makefile.am
tracy/bootstrap
+1
-4
1 addition, 4 deletions
tracy/bootstrap
tracy/tools/Makefile.am
+9
-11
9 additions, 11 deletions
tracy/tools/Makefile.am
with
46 additions
and
16 deletions
tracy/README
+
35
−
0
View file @
b6eccee1
...
...
@@ -4,3 +4,38 @@ For most C++ developers, we recommend disabling #981. But for C code, #981 is mo
#pragma warning (default:193)
Tracy-3
Author: Johan Bengtsson
Requirements:
1. GNU autoconf and automake environment.
2. GNU C++ compiler: gcc
3. Numerical Recipes in C (with support for "double").
Assumed directory structure:
$NUM_REC/lib libnum_rec.a
$NUM_REC/inc nrutil.h, nr.h
To install:
1. Define the environment variable:
$NUM_REC = <path to Numerical Recipes library>
2. tar -xvzf <tar ball name>
3. cd tracy-3.0
4. ./bootstrap
5. ./configure
6. cd tracy/wrk
7. make
8. ./main lattice/ALBA
This diff is collapsed.
Click to expand it.
tracy/TPSA/Makefile.am
+
1
−
1
View file @
b6eccee1
...
...
@@ -4,4 +4,4 @@ libTPSALib_a_SOURCES = TPSALib.f
libLieLib_a_SOURCES
=
LieLib.f
FFLAGS
=
-g
-O2
-Wall
-fbounds-check
-fPIC
AM_
FFLAGS
=
-g
-O2
-Wall
-fbounds-check
-fPIC
This diff is collapsed.
Click to expand it.
tracy/bootstrap
+
1
−
4
View file @
b6eccee1
#!/bin/sh
set
-x
aclocal
-I
config
autoheader
autoreconf
automake
--add-missing
--foreign
--copy
autoreconf
-i
This diff is collapsed.
Click to expand it.
tracy/tools/Makefile.am
+
9
−
11
View file @
b6eccee1
...
...
@@ -4,27 +4,25 @@
AM_CPPFLAGS
=
-I
$(
top_srcdir
)
/tracy/inc
-I
$(
NUM_REC
)
/inc
bin_PROGRAMS
=
soltracy
#for single cpu
#bin_PROGRAMS = psoltracy # for parallel computation
#bin_PROGRAMS = max4 track_fft dynap leac
#max4_SOURCES = max4.cc nrutil.c nrcheck.c nrlinwww.c nrframe.c
soltracy_SOURCES
=
soltracy.cc nrutil.c nrcheck.c nrlinwww.c nrframe.c ../tracy/src/tracy_lib.cc
#psoltracy_SOURCES = psoltracy.cc nrutil.c nrcheck.c nrlinwww.c nrframe.c ../tracy/src/tracy_lib.cc
LIBS
=
-L
$(
NUM_REC
)
/lib
-lrecipes_c_gcc
# test factory
check_SCRIPTS
=
p
soltracy_
test
1.sh
p
soltracy_
test
2.sh
check_SCRIPTS
=
soltracy_
demo
1.sh soltracy_
demo
2.sh
TESTS
=
$(
check_SCRIPTS
)
psoltracy_test1.sh
:
echo
"cd check; ../psoltracy Input_ptest1.prm; mkdir check1; mv *lax *.out flatfile.dat check1"
>
psoltracy_test1.sh
chmod
+x psoltracy_test1.sh
demodir
=
demo
soltracy_demo1.sh
:
echo
"cd
$(
demodir
)
/demo1; ../../soltracy Input_demo1.prm;"
>
soltracy_demo1.sh
chmod
+x soltracy_demo1.sh
p
soltracy_
test
2.sh
:
echo
"cd
check
; ../
p
soltracy Input_
ptest
2.prm;
mkdir check2; mv *lax *.out flatfile.dat check2
"
>
p
soltracy_
test
2.sh
chmod
+x
p
soltracy_
test
2.sh
soltracy_
demo
2.sh
:
echo
"cd
$(
demodir
)
/demo2
; ../
../
soltracy Input_
demo
2.prm;"
>
soltracy_
demo
2.sh
chmod
+x soltracy_
demo
2.sh
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment