-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A copy of the "libmo_unpack" directory from: https://puma.nerc.ac.uk/trac/UM_TOOLS/attachment/wiki/unpack/unpack-160114.tgz
- Loading branch information
0 parents
commit e5caa3a
Showing
22 changed files
with
3,731 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
/***************************************************************************** | ||
* | ||
* NCSA HDF version 3.10 | ||
* July 1, 1990 | ||
* | ||
* NCSA HDF Version 3.10 source code and documentation are in the public | ||
* domain. Specifically, we give to the public domain all rights for future | ||
* licensing of the source code, all resale rights, and all publishing rights. | ||
* | ||
* We ask, but do not require, that the following message be included in all | ||
* derived works: | ||
* | ||
* Portions developed at the National Center for Supercomputing Applications at | ||
* the University of Illinois at Urbana-Champaign. | ||
* | ||
* THE UNIVERSITY OF ILLINOIS GIVES NO WARRANTY, EXPRESSED OR IMPLIED, FOR THE | ||
* SOFTWARE AND/OR DOCUMENTATION PROVIDED, INCLUDING, WITHOUT LIMITATION, | ||
* WARRANTY OF MERCHANTABILITY AND WARRANTY OF FITNESS FOR A PARTICULAR PURPOSE | ||
* | ||
*****************************************************************************/ | ||
/* ------------------------------------------------------------------- * | ||
* procedure: convert_float_ibm_to_ieee32(float ibm,float ieee,int *n) * | ||
* ------------------------------------------------------------------- * | ||
* PROCESSOR - High C Compiler R2.1n * | ||
* * | ||
* DEPENDENCES - NONE * | ||
* * | ||
* ATTRIBUTES - REENTERANT * | ||
* * | ||
* ENTRY POINT - _cfsi32 * | ||
* * | ||
* STATUS - NEW: 22 February 1990 * | ||
* LAST REVISION: 19 July 1990 * | ||
* * | ||
* Val I. Garger, Technology Integration * | ||
* Group, CNSF, Cornell University * | ||
* * | ||
* vig@eagle.cnsf.cornell.edu * | ||
*-------------------------------------------------------------------- * | ||
* * | ||
* COPYRIGHT - VAL GARGER, CORNELL NATIONAL SUPERCOMPUTER FACILITY, * | ||
* (JUNE 1990) CORNELL UNIVERSITY, ITHACA, NY. * | ||
* CONTAINS RESTRICTED MATERIALS OF CORNELL UNIVERSITY, * | ||
* (C) COPYRIGHT CORNELL UNIVERSITY 1990 * | ||
* * | ||
* ------------------------------------------------------------------- * | ||
* Change log: * | ||
* ------------------------------------------------------------------- * | ||
* Convert floating point, 32-bit IBM to 32-bit IEEE standard. * | ||
* * | ||
* Example: call cfsi32(ibm, ieee, n) * | ||
* * | ||
* input: ibm Array of IBM floating point numbers, REAL*4 values. * | ||
* n Number of elements in ibm to convert, integer. * | ||
* output: ieee Array of 32-bit IEEE floating point numbers, * | ||
* single precision. * | ||
* * | ||
* Format (bits, left to right): | Exponent bias: * | ||
* sign exponent mantissa | * | ||
* IBM 1 7 24 | 64 hex * | ||
* IEEE 1 8 23 | 127 * | ||
* | * | ||
* Usage notes: * | ||
* 1. Data could be converted "inplace". * | ||
* 2. IBM values that do not conform to IEEE standard are converted to * | ||
* either infinite IEEE values (positive or negative) or to zero. * | ||
* 3. Non-normalized with zero exponent values are kept intact. * | ||
* 4. Conversion does not incur the loss of mantissa accuracy. * | ||
* =================================================================== * | ||
*/ | ||
#include <stdint.h> | ||
#define exp 0x7F000000 | ||
#define sign 0x80000000 | ||
#define tiss 0x00FFFFFF | ||
#define etis 0x007FFFFF | ||
#define nrm 0x00F00000 | ||
|
||
#pragma linkage (cfsi32, fortran) | ||
|
||
int convert_float_ibm_to_ieee32(int ibm[], int ieee[], int* n) | ||
{ | ||
int status = 0; | ||
int32_t j, ibs, ibe, ibt, it, k; | ||
union { int32_t i; float r; } u; | ||
|
||
for(j = 0; j < *n; j++) { | ||
ibs = ibm[j] & sign; | ||
ibe = ibm[j] & exp ; | ||
ibt = ibm[j] & tiss; | ||
if (ibt == 0) { | ||
ibe = 0 ; | ||
} else { | ||
if ( (ibe != 0) && (ibt & nrm) == 0 ) { | ||
u.i = ibm[j] ; | ||
u.r = u.r + 0e0 ; | ||
ibe = u.i & exp ; | ||
ibt = u.i & tiss ; | ||
} | ||
/* mantissa */ | ||
it = ibt << 8; | ||
for (k = 0; (k < 5) && (it >= 0); k++ ) { | ||
it = it << 1; | ||
} | ||
if ( k < 4 ) { | ||
ibt = (it >> 8) & etis; | ||
ibe = (ibe >> 22) - 256 + 127 - k - 1; | ||
if (ibe < 0) { | ||
ibe = ibt = 0; | ||
} | ||
if (ibe >= 255) { | ||
ibe = 255; ibt = 0; | ||
} | ||
ibe = ibe << 23; | ||
} | ||
} | ||
ieee[j] = ibs | ibe | ibt; | ||
if (ibe == 255<<23) { | ||
status = -1; | ||
} | ||
} | ||
return status; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
/***************************************************************************** | ||
* | ||
* NCSA HDF version 3.10 | ||
* July 1, 1990 | ||
* | ||
* NCSA HDF Version 3.10 source code and documentation are in the public | ||
* domain. Specifically, we give to the public domain all rights for future | ||
* licensing of the source code, all resale rights, and all publishing rights. | ||
* | ||
* We ask, but do not require, that the following message be included in all | ||
* derived works: | ||
* | ||
* Portions developed at the National Center for Supercomputing Applications at | ||
* the University of Illinois at Urbana-Champaign. | ||
* | ||
* THE UNIVERSITY OF ILLINOIS GIVES NO WARRANTY, EXPRESSED OR IMPLIED, FOR THE | ||
* SOFTWARE AND/OR DOCUMENTATION PROVIDED, INCLUDING, WITHOUT LIMITATION, | ||
* WARRANTY OF MERCHANTABILITY AND WARRANTY OF FITNESS FOR A PARTICULAR PURPOSE | ||
* | ||
*****************************************************************************/ | ||
/* ------------------------------------------------------------------- * | ||
* procedure: convert_float_ieee32_to_ibm(float ieee, float ibm, int *n)* | ||
* ------------------------------------------------------------------- * | ||
* processor - High C Compiler R2.1n * | ||
* * | ||
* dependences - none * | ||
* * | ||
* attributes - reenterant * | ||
* * | ||
* entry point - _cfi32s * | ||
* * | ||
* status - new: 16 June 1989 * | ||
* last revision: 03 May 1990 * | ||
* * | ||
* Val I. Garger, Technology Integration * | ||
* Group, CNSF, Cornell University * | ||
* * | ||
* vig@eagle.cnsf.cornell.edu * | ||
*-------------------------------------------------------------------- * | ||
* * | ||
* COPYRIGHT - VAL GARGER, CORNELL NATIONAL SUPERCOMPUTER FACILITY, * | ||
* (JUNE 1990) CORNELL UNIVERSITY, ITHACA, NY. * | ||
* CONTAINS RESTRICTED MATERIALS OF CORNELL UNIVERSITY, * | ||
* (C) COPYRIGHT CORNELL UNIVERSITY 1990 * | ||
* * | ||
*-------------------------------------------------------------------- * | ||
* Change log: * | ||
*-------------------------------------------------------------------- * | ||
* Convert floating point, IEEE 32-bit to IBM 32-bit (REAL in Fortran).* | ||
* * | ||
* Example: call cfi32s(ieee, ibm, n) * | ||
* * | ||
* input: ieee Array of 32-bit IEEE floating point numbers, * | ||
* single precision. * | ||
* n Number of elements in ieee to convert, integer. * | ||
* output: ibm Array of IBM floating point numbers, REAL*4 values. * | ||
* * | ||
* Format (bits, left to right): | Exponent bias: * | ||
* sign exponent mantissa | * | ||
* IBM 1 7 24 | 64 hex * | ||
* IEEE 1 8 23 | 127 * | ||
* | * | ||
* Usage notes: * | ||
* 1. Data could be converted "inplace". * | ||
* 2. Infinite IEEE values are converted to the largest IBM values * | ||
* which are x'7FFFFFFF' and x'FFFFFFFF' for positive and negative * | ||
* respectively. * | ||
* 3. Like infinite values, NaN (Not a Number) values are converted to * | ||
* the largest values. * | ||
* 4. Precision in the mantissa could be lost by rounding off the * | ||
* least significant bits. 0 <= |error| <= 0.24E-6 * | ||
* (From 0 to 3 least significant bits out of 24 mantissa bits * | ||
* could be rounded.) * | ||
* =================================================================== * | ||
*/ | ||
#include <stdint.h> | ||
#define last 0x000000ff | ||
#define impl 0x00800000 | ||
#define sign 0x80000000 | ||
#define tiss 0x007fffff | ||
|
||
#pragma linkage (cfi32s, fortran) | ||
int convert_float_ieee32_to_ibm(int ieee[], int ibm[], int* n) | ||
{ | ||
int status = 0; | ||
int32_t j, k, ibs, ibe, ibt; | ||
for(j = 0; j < *n; j++) { | ||
ibt = ieee[j]; | ||
ibs = ieee[j] & sign; | ||
ibe = (ieee[j] >> 23) & last; | ||
|
||
if (ibe != 0) | ||
{ | ||
if (ibe == 255) | ||
{ ibe = 378; | ||
ibt = tiss; | ||
status = -1; /* Inf or NaN */ | ||
} | ||
ibe = ibe - 127 + 256 +1; | ||
k = ibe%4; | ||
ibe = ibe >> 2; | ||
if (k != 0) | ||
ibe = ibe + 1; | ||
ibe = ibe << 24 ; | ||
ibt = (ibt & tiss) | impl ; | ||
if (k != 0) | ||
ibt = ( ibt + (1 << (3-k) ) ) >> (4-k); | ||
if (status == 0) { | ||
status = 1; /* Rounding error */ | ||
} | ||
} | ||
ibm[j] = ibs | ibe | ibt; | ||
} | ||
return status; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#!/bin/sh | ||
# Copyright (c) 2012, The Met Office, UK | ||
# All rights reserved. | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions are met: | ||
# | ||
# 1. Redistributions of source code must retain the above copyright notice, this | ||
# list of conditions and the following disclaimer. | ||
# 2. Redistributions in binary form must reproduce the above copyright notice, | ||
# this list of conditions and the following disclaimer in the documentation | ||
# and/or other materials provided with the distribution. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND | ||
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED | ||
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR | ||
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES | ||
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND | ||
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
# | ||
# The views and conclusions contained in the software and documentation are those | ||
# of the authors and should not be interpreted as representing official policies, | ||
# either expressed or implied, of the Met Office. | ||
# | ||
|
||
# Only used to distribute this project results to the synchronisation | ||
# directory on the Linux Desktop. | ||
|
||
synch_dir=${1:-/project/ukmo/rhel6/synch/share} | ||
mkdir -p $synch_dir/lib $synch_dir/include 2>/dev/null | ||
chmod 775 $synch_dir/lib $synch_dir/include 2>/dev/null | ||
|
||
libverfile=`ls lib/libmo_unpack.so.[0-9].[0-9].[0-9]` | ||
|
||
if [ -f $synch_dir/$libverfile ] | ||
then | ||
echo "ERROR: Library version not updated. Installed version $libverfile." 2>&1 | ||
echo " Please change the rel version in the make_library script and recompile" 2>&1 | ||
exit 1 | ||
fi | ||
|
||
cp -d lib/lib* $synch_dir/lib | ||
cp -d include/*.h $synch_dir/include | ||
|
||
if [ $? -ne 0 ] | ||
then | ||
echo "Failed to synchronise" | ||
exit 1 | ||
fi |
Oops, something went wrong.