Skip to main content

Java interface for GEMSEO.

Project description

Contains two Java-GEMSEO interfaces:

Installation

Set JAVA_HOME: path to the root installation directory of the Java JDK.

Install with:

pip install .

At runtime, you shall configure:

  • On linux, LD_LIBRARY_PATH: add the path to the JEP python package,

  • On MacOS, DYLD_LIBRARY_PATH: add the path to the JEP python package,

  • On Windows, PATH: add the path to the JEP python package,

  • CLASSPATH: add the jep package provided when installing jep in the Python distribution to the java classpassth,

See the JEP (https://github.com/ninia/jep/wiki/Getting-Started) documentations for further information.

Java MDODiscipline

The Java abstract MDODiscipline is defined in the package com.irt.saintexupery.discipline.

Examples for the Sellar problem: com.irt.saintexupery.problems.sellar

The analytical derivatives (gemseo.discipline.MDODiscipline._compute_jacobian) are not supported yet.

JEP specific issues

For the JEP interface, you shall wrap the MDODiscipline wrapper using the JepMDODisciplineAdapter:

import com.irt.saintexupery.discipline.JepMDODisciplineAdapter;
import com.irt.saintexupery.problems.sellar.Sellar1;
MDODiscipline sellar1 = new JepMDODisciplineAdapter(new Sellar1());

Examples

Please look at examples/java_examples and examples/python_examples.

Frequent issues

“Exception in thread “main” java.lang.UnsatisfiedLinkError: no jep in java.library.path:” Add Jep to the classpath.

If Jep is still undetected, please check that the compiled “jep.dll” is well included as a native library.

Some ideas on Java-Python bridge technologies

Many libraries provide Java-Python interprocess communications and serialization. However many of them have limitations such as Jython that does not support all the compiled extensions of Python because it is a re-implementation of the Python interpreter in Java. Others use sockets such as py4j and this can deal with performance and security issues.

Both JNIUS and JEP are based on the C APIs of CPython and Java JNI (Java Native Interface). This avoids memory copies, so precision and performance losses, which is key for numerical computing.

JNIUS allows to call Java code from python, JEP allows to call Python from Java, and re-enter in the Java code. However both technologies cannot be mixed, JEP cannot call JNIUS code.

This is why the two solutions are proposed here.

Authors

  • François Gallard

  • Pascal Le Métayer

  • Antoine Dechaume

License

LGPL v3.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gemseo-java-1.0.0.post0.tar.gz (44.0 kB view hashes)

Uploaded Source

Built Distribution

gemseo_java-1.0.0.post0-py3-none-any.whl (9.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page