caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
* [Caml-list] Re: toplevel bogging down after a while
@ 2001-04-06  8:49 Chris Hecker
  2001-04-21  8:20 ` Chris Hecker
  0 siblings, 1 reply; 2+ messages in thread
From: Chris Hecker @ 2001-04-06  8:49 UTC (permalink / raw)
  To: caml-list


I should point out that the app isn't printing things out to stdout and emacs is filling up or anything.  I can restart the inferior-caml process in an already existing buffer where things were slow and it still speeds right back up.

Chris

------------------

I tend to use this emacs macro a lot while I'm developing:

             (define-key caml-mode-map "\C-c\C-t"
               (lambda ()
                 "Eval the entire buffer with *inferior-caml*"
                 (interactive)
                 (inferior-caml-eval-region (point-min) (point-max))))

I love having a language with a toplevel, especially when I can run tk/gl apps straight out of emacs!  Groovy.

However, after about 15 or 20 runs of my 300 line labltk/lablgl app, the runtime performance of the app starts really decreasing.  If I kill the inferior-caml process, and start it up again, everything's back to normal.  

It seems like the gl-drawn mouse cursor is slowing down even more than the app, but the app definitely slows way down.

Below are some Gc.stat () calls at various times.  Is it likely that this is Gc related?  I don't know how to read the stats below and whether they're saying anything.  I don't mind restarting the inferior-caml process, but is this some problem with my app that I'm going to run into if the native code version is run for long enough?  Is there any way I can figure out what's causing this?  Is there a way to reset the toplevel without killing the process?

This is on Win98, OCaml 3.00, with a custom toplevel (built with unix, lablgl, and labltk).

Chris

fresh inferior-caml:
{Gc.minor_words=104712; Gc.promoted_words=41874; Gc.major_words=101633;
 Gc.minor_collections=5; Gc.major_collections=1; Gc.heap_words=126976;
 Gc.heap_chunks=2; Gc.live_words=101633; Gc.live_blocks=20071;
 Gc.free_words=25343; Gc.free_blocks=2; Gc.largest_free=25166;
 Gc.fragments=0; Gc.compactions=0}

after one run, things are nice and fast:
{Gc.minor_words=4963116; Gc.promoted_words=481604; Gc.major_words=681315;
 Gc.minor_collections=153; Gc.major_collections=3; Gc.heap_words=717824;
 Gc.heap_chunks=11; Gc.live_words=272130; Gc.live_blocks=77445;
 Gc.free_words=50961; Gc.free_blocks=222; Gc.largest_free=45281;
 Gc.fragments=54; Gc.compactions=0}

after ten or so runs, things are chugging at this point:
{Gc.minor_words=26965304; Gc.promoted_words=3293457; Gc.major_words=3519501;
 Gc.minor_collections=824; Gc.major_collections=8; Gc.heap_words=2241536;
 Gc.heap_chunks=35; Gc.live_words=201410; Gc.live_blocks=63981;
 Gc.free_words=222291; Gc.free_blocks=2316; Gc.largest_free=34683;
 Gc.fragments=1258; Gc.compactions=0}

-------------------
To unsubscribe, mail caml-list-request@inria.fr.  Archives: http://caml.inria.fr


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [Caml-list] Re: toplevel bogging down after a while
  2001-04-06  8:49 [Caml-list] Re: toplevel bogging down after a while Chris Hecker
@ 2001-04-21  8:20 ` Chris Hecker
  0 siblings, 0 replies; 2+ messages in thread
From: Chris Hecker @ 2001-04-21  8:20 UTC (permalink / raw)
  To: caml-list


If anyone is curious, I figured out what the cause of the performance problem here was.  It seems like a problem with Togl.

I'm using lablgl and Togl, and was using the Togl.timer_func function as an animation timer.  This function registers a Tk timer with Timer.add, and then re-adds it every time it triggers (since Timer.add is a on-shot).  The problem is, this means the last timer never gets deleted, and it's still in Tk's timer table (and since the recursive add call is inside Togl, you can't get access to the Timer.t to call Timer.remove).  These old timers accumulate and slow down everything after a few runs.  I replaced the call to Togl.timer_func with this code and everything works fine now:

  let rec timer_t = ref
      (let rec add_timer () = Timer.add ~ms:1
          ~callback:(fun () -> (try display togl with _ -> ()); 
                                timer_t := add_timer ()) in
       add_timer ())

