Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SWIFT
SWIFTsim
Commits
c0d14628
Commit
c0d14628
authored
Jan 09, 2013
by
Pedro Gonnet
Browse files
migrate name from GadgetSMP to SWIFT.
Former-commit-id: fce1166cf2800c7a2f37c0448226dd9d3149f4f6
parent
4c5b2b27
Changes
26
Hide whitespace changes
Inline
Side-by-side
Makefile.am
View file @
c0d14628
# This file is part of
GadgetSMP
.
# This file is part of
SWIFT
.
# Coypright (c) 2012 pedro.gonnet@durham.ac.uk.
#
# This program is free software: you can redistribute it and/or modify
...
...
configure.in
View file @
c0d14628
# This file is part of
GadgetSMP
.
# This file is part of
SWIFT
.
# Coypright (c) 2012 pedro.gonnet@durham.ac.uk.
#
# This program is free software: you can redistribute it and/or modify
...
...
@@ -19,7 +19,7 @@
AC_INIT(src/space.c)
VERSION="0.0.1"
AC_SUBST(VERSION)
AM_INIT_AUTOMAKE(
GadgetSMP
,VERSION)
AM_INIT_AUTOMAKE(
SWIFT
,VERSION)
AC_GNU_SOURCE
AC_PROG_LIBTOOL
...
...
doc/Doxyfile
View file @
c0d14628
...
...
@@ -25,7 +25,7 @@ DOXYFILE_ENCODING = UTF-8
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
# by quotes) that should identify the project.
PROJECT_NAME =
GadgetSMP
PROJECT_NAME =
SWIFT
# The PROJECT_NUMBER tag can be used to enter a project or revision number.
# This could be handy for archiving the generated documentation or
...
...
examples/Makefile.am
View file @
c0d14628
# This file is part of
GadgetSMP
.
# This file is part of
SWIFT
.
# Coypright (c) 2012 Pedro Gonnet (pedro.gonnet@durham.ac.uk),
# Matthieu Schaller (matthieu.schaller@durham.ac.uk).
#
...
...
@@ -30,5 +30,5 @@ bin_PROGRAMS = test
# Sources for test
test_SOURCES
=
test.c
test_CFLAGS
=
-DCOUNTER
-DTIMER
$(AM_CFLAGS)
test_LDADD
=
../src/.libs/lib
gadgetsmp
.a
$(HDF5_LDFLAGS)
test_LDADD
=
../src/.libs/lib
swiftsim
.a
$(HDF5_LDFLAGS)
examples/test.c
View file @
c0d14628
/*******************************************************************************
* This file is part of
GadgetSMP
.
* This file is part of
SWIFT
.
* Coypright (c) 2012 Pedro Gonnet (pedro.gonnet@durham.ac.uk),
* Matthieu Schaller (matthieu.schaller@durham.ac.uk)
*
...
...
@@ -36,7 +36,7 @@
#endif
/* Local headers. */
#include
"
gadgetsmp
.h"
#include
"
swift
.h"
/* Ticks per second on this machine. */
#ifndef CPU_TPS
...
...
src/Makefile.am
View file @
c0d14628
# This file is part of
GadgetSMP
.
# This file is part of
SWIFT
.
# Coypright (c) 2012 Pedro Gonnet (pedro.gonnet@durham.ac.uk),
# Matthieu Schaller (matthieu.schaller@durham.ac.uk).
#
...
...
@@ -27,11 +27,11 @@ AM_CFLAGS = -g -O3 -Wall -Werror -ffast-math -fstrict-aliasing -ftree-vectorize
# Assign a "safe" version number
AM_LDFLAGS
=
$(LAPACK_LIBS)
$(BLAS_LIBS)
$(HDF5_LDFLAGS)
-version-info
0:0:0
# Build the lib
gadgetsmp
library
lib_LTLIBRARIES
=
lib
gadgetsmp
.la
lib
gadgetsmp
_la_SOURCES
=
space.c runner.c queue.c task.c cell.c engine.c ic.c
# Build the lib
swiftsim
library
lib_LTLIBRARIES
=
lib
swiftsim
.la
lib
swiftsim
_la_SOURCES
=
space.c runner.c queue.c task.c cell.c engine.c ic.c
# List required headers
include_HEADERS
=
space.h runner.h queue.h task.h lock.h cell.h part.h const.h
\
engine.h
gadgetsmp
.h ic.h
engine.h
swift
.h ic.h
src/cell.c
View file @
c0d14628
/*******************************************************************************
* This file is part of
GadgetSMP
.
* This file is part of
SWIFT
.
* Coypright (c) 2012 Pedro Gonnet (pedro.gonnet@durham.ac.uk)
*
* This program is free software: you can redistribute it and/or modify
...
...
src/cell.h
View file @
c0d14628
/*******************************************************************************
* This file is part of
GadgetSMP
.
* This file is part of
SWIFT
.
* Coypright (c) 2012 Pedro Gonnet (pedro.gonnet@durham.ac.uk)
*
* This program is free software: you can redistribute it and/or modify
...
...
src/const.h
View file @
c0d14628
/*******************************************************************************
* This file is part of
GadgetSMP
.
* This file is part of
SWIFT
.
* Coypright (c) 2012 Pedro Gonnet (pedro.gonnet@durham.ac.uk)
*
* This program is free software: you can redistribute it and/or modify
...
...
src/engine.c
View file @
c0d14628
/*******************************************************************************
* This file is part of
GadgetSMP
.
* This file is part of
SWIFT
.
* Coypright (c) 2012 Pedro Gonnet (pedro.gonnet@durham.ac.uk)
*
* This program is free software: you can redistribute it and/or modify
...
...
src/engine.h
View file @
c0d14628
/*******************************************************************************
* This file is part of
GadgetSMP
.
* This file is part of
SWIFT
.
* Coypright (c) 2012 Pedro Gonnet (pedro.gonnet@durham.ac.uk)
*
* This program is free software: you can redistribute it and/or modify
...
...
src/ic.c
View file @
c0d14628
/*******************************************************************************
* This file is part of
GadgetSMP
.
* This file is part of
SWIFT
.
* Coypright (c) 2012 Pedro Gonnet (pedro.gonnet@durham.ac.uk),
* Matthieu Schaller (matthieu.schaller@durham.ac.uk).
*
...
...
src/ic.h
View file @
c0d14628
/*******************************************************************************
* This file is part of
GadgetSMP
.
* This file is part of
SWIFT
.
* Coypright (c) 2012 Matthieu Schaller (matthieu.schaller@durham.ac.uk).
*
* This program is free software: you can redistribute it and/or modify
...
...
src/lock.h
View file @
c0d14628
/*******************************************************************************
* This file is part of
GadgetSMP
.
* This file is part of
SWIFT
.
* Coypright (c) 2012 Pedro Gonnet (pedro.gonnet@durham.ac.uk)
*
* This program is free software: you can redistribute it and/or modify
...
...
src/part.h
View file @
c0d14628
/*******************************************************************************
* This file is part of
GadgetSMP
.
* This file is part of
SWIFT
.
* Coypright (c) 2012 Pedro Gonnet (pedro.gonnet@durham.ac.uk)
*
* This program is free software: you can redistribute it and/or modify
...
...
src/queue.c
View file @
c0d14628
/*******************************************************************************
* This file is part of
GadgetSMP
.
* This file is part of
SWIFT
.
* Coypright (c) 2012 Pedro Gonnet (pedro.gonnet@durham.ac.uk)
*
* This program is free software: you can redistribute it and/or modify
...
...
src/queue.h
View file @
c0d14628
/*******************************************************************************
* This file is part of
GadgetSMP
.
* This file is part of
SWIFT
.
* Coypright (c) 2012 Pedro Gonnet (pedro.gonnet@durham.ac.uk)
*
* This program is free software: you can redistribute it and/or modify
...
...
src/runner.c
View file @
c0d14628
/*******************************************************************************
* This file is part of
GadgetSMP
.
* This file is part of
SWIFT
.
* Coypright (c) 2012 Pedro Gonnet (pedro.gonnet@durham.ac.uk)
*
* This program is free software: you can redistribute it and/or modify
...
...
src/runner.h
View file @
c0d14628
/*******************************************************************************
* This file is part of
GadgetSMP
.
* This file is part of
SWIFT
.
* Coypright (c) 2012 Pedro Gonnet (pedro.gonnet@durham.ac.uk)
*
* This program is free software: you can redistribute it and/or modify
...
...
src/runner_doiact.h
View file @
c0d14628
/*******************************************************************************
* This file is part of
GadgetSMP
.
* This file is part of
SWIFT
.
* Coypright (c) 2012 Pedro Gonnet (pedro.gonnet@durham.ac.uk)
*
* This program is free software: you can redistribute it and/or modify
...
...
Prev
1
2
Next
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment