Re: [math] working on increasing performance for Math3

2021-05-07 Thread Benjamin Marwell
Instead of using byte buddy, why not just maven multi release jars? *1 The Java9+ impl will go to META-INF/java9 or so. We did that in the maven-jlink-plugin for example. *2 Will be much faster and work on Java 16+. Much easier to rest. Drawback: bad IDE support 1: https://maven.apache.org/plugin

Re: [math] working on increasing performance for Math3

2021-05-07 Thread Gilles Sadowski
Hello. Le ven. 7 mai 2021 à 10:52, Erik Svensson a écrit : > > Howdy all! > > > > I’m looking to do some work on FastMath Thanks for your interest. > to increase performance by using java.lang.Math where it is applicable (ie > where there is an @HotspotIntrinsicCandidate annotation on the meth

[math] working on increasing performance for Math3

2021-05-07 Thread Erik Svensson
Howdy all! I’m looking to do some work on FastMath to increase performance by using java.lang.Math where it is applicable (ie where there is an @HotspotIntrinsicCandidate annotation on the method). Since HIC was introduced in java 9 and the code needs to work on pre-java 9 and I don’t want to c