Coder Social home page Coder Social logo

native_performance_test's Introduction

Native Performance Test

This code is an attempt at comparing the performance of various Java methods for interacting with native code. The native code access methods tested are:

  • JNA
  • JNA Direct
  • JNI
  • Foreign Linker API (using JPassport)

The testing I did was on Win 10 with and i7-10850H.

The tests look at the overhead in passing arrays of various sizes as well as passing primitives.

The method called here passes 2 doubles to the native code and the native code sums them:

primitive_performance

JNI and The Foreign Linker are neck and neck for passing a primitive.

The next method I tried accepted an array of doubles and sums the first 5 elements. Only the first 5 elements are summed in order to a) make sure the method isn't a no-op, b) as much as possible to compare the transfer time to native only without native time affecting things.

plots

Interestingly, at very small array sizes JNI is the clear leader, but that lead is lost to the Foreign Linker API (JPassport) when the arrays get larger. I'm surprised how much Java 19 improved performance.

It's actually quite impressive here that JNA Direct competes so closely to custom JNI code.

native_performance_test's People

Contributors

boulder-on avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.