- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I once download a free version of Intel® Parallel Studio XE Cluster Edition 2020, it showed very good computation ability when I used pardiso with my PC with 2*Intel(R) Xeon(R) CPU E5-2630 v4. The CPU utilization can reached 100%. However, it was expired now. I now used intel oneapi HPC on VS, however, I can only reach 50% cpu utilization when I used Pardiso for solver. I do not know the problem.
Link Copied
- 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
The 100% utilization is not the proper measure of performance. The wall clock time for the same run is the figure to use.
IIF your application is using MPI, your configuration, environment or command line options may have instructed MPI to use one of your CPU's.
Note MKL uses OpenMP internally for multi-threaded within MKL.
IIF your application is using OpenMP, you have similar configuration and environment setting issues...
Plus the environment variables (and there default values):
OMP_WAIT_POLICY=xxx
KMP_BLOCKTIME=nnn (ms)
For example, if your OpenMP program has significant amount of serial sections, a KMP_BLOCKTIME (either you or default) has a block time (SpinWait time), longer than the serial section(s), then all threads will be busy even though only one thread is performing work. In this case 100% utilization is being reported while only one thread out of 40 threads on your system is actually working on your program.
The OMP_WAIT_POLICY is a different way of modifying the block time. IMHO "block time" is a misnomer, wait time or spinwait time is a better term.
You have available to you VTune, which you can use to see what is happening "under the hood" so to speak. This can shed some light on what is happening.
Jim Dempsey

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