And then I call Timer.remove on !timer_t after mainLoop.  (Is there a cleaner way to do this without the two let recs?)  Not sure if we should consider this a bug in Togl.timer_func or not, but it certainly does hose multiple runs on the toplevel.  Another option, besides manually deleting each timer like above, would be to have a Timer.clear_all, but I couldn't figure out how to enumerate through the currently registered timers.

Chris


At 01:49 AM 4/6/01 -0700, Chris Hecker wrote:

>I should point out that the app isn't printing things out to stdout and emacs is filling up or anything.  I can restart the inferior-caml process in an already existing buffer where things were slow and it still speeds right back up.
>
>Chris
>
>------------------
>
>I tend to use this emacs macro a lot while I'm developing:
>
>             (define-key caml-mode-map "\C-c\C-t"
>               (lambda ()
>                 "Eval the entire buffer with *inferior-caml*"
>                 (interactive)
>                 (inferior-caml-eval-region (point-min) (point-max))))
>
>I love having a language with a toplevel, especially when I can run tk/gl apps straight out of emacs!  Groovy.
>
>However, after about 15 or 20 runs of my 300 line labltk/lablgl app, the runtime performance of the app starts really decreasing.  If I kill the inferior-caml process, and start it up again, everything's back to normal.  
>
>It seems like the gl-drawn mouse cursor is slowing down even more than the app, but the app definitely slows way down.
>
>Below are some Gc.stat () calls at various times.  Is it likely that this is Gc related?  I don't know how to read the stats below and whether they're saying anything.  I don't mind restarting the inferior-caml process, but is this some problem with my app that I'm going to run into if the native code version is run for long enough?  Is there any way I can figure out what's causing this?  Is there a way to reset the toplevel without killing the process?
>
>This is on Win98, OCaml 3.00, with a custom toplevel (built with unix, lablgl, and labltk).
>
>Chris
>
>fresh inferior-caml:
>{Gc.minor_words=104712; Gc.promoted_words=41874; Gc.major_words=101633;
> Gc.minor_collections=5; Gc.major_collections=1; Gc.heap_words=126976;
> Gc.heap_chunks=2; Gc.live_words=101633; Gc.live_blocks=20071;
> Gc.free_words=25343; Gc.free_blocks=2; Gc.largest_free=25166;
> Gc.fragments=0; Gc.compactions=0}
>
>after one run, things are nice and fast:
>{Gc.minor_words=4963116; Gc.promoted_words=481604; Gc.major_words=681315;
> Gc.minor_collections=153; Gc.major_collections=3; Gc.heap_words=717824;
> Gc.heap_chunks=11; Gc.live_words=272130; Gc.live_blocks=77445;
> Gc.free_words=50961; Gc.free_blocks=222; Gc.largest_free=45281;
> Gc.fragments=54; Gc.compactions=0}
>
>after ten or so runs, things are chugging at this point:
>{Gc.minor_words=26965304; Gc.promoted_words=3293457; Gc.major_words=3519501;
> Gc.minor_collections=824; Gc.major_collections=8; Gc.heap_words=2241536;
> Gc.heap_chunks=35; Gc.live_words=201410; Gc.live_blocks=63981;
> Gc.free_words=222291; Gc.free_blocks=2316; Gc.largest_free=34683;
> Gc.fragments=1258; Gc.compactions=0}
>
>-------------------
>To unsubscribe, mail caml-list-request@inria.fr.  Archives: http://caml.inria.fr

-------------------
To unsubscribe, mail caml-list-request@inria.fr.  Archives: http://caml.inria.fr


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2001-04-21  8:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-04-06  8:49 [Caml-list] Re: toplevel bogging down after a while Chris Hecker
2001-04-21  8:20 ` Chris Hecker

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).