Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
TAPIOCA
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Francois Tessier
TAPIOCA
Commits
79e11cf2
Commit
79e11cf2
authored
Oct 30, 2017
by
Francois Tessier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename binding files. One file for each programming language.
parent
e77366ff
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
2 deletions
+7
-2
bindings/C/tapioca_capi.cpp
bindings/C/tapioca_capi.cpp
+1
-1
bindings/C/tapioca_capi.h
bindings/C/tapioca_capi.h
+0
-0
bindings/F90/tapioca_f90api.cpp
bindings/F90/tapioca_f90api.cpp
+1
-1
bindings/F90/tapioca_f90api.h
bindings/F90/tapioca_f90api.h
+0
-0
bindings/Makefile
bindings/Makefile
+5
-0
No files found.
bindings/C/tapioca_capi.cpp
View file @
79e11cf2
#include "tapioca.h"
#include "tapioca
_capi
.h"
#include "tapioca_singleton.hpp"
void
tapioca_init_
(
int64_t
*
chunkCount
,
int
*
chunkSize
,
...
...
bindings/C/tapioca.h
→
bindings/C/tapioca
_capi
.h
View file @
79e11cf2
File moved
bindings/F90/tapioca_f90api.cpp
View file @
79e11cf2
#include "tapioca.h"
#include "tapioca
_f90api
.h"
#include "tapioca_singleton.hpp"
void
tapioca_init_
(
int64_t
*
chunkCount
,
int
*
chunkSize
,
...
...
bindings/F90/tapioca.h
→
bindings/F90/tapioca
_f90api
.h
View file @
79e11cf2
File moved
bindings/Makefile
View file @
79e11cf2
...
...
@@ -8,9 +8,11 @@ TP_INCLUDE = ../architectures/tp_network_interface.hpp \
../architectures/
$(ARCHI)
/
*
C_CPP_FILES
:=
$(
wildcard
C/
*
.cpp
)
C_HDR_FILES
:=
$(
wildcard
C/
*
.h
)
C_OBJ_FILES
:=
$(C_CPP_FILES:.cpp=.o)
F90_CPP_FILES
:=
$(
wildcard
F90/
*
.cpp
)
F90_HDR_FILES
:=
$(
wildcard
F90/
*
.h
)
F90_OBJ_FILES
:=
$(F90_CPP_FILES:.cpp=.o)
all
:
c_bindings f90_bindings
...
...
@@ -21,5 +23,8 @@ c_bindings:$(C_CPP_FILES)
f90_bindings
:
$(F90_CPP_FILES)
$(MPICXX)
$(MPI_CFLAGS)
-c
$?
-o
$(F90_OBJ_FILES)
$(MPI_LDFLAGS)
install
:
cp
tapioca_singleton.hpp
$(C_HDR_FILES)
$(F90_HDR_FILES)
$(INSTALL_PATH)
/include
clean
:
rm
-f
$(F90_OBJ_FILES)
$(C_OBJ_FILES)
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