- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I am using icc 11.1. Using the profiler, I can see the memset call is actually calling _intel_new_memset.
Is this the same as _intel_fast_memset? Which one performs better? If I need to switch to _intel_fast_memset, how should I do that?
Thanks.
Is this the same as _intel_fast_memset? Which one performs better? If I need to switch to _intel_fast_memset, how should I do that?
Thanks.
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
__intel_fast_memset is a general purpose function which calls different versions of __intel_new_memset depending upon architecture and CPU type. Assuming inlining it should be just as fast on your particular system as calling _intel_new_memset directly, and a lot more portable.

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