Browse thread
speeding up matrix multiplication (newbie question)
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
Date: | 2009-02-20 (22:43) |
From: | Markus Mottl <markus.mottl@g...> |
Subject: | Re: [Caml-list] speeding up matrix multiplication (newbie question) |
Unless you want to interface C-calls into BLAS/LAPACK directly without bounds checking, releasing the OCaml-lock, and other "fru-fru", it seems unlikely that you will get much of an advantage using those libraries given the small size of your matrices. E.g. Lacaml is optimized for larger matrices (probably > 10x10). I guess you should be fine rolling your own implementation for such small matrices. Regards, Markus -- Markus Mottl http://www.ocaml.info markus.mottl@gmail.com