From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Original-To: caml-list@sympa.inria.fr Delivered-To: caml-list@sympa.inria.fr Received: from mail3-relais-sop.national.inria.fr (mail3-relais-sop.national.inria.fr [192.134.164.104]) by sympa.inria.fr (Postfix) with ESMTPS id 52E6E7FDC8 for ; Mon, 11 Jan 2016 15:10:14 +0100 (CET) IronPort-PHdr: 9a23:VXTcjx/65OWY6P9uRHKM819IXTAuvvDOBiVQ1KB91+ocTK2v8tzYMVDF4r011RmSDduds6oMotGVmp6jcFRI2YyGvnEGfc4EfD4+ouJSoTYdBtWYA1bwNv/gYn9yNs1DUFh44yPzahANS47AblHf6ke/8SQVUk2mc1EleKKtQsb7tIee6aObw9XreQJGhT6wM/tZDS6dikHvjPQQmpZoMa0ryxHE8TNicuVSwn50dxrIx06vrpT4wJk2+C1Vv7cl9tVceaT8ZaUxC7JCXxo8NGVgzcv3tR7FXEO07XYZW2Af2k5TCAXA5RTzdpbrqSL/vaxgwDLfIcntQPY6Q2LxvO9QVBb0hXJfZHYC+2bNh5kogQ== Authentication-Results: mail3-smtp-sop.national.inria.fr; spf=None smtp.pra=scemama@irsamc.ups-tlse.fr; spf=None smtp.mailfrom=scemama@irsamc.ups-tlse.fr; spf=None smtp.helo=postmaster@smtp2.cict.fr Received-SPF: None (mail3-smtp-sop.national.inria.fr: no sender authenticity information available from domain of scemama@irsamc.ups-tlse.fr) identity=pra; client-ip=195.220.59.17; receiver=mail3-smtp-sop.national.inria.fr; envelope-from="scemama@irsamc.ups-tlse.fr"; x-sender="scemama@irsamc.ups-tlse.fr"; x-conformance=sidf_compatible Received-SPF: None (mail3-smtp-sop.national.inria.fr: no sender authenticity information available from domain of scemama@irsamc.ups-tlse.fr) identity=mailfrom; client-ip=195.220.59.17; receiver=mail3-smtp-sop.national.inria.fr; envelope-from="scemama@irsamc.ups-tlse.fr"; x-sender="scemama@irsamc.ups-tlse.fr"; x-conformance=sidf_compatible Received-SPF: None (mail3-smtp-sop.national.inria.fr: no sender authenticity information available from domain of postmaster@smtp2.cict.fr) identity=helo; client-ip=195.220.59.17; receiver=mail3-smtp-sop.national.inria.fr; envelope-from="scemama@irsamc.ups-tlse.fr"; x-sender="postmaster@smtp2.cict.fr"; x-conformance=sidf_compatible X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A0AnAQAGt5NWlBE73MNehAxtiFmiBJFpgWYihxE5EwEBAQEBAQEBEAEBAQEJCwkJIS5BDgGBXYIxVSABDQ8WCwILAwIBAgE3IQgCiCoECp8Dj2+QJwSQBXOCUIFJBYddjzaBD4Q0iBaJKIVVhXqIVyQCgggMUIFlcQGBJoM2gUsBAQE X-IPAS-Result: A0AnAQAGt5NWlBE73MNehAxtiFmiBJFpgWYihxE5EwEBAQEBAQEBEAEBAQEJCwkJIS5BDgGBXYIxVSABDQ8WCwILAwIBAgE3IQgCiCoECp8Dj2+QJwSQBXOCUIFJBYddjzaBD4Q0iBaJKIVVhXqIVyQCgggMUIFlcQGBJoM2gUsBAQE X-IronPort-AV: E=Sophos;i="5.20,553,1444687200"; d="scan'208,217";a="160039461" Received: from smtp2.cict.fr ([195.220.59.17]) by mail3-smtp-sop.national.inria.fr with ESMTP; 11 Jan 2016 15:10:13 +0100 Received: from smtp2.cict.fr (localhost.localdomain [127.0.0.1]) by smtp2.cict.fr (8.14.5/8.14.4) with ESMTP id u0BEADKD028208 for ; Mon, 11 Jan 2016 15:10:13 +0100 Received: from [130.120.229.139] (lpqlx139.ups-tlse.fr [130.120.229.139]) by smtp2.cict.fr (8.14.5/8.14.5) with ESMTP id u0BEADQf028200 for ; Mon, 11 Jan 2016 15:10:13 +0100 Message-ID: <5693B7C5.2030105@irsamc.ups-tlse.fr> Date: Mon, 11 Jan 2016 15:10:13 +0100 From: Anthony Scemama User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Icedove/31.7.0 MIME-Version: 1.0 To: caml-list@inria.fr Content-Type: multipart/alternative; boundary="------------040008040400020901090203" X-Virus-Scanned: clamav-milter 0.97.3 at smtp2.cict.fr X-Virus-Status: Clean X-Validation-by: scemama@irsamc.ups-tlse.fr Subject: [Caml-list] Opam on Blue-Gene This is a multi-part message in MIME format. --------------040008040400020901090203 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Hi, has anyone managed to install OCaml+OPAM on a IBM BlueGenemachine? - When I try to compile the OCaml compiler with gcc, I get a Makefile error related to a missing none.o file. - To install OPAM, I do the following: |wget https://raw.github.com/ocaml/opam/master/shell/opam_installer.sh -O - | sh -s /usr/local/bin/ but OPAM tells me it does not have a binary distribution for my architecture (ppc64) - I tried to compile the code into bytecode on an Intel machine and copy it to the BlueGene, but the ocamlrun ppc won't execute the bytecode generated for Intel. Is there an endianness incompatibility in the bytecodes? I don't know what else I can do to make my code run on a BlueGene machine (Mira at Argonne), and I am trying to convince people that HPC is not only limited to Fortran or C/C++ using MPI and OpenMP :-( Help !!! Anthony -- Anthony Scemama IRSAMC / Laboratoire de Chimie et Physique Quantiques UMR5626 CNRS/UPS Toulouse| --------------040008040400020901090203 Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: 7bit Hi,
has anyone managed to install OCaml+OPAM on a IBM BlueGene machine?



- When I try to compile the OCaml compiler with gcc, I get a Makefile error related to a missing none.o file.

- To install OPAM, I do the following:
wget https://raw.github.com/ocaml/opam/master/shell/opam_installer.sh -O - | sh -s /usr/local/bin/

but OPAM tells me it does not have a binary distribution for my architecture (ppc64)

- I tried to compile the code into bytecode on an Intel machine and copy it to the BlueGene, but the ocamlrun ppc won't
execute the bytecode generated for Intel. Is there an endianness incompatibility in the bytecodes?



I don't know what else I can do to make my code run on a BlueGene machine (Mira at Argonne), and I am trying to convince people
that HPC is not only limited to Fortran or C/C++ using MPI and OpenMP :-(

Help !!!


Anthony

-- 
Anthony Scemama
IRSAMC / Laboratoire de Chimie et Physique Quantiques
UMR5626 CNRS/UPS
Toulouse
--------------040008040400020901090203--