* Array Size Limitations Overcome!
@ 1999-01-31 5:59 David McClain
0 siblings, 0 replies; only message in thread
From: David McClain @ 1999-01-31 5:59 UTC (permalink / raw)
To: Liste CAML
I have just finished developing a layer called "General_Array" on top of =
the "Array" library that permits unlimited sized arrays (up to 2^30 =
elements). I do it by noting that Array.unsafe_get and Array.unsafe_set =
cannot distingish an actual heap object from a user allocated pointer to =
doubles. By puling some stunts in C I can make OCAML deal with this =
"arena" in a uniform manner between arrays of floats and my own large =
arrays. Hence the same code writtin with the Array.unsafe_get/set works =
with either one, and I simply build my own arrays when the size would =
exceed the limits imposed by OCAML.
Note that the "alloc_final" function allows me to allocate my own large =
structures, and even though they appear as only a single heap word to =
OCAML, I can sensitize OCAML to my large allocations and force a more =
frequent GC cycle to help keep these foreign objects from overwhelming =
the paging system.
I will clean up the code and post it on my Web site shortly. I must say, =
that this was what I consider a major architectural change to the =
underpinnings of my OCAML image processing library. And yet, in spite of =
this major shift, the OCAML code worked perfectly well. I have never =
seen anything like it! I did have one bug in my "C" code (a simple =
3-letter typo), but the OCAML stuff was pristine!
David McClain
Sr. Scientist
Raytheon Missile Systems Co.
Tucson, AZ
http://www.azstarnet.com/~dmcclain/homepage.htm
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~1999-02-03 10:57 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-01-31 5:59 Array Size Limitations Overcome! David McClain
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox