Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
O
openfpm_numerics
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openfpm
openfpm_numerics
Commits
a0ec2f25
Commit
a0ec2f25
authored
Oct 25, 2016
by
incardon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing openmp
parent
3a56de9c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
55 deletions
+4
-55
Jenkinsfile
Jenkinsfile
+0
-53
m4/ax_petsc_lib.m4
m4/ax_petsc_lib.m4
+4
-2
No files found.
Jenkinsfile
deleted
100644 → 0
View file @
3a56de9c
#
!
groovy
parallel
(
"nyu"
:
{
node
(
'gin'
)
{
deleteDir
()
checkout
scm
stage
(
'build_gin'
)
{
sh
"./build.sh $WORKSPACE $NODE_NAME"
}
stage
(
'run_gin'
)
{
parallel
(
"1"
:
{
sh
"cd openfpm_numerics && ./run.sh $WORKSPACE $NODE_NAME 1"
},
"2"
:
{
sh
"cd openfpm_numerics && ./run.sh $WORKSPACE $NODE_NAME 2"
},
"3"
:
{
sh
"cd openfpm_numerics && ./run.sh $WORKSPACE $NODE_NAME 3"
},
"4"
:
{
sh
"cd openfpm_numerics && ./run.sh $WORKSPACE $NODE_NAME 4"
}
)
}
}
},
"sb15"
:
{
node
(
'sbalzarini-mac-15'
)
{
deleteDir
()
env
.
PATH
=
"/usr/local/bin:${env.PATH}"
checkout
scm
stage
(
'build_sb15'
)
{
sh
"./build.sh $WORKSPACE $NODE_NAME NO"
}
stage
(
'run_sb15'
)
{
parallel
(
"1"
:
{
sh
"cd openfpm_vcluster && ./run.sh $WORKSPACE $NODE_NAME 1"
},
"2"
:
{
sh
"cd openfpm_vcluster && ./run.sh $WORKSPACE $NODE_NAME 2"
},
"3"
:
{
sh
"cd openfpm_vcluster && ./run.sh $WORKSPACE $NODE_NAME 3"
},
"4"
:
{
sh
"cd openfpm_vcluster && ./run.sh $WORKSPACE $NODE_NAME 4"
}
)
}
}
}
)
m4/ax_petsc_lib.m4
View file @
a0ec2f25
...
...
@@ -102,8 +102,10 @@ AC_DEFUN([AX_LIB_PETSC], [
old_CC=$CC
old_CFLAGS=$CFLAGS
old_LDFLAGS=$LDFLAGS
CFLAGS="-I$with_petsc/include $HDF5_INCLUDE $METIS_INCLUDE "
LDFLAGS="-L$with_petsc/lib $HDF5_LDFLAGS $HDF5_LIBS $METIS_LIB -lmetis "
AX_OPENMP([CFLAGS="$OPENMP_CFLAGS"
LDFLAGS="$OPENMP_LDFLAGS"],[])
CFLAGS="$CFLAGS -I$with_petsc/include $HDF5_INCLUDE $METIS_INCLUDE "
LDFLAGS="$LDFLAGS -L$with_petsc/lib $HDF5_LDFLAGS $HDF5_LIBS $METIS_LIB -lmetis "
CC=$CXX
AC_LANG_SAVE
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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