- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks for your comments.
Yes we do have Java interface implementation offered in IPP 5.0 beta, they are introduced as sample. You can find IPP samples with Java interface for both Windows* and Linux* in "Beta Intel IPP Samples" product via Intel Premier Support. Please download and evaluate these java samples. Let us know how you think these new samples.
By the way, this posting contains all IPP 5.0beta sample descriptions:
http://softwareforums.intel.com/ids/board/message?board.id=IPP&message.id=2380
Thanks,
Ying
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
another question is I want to replace String class in Java to enhance the performace like ippstring in C# ( it gives me 100 times performance enhancement), but i C#, we can use
fixed( char* ps=str, pd=this.value )
{
sp.ippsCopy_16s( (short*)ps, (short*)pd, str.Length );
}
but we cannot use pointer in Java, so the question is how to call sp.ippsCopy_16s in Java?
big thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
actually i want to write a new class to replace java.lang.String. But we know in java string we use char[] to store data of string., like
public final class String implements java.io.Serializable, Comparable<String>,CharSequence {
/** The value is used for character storage. */
private final char value[];
/** The offset is the first index of the storage that is used. */
private final int offset;
/** The count is the number of characters in the String. */
private final int count;
...
...
}
when i want to call the function like sp.ippsCopy_16s or sp.ippsCopy_16sc, I didn't find any function support char[] parameter, actually
in JNI is :
public static native int ippsCopy_16s ( short pSrc[], short pDst[], int len)
so the question is how can I use IPP functions in Java for char type? ( Shall I use short type?)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page