caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: Stefano Ballabeni <stefano.ballabeni@yahoo.fr>
To: caml-list@yquem.inria.fr
Subject: Interfacing C and OCAML using the bigarray library
Date: Tue, 17 Apr 2007 05:11:13 +0200 (CEST)	[thread overview]
Message-ID: <219784.75442.qm@web23312.mail.ird.yahoo.com> (raw)

Hi everybody,

First of all, sorry for my english, it's so bad, but
I'll try to be understandable.

I'm trying to send a dynamically allocated C matrix to
OCAML.

I've seen that the bigarray library seems to be what I
need.

The problem is that I can't pass a _dynamically_
allocated matrix to OCAML, the values don't arrive to
OCAML.

A quick example :
test.c
----
#include <caml/mlvalues.h>
#include <caml/bigarray.h>

value           make_c_matrix(void)
{
  long          dims[2];
  unsigned char **my_c_array;

  my_c_array = malloc(sizeof (unsigned char *) * 2);
  my_c_array[0] = malloc(sizeof (unsigned char) * 2);
  my_c_array[1] = malloc(sizeof (unsigned char) * 2);

  my_c_array[0][0] = 3;
  my_c_array[0][1] = 4;
  my_c_array[1][0] = 5;
  my_c_array[1][1] = 6;

  dims[0] = 2;
  dims[1] = 2;


  return (alloc_bigarray(BIGARRAY_UINT8 |
BIGARRAY_C_LAYOUT, 2, my_c_array, dims));
}

test.ml
--
external take_matrix  : unit -> (int,
Bigarray.int8_unsigned_elt, Bigarray.c_layout)
Bigarray.Array2.t = "make_c_matrix"

let _ =
  let m = take_matrix () in
    print_string "-- CAML --\n";
    print_int m.{0, 0};
    print_string " ";
    print_int m.{0, 1};
    print_newline ();
    print_int m.{1, 0};
    print_string " ";
    print_int m.{1, 1};
    print_newline ();

Then I compile :
gcc -W -Wall -ansi -pedantic -c test.c
ocamlc -custom bigarray.cma test.o test.ml

I run it :
./a.out

and it displays :
-- CAML --
208 208
6 8

As you can see these values are not exactly the one I
entered in the C code.

So, is that possible to use a dinamically allocated C
matrix in OCAML using bigarray ?
If it is, what do I do wrong ? I have been searching
for days to make this lib work fine...
If not, do you have a pretty solution ?

Thanks in advance.

-- 
Stefano Ballabeni
stefano.ballabeni@yahoo.fr


      
___________________________________________________________________________ 
Découvrez une nouvelle façon d'obtenir des réponses à toutes vos questions ! 
Profitez des connaissances, des opinions et des expériences des internautes sur Yahoo! Questions/Réponses 
http://fr.answers.yahoo.com


             reply	other threads:[~2007-04-17  3:11 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-04-17  3:11 Stefano Ballabeni [this message]
2007-04-17  5:12 ` [Caml-list] " Jacques Garrigue

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=219784.75442.qm@web23312.mail.ird.yahoo.com \
    --to=stefano.ballabeni@yahoo.fr \
    --cc=caml-list@yquem.inria.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).