Sponsored Content
Top Forums Shell Programming and Scripting What is solution for this error? Post 302799545 by Akshay Hegde on Friday 26th of April 2013 04:49:47 PM
Old 04-26-2013
What is solution for this error?

Hi all, I am trying to run one model which contains many functions, If I use file below 1MB it works fine but If I use more than 1 MB getting following error

Please give me some solution

OS : Ubuntu 32-bit 12.04 LTS

Code:
*** glibc detected *** awk: double free or corruption (out): 0x08ac8768 ***
======= Backtrace: =========
/lib/i386-linux-gnu/libc.so.6(+0x73e42)[0xb7645e42]
awk[0x8052168]
awk[0x804dcfc]
awk[0x804dff7]
awk[0x8049076]
/lib/i386-linux-gnu/libc.so.6(__libc_start_main+0xf3)[0xb75eb4d3]
awk[0x804909d]
======= Memory map: ========
08048000-08061000 r-xp 00000000 08:09 3146401    /usr/bin/mawk
08061000-08062000 r--p 00018000 08:09 3146401    /usr/bin/mawk
08062000-08063000 rw-p 00019000 08:09 3146401    /usr/bin/mawk
08063000-08066000 rw-p 00000000 00:00 0 
08ac6000-1075c000 rw-p 00000000 00:00 0          [heap]
b72ea000-b73eb000 rw-p 00000000 00:00 0 
b746c000-b74ed000 rw-p 00000000 00:00 0 
b74ed000-b756e000 rw-p 00000000 00:00 0 
b759d000-b75b9000 r-xp 00000000 08:09 1835956    /lib/i386-linux-gnu/libgcc_s.so.1
b75b9000-b75ba000 r--p 0001b000 08:09 1835956    /lib/i386-linux-gnu/libgcc_s.so.1
b75ba000-b75bb000 rw-p 0001c000 08:09 1835956    /lib/i386-linux-gnu/libgcc_s.so.1
b75d0000-b75d2000 rw-p 00000000 00:00 0 
b75d2000-b7771000 r-xp 00000000 08:09 1835935    /lib/i386-linux-gnu/libc-2.15.so
b7771000-b7773000 r--p 0019f000 08:09 1835935    /lib/i386-linux-gnu/libc-2.15.so
b7773000-b7774000 rw-p 001a1000 08:09 1835935    /lib/i386-linux-gnu/libc-2.15.so
b7774000-b7777000 rw-p 00000000 00:00 0 
b7777000-b77a1000 r-xp 00000000 08:09 1835967    /lib/i386-linux-gnu/libm-2.15.so
b77a1000-b77a2000 r--p 00029000 08:09 1835967    /lib/i386-linux-gnu/libm-2.15.so
b77a2000-b77a3000 rw-p 0002a000 08:09 1835967    /lib/i386-linux-gnu/libm-2.15.so
b77b6000-b77ba000 rw-p 00000000 00:00 0 
b77ba000-b77bb000 r-xp 00000000 00:00 0          [vdso]
b77bb000-b77db000 r-xp 00000000 08:09 1835915    /lib/i386-linux-gnu/ld-2.15.so
b77db000-b77dc000 r--p 0001f000 08:09 1835915    /lib/i386-linux-gnu/ld-2.15.so
b77dc000-b77dd000 rw-p 00020000 08:09 1835915    /lib/i386-linux-gnu/ld-2.15.so
bf806000-bf828000 rw-p 00000000 00:00 0          [stack]
25    2    1    15    72    0    17-May-1979    12:00:00    AM    29.2    7    fin.sh: line 10: 12771: Abort(coredump)
Aborted (core dumped)

 

2 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

need the solution

Write a program to print all prime numbers from 1 to 300. (3 Replies)
Discussion started by: paniruddha
3 Replies

2. Ubuntu

What is solution for this error "tar: Exiting with failure status due to previous errors"?

Does anyone know what is solution for this error ?tar: Exiting with failure status due to previous errors from last 3 days I am trying to take backup of home/user directory getting again and again same error please anyone give me solution (8 Replies)
Discussion started by: Akshay Hegde
8 Replies
CPPRFS(l)								 )								 CPPRFS(l)

NAME
CPPRFS - improve the computed solution to a system of linear equations when the coefficient matrix is Hermitian positive definite and packed, and provides error bounds and backward error estimates for the solution SYNOPSIS
SUBROUTINE CPPRFS( UPLO, N, NRHS, AP, AFP, B, LDB, X, LDX, FERR, BERR, WORK, RWORK, INFO ) CHARACTER UPLO INTEGER INFO, LDB, LDX, N, NRHS REAL BERR( * ), FERR( * ), RWORK( * ) COMPLEX AFP( * ), AP( * ), B( LDB, * ), WORK( * ), X( LDX, * ) PURPOSE
CPPRFS improves the computed solution to a system of linear equations when the coefficient matrix is Hermitian positive definite and packed, and provides error bounds and backward error estimates for the solution. ARGUMENTS
UPLO (input) CHARACTER*1 = 'U': Upper triangle of A is stored; = 'L': Lower triangle of A is stored. N (input) INTEGER The order of the matrix A. N >= 0. NRHS (input) INTEGER The number of right hand sides, i.e., the number of columns of the matrices B and X. NRHS >= 0. AP (input) COMPLEX array, dimension (N*(N+1)/2) The upper or lower triangle of the Hermitian matrix A, packed columnwise in a linear array. The j-th column of A is stored in the array AP as follows: if UPLO = 'U', AP(i + (j-1)*j/2) = A(i,j) for 1<=i<=j; if UPLO = 'L', AP(i + (j-1)*(2n-j)/2) = A(i,j) for j<=i<=n. AFP (input) COMPLEX array, dimension (N*(N+1)/2) The triangular factor U or L from the Cholesky factorization A = U**H*U or A = L*L**H, as computed by SPPTRF/CPPTRF, packed column- wise in a linear array in the same format as A (see AP). B (input) COMPLEX array, dimension (LDB,NRHS) The right hand side matrix B. LDB (input) INTEGER The leading dimension of the array B. LDB >= max(1,N). X (input/output) COMPLEX array, dimension (LDX,NRHS) On entry, the solution matrix X, as computed by CPPTRS. On exit, the improved solution matrix X. LDX (input) INTEGER The leading dimension of the array X. LDX >= max(1,N). FERR (output) REAL array, dimension (NRHS) The estimated forward error bound for each solution vector X(j) (the j-th column of the solution matrix X). If XTRUE is the true solution corresponding to X(j), FERR(j) is an estimated upper bound for the magnitude of the largest element in (X(j) - XTRUE) divided by the magnitude of the largest element in X(j). The estimate is as reliable as the estimate for RCOND, and is almost always a slight overestimate of the true error. BERR (output) REAL array, dimension (NRHS) The componentwise relative backward error of each solution vector X(j) (i.e., the smallest relative change in any element of A or B that makes X(j) an exact solution). WORK (workspace) COMPLEX array, dimension (2*N) RWORK (workspace) REAL array, dimension (N) INFO (output) INTEGER = 0: successful exit < 0: if INFO = -i, the i-th argument had an illegal value PARAMETERS
ITMAX is the maximum number of steps of iterative refinement. LAPACK version 3.0 15 June 2000 CPPRFS(l)
All times are GMT -4. The time now is 08:50 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy