~ubuntu-branches/ubuntu/trusty/nwchem/trusty-proposed

« back to all changes in this revision

Viewing changes to src/tools/ga-5-1/armci/src/ft/armci_storage.h

  • Committer: Package Import Robot
  • Author(s): Michael Banck, Daniel Leidert, Andreas Tille, Michael Banck
  • Date: 2013-07-04 12:14:55 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20130704121455-5tvsx2qabor3nrui
Tags: 6.3-1
* New upstream release.
* Fixes anisotropic properties (Closes: #696361).
* New features include:
  + Multi-reference coupled cluster (MRCC) approaches
  + Hybrid DFT calculations with short-range HF 
  + New density-functionals including Minnesota (M08, M11) and HSE hybrid
    functionals
  + X-ray absorption spectroscopy (XAS) with TDDFT
  + Analytical gradients for the COSMO solvation model
  + Transition densities from TDDFT 
  + DFT+U and Electron-Transfer (ET) methods for plane wave calculations
  + Exploitation of space group symmetry in plane wave geometry optimizations
  + Local density of states (LDOS) collective variable added to Metadynamics
  + Various new XC functionals added for plane wave calculations, including
    hybrid and range-corrected ones
  + Electric field gradients with relativistic corrections 
  + Nudged Elastic Band optimization method
  + Updated basis sets and ECPs 

[ Daniel Leidert ]
* debian/watch: Fixed.

[ Andreas Tille ]
* debian/upstream: References

[ Michael Banck ]
* debian/upstream (Name): New field.
* debian/patches/02_makefile_flags.patch: Refreshed.
* debian/patches/06_statfs_kfreebsd.patch: Likewise.
* debian/patches/07_ga_target_force_linux.patch: Likewise.
* debian/patches/05_avoid_inline_assembler.patch: Removed, no longer needed.
* debian/patches/09_backported_6.1.1_fixes.patch: Likewise.
* debian/control (Build-Depends): Added gfortran-4.7 and gcc-4.7.
* debian/patches/10_force_gcc-4.7.patch: New patch, explicitly sets
  gfortran-4.7 and gcc-4.7, fixes test suite hang with gcc-4.8 (Closes:
  #701328, #713262).
* debian/testsuite: Added tests for COSMO analytical gradients and MRCC.
* debian/rules (MRCC_METHODS): New variable, required to enable MRCC methods.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#if HAVE_STDIO_H
2
 
#   include <stdio.h>
3
 
#endif
4
 
#if HAVE_SETJMP_H
5
 
#   include <setjmp.h>
6
 
#endif
7
 
#if HAVE_SYS_TYPES_H
8
 
#   include <sys/types.h>
9
 
#endif
10
 
#if HAVE_SYS_SYSCALL_H
11
 
#   include <sys/syscall.h>
12
 
#endif
13
 
#if HAVE_SYS_MMAN_H
14
 
#   include <sys/mman.h>
15
 
#endif
16
 
#if HAVE_SYS_PARAM_H
17
 
#   include <sys/param.h>
18
 
#endif
19
 
#if HAVE_SYS_WAIT_H
20
 
#   include <sys/wait.h>
21
 
#endif
22
 
#if HAVE_SIGNAL_H
23
 
#   include <signal.h>
24
 
#endif
25
 
#if HAVE_STDLIB_H
26
 
#   include <stdlib.h>
27
 
#endif
28
 
#if HAVE_STRING_H
29
 
#   include <string.h>
30
 
#endif
31
 
#if HAVE_MATH_H
32
 
#   include <math.h>
33
 
#endif
34
 
#if HAVE_ASSERT_H
35
 
#   include <assert.h>
36
 
#endif
37
 
#if HAVE_UNISTD_H
38
 
#   include <unistd.h>
39
 
#endif
40
 
#if HAVE_FCNTL_H
41
 
#   include <fcntl.h>
42
 
#endif
43
 
#if HAVE_ERRNO_H
44
 
#   include <errno.h>
45
 
#endif
46
 
#if HAVE_DIRENT_H
47
 
#   include <dirent.h>
48
 
#endif
49
 
#if HAVE_STDARG_H
50
 
#   include <stdarg.h>
51
 
#endif
52
 
#define FILE_DS FILE *
53
 
 
54
 
FILE_DS armci_storage_fopen(char *filename);
55
 
FILE_DS armci_storage_fopen_RONLY(char *filename);
56
 
void armci_storage_fclose(FILE_DS filed);
57
 
 
58
 
int armci_storage_read_ptr(FILE_DS file_d,void *ptr,size_t size,off_t ofs);
59
 
int armci_storage_read_pages(FILE_DS file_d, unsigned long first_page,
60
 
                unsigned long *page_arr, unsigned long page_arr_sz,int pagesize,
61
 
                off_t ofs);
62
 
int armci_storage_write_ptr(FILE_DS file_d,void *ptr,size_t size,off_t ofs);
63
 
int armci_storage_write_pages(FILE_DS file_d, unsigned long first_page,
64
 
                unsigned long *page_arr, unsigned long page_arr_sz,int pagesize,
65
 
                off_t ofs);