Home > Archive > APL > March 2005 > Please xplain this APL code / error if you can
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
Please xplain this APL code / error if you can
|
|
| Chris K. 2005-03-10, 3:56 pm |
| We use dyalog APL 905.
Thanks in advance.
Insufficient memory (xsTrap_Err[78])
========================================
===================================
Workspace size : 419.430.400
Workspace available : 150.351.244
Error message:
WS FULL
xUniqCv[30] x„x[r„"x;]
^
State indicator:
xsTrap_Err[78]
xUniqCv[30]
xDdr[17]
dbSelectPostCpp[26]
dbSelectDataCpp[88]
dbSelectCpp[56]
dbSelect[53]
limMainSegContSelectHlk[164]
limMainSegContSelect[19]
limMainSegContUpdate[47]
limCalcNext[49]
limCalc_ExNext[42]
xsTrap[8]
xsTrapLogExt[10]
srv_DoNext[52]
srv_EvTimer[181]
wEvWait[14]
srvStart[77]
xsTrap[8]
xsTrapLog[8]
progStart[131]
Christian Kirkemo
Nordea Bank Denmark
| |
| Mike Kent 2005-03-11, 3:55 am |
| Chris K. wrote:
> We use dyalog APL 905.
>
> Thanks in advance.
>
> Insufficient memory (xsTrap_Err[78])
> ========================================
===================================
> Workspace size : 419.430.400
> Workspace available : 150.351.244
>
> Error message:
> WS FULL
Pretty much what the report
> Insufficient memory (xsTrap_Err[78])
indicates:
Your application requires more memory than you have
specified when APL was invoked. It appears that APL
was started with maximum memory usage set to 400 Mbyte,
your program has used about 250Mbyte, and re-arranging
the row-order of "x" requires more than 150 Mbyte, and
APL has thrown an out-of-memory error (WS FULL).
Can't say any more without the source code. Can't actually
answer the question without the source code and a good
understanding of your data.
There are a number of Danes who do APL consulting; if you
need a real answer, or a fix for the problem, you might
want to engage one of them -- even if the solution turns
out to be "start APL with more memory".
> xUniqCv[30] x„x[r„"x;]
> ^
>
> State indicator:
[ snip ]
| |
| Mike Kent 2005-03-13, 3:55 am |
| Chris K. wrote:
> We use dyalog APL 905.
>
> Thanks in advance.
>
> Insufficient memory (xsTrap_Err[78])
> ========================================
===================================
> Workspace size : 419.430.400
> Workspace available : 150.351.244
>
> Error message:
> WS FULL
Pretty much what the report
> Insufficient memory (xsTrap_Err[78])
indicates:
Your application requires more memory than you have
specified when APL was invoked. It appears that APL
was started with maximum memory usage set to 400 Mbyte,
your program has used about 250Mbyte, and re-arranging
the row-order of "x" requires more than 150 Mbyte, and
APL has thrown an out-of-memory error (WS FULL).
Can't say any more without the source code. Can't actually
answer the question without the source code and a good
understanding of your data.
There are a number of Danes who do APL consulting; if you
need a real answer, or a fix for the problem, you might
want to engage one of them -- even if the solution turns
out to be "start APL with more memory".
> xUniqCv[30] x„x[r„"x;]
> ^
>
> State indicator:
[ snip ]
|
|
|
|
|