Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lammps
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
multiscale
lammps
Commits
0f3d77ed
Commit
0f3d77ed
authored
9 years ago
by
sjplimp
Browse files
Options
Downloads
Patches
Plain Diff
git-svn-id:
svn://svn.icms.temple.edu/lammps-ro/trunk@13950
f3b2605a-c512-4ea7-a41b-209d697bcdaa
parent
42968083
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/h5md/Makefile
+4
-1
4 additions, 1 deletion
lib/h5md/Makefile
lib/h5md/include/ch5md.h
+1
-0
1 addition, 0 deletions
lib/h5md/include/ch5md.h
lib/h5md/src/ch5md.c
+9
-0
9 additions, 0 deletions
lib/h5md/src/ch5md.c
with
14 additions
and
1 deletion
lib/h5md/Makefile
+
4
−
1
View file @
0f3d77ed
EXTRAMAKE
=
Makefile.lammps.empty
EXTRAMAKE
=
Makefile.lammps.empty
CC
=
h5cc
CC
=
h5cc
CFLAGS
=
-D_DEFAULT_SOURCE
-O2
# -DH5_NO_DEPRECATED_SYMBOLS is required here to ensure we are using
# the v1.8 API when HDF5 is configured to default to using the v1.6 API.
CFLAGS
=
-D_DEFAULT_SOURCE
-O2
-DH5_NO_DEPRECATED_SYMBOLS
-Wall
HDF5_PATH
=
/usr
HDF5_PATH
=
/usr
INC
=
-I
include
INC
=
-I
include
AR
=
ar
AR
=
ar
...
...
This diff is collapsed.
Click to expand it.
lib/h5md/include/ch5md.h
+
1
−
0
View file @
0f3d77ed
...
@@ -57,6 +57,7 @@ h5md_file h5md_create_file (const char *filename, const char *author, const char
...
@@ -57,6 +57,7 @@ h5md_file h5md_create_file (const char *filename, const char *author, const char
int
h5md_close_file
(
h5md_file
file
);
int
h5md_close_file
(
h5md_file
file
);
hid_t
h5md_open_file
(
const
char
*
filename
);
hid_t
h5md_open_file
(
const
char
*
filename
);
h5md_particles_group
h5md_create_particles_group
(
h5md_file
file
,
const
char
*
name
);
h5md_particles_group
h5md_create_particles_group
(
h5md_file
file
,
const
char
*
name
);
hid_t
h5md_open_particles_group
(
hid_t
particles
,
const
char
*
name
);
h5md_element
h5md_create_time_data
(
hid_t
loc
,
const
char
*
name
,
int
rank
,
int
int_dims
[],
hid_t
datatype
,
h5md_element
*
link
);
h5md_element
h5md_create_time_data
(
hid_t
loc
,
const
char
*
name
,
int
rank
,
int
int_dims
[],
hid_t
datatype
,
h5md_element
*
link
);
int
h5md_close_element
(
h5md_element
e
);
int
h5md_close_element
(
h5md_element
e
);
h5md_element
h5md_create_fixed_data_simple
(
hid_t
loc
,
const
char
*
name
,
int
rank
,
int
int_dims
[],
hid_t
datatype
,
void
*
data
);
h5md_element
h5md_create_fixed_data_simple
(
hid_t
loc
,
const
char
*
name
,
int
rank
,
int
int_dims
[],
hid_t
datatype
,
void
*
data
);
...
...
This diff is collapsed.
Click to expand it.
lib/h5md/src/ch5md.c
+
9
−
0
View file @
0f3d77ed
...
@@ -137,6 +137,15 @@ h5md_particles_group h5md_create_particles_group(h5md_file file, const char *nam
...
@@ -137,6 +137,15 @@ h5md_particles_group h5md_create_particles_group(h5md_file file, const char *nam
return
group
;
return
group
;
}
}
hid_t
h5md_open_particles_group
(
hid_t
particles
,
const
char
*
name
)
{
hid_t
group
;
group
=
H5Gopen
(
particles
,
name
,
H5P_DEFAULT
);
return
group
;
}
h5md_element
h5md_create_time_data
(
hid_t
loc
,
const
char
*
name
,
int
rank
,
int
int_dims
[],
hid_t
datatype
,
h5md_element
*
link
)
h5md_element
h5md_create_time_data
(
hid_t
loc
,
const
char
*
name
,
int
rank
,
int
int_dims
[],
hid_t
datatype
,
h5md_element
*
link
)
{
{
...
...
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