Thread overview
performance issues with SIMD function
Nov 03
Bogdan
Nov 03
Sergey
Nov 04
Bogdan
November 03

Hi everyone,

I was playing around with the intel-intrinsics library, trying to improve the speed of a simple area function. I could not see any performance improvements from the non-SIMD implementation. The SIMD version is a little bit slower even with LDC2 and --o3. Can anyone help me to understand what I am missing?



///
double areaMeters(const double[2][] coordinates) @safe pure {
  if (coordinates.length <= 2) {
    return 0;
  }

  ///
  double rad(const double a) pure @safe @nogc {
    return a * PI / 180;
  }

  double result = 0;
  enum radius = 6_378_137;

  foreach(i; 0 .. coordinates.length - 1) {
    auto p1 = coordinates[i];
    auto p2 = coordinates[i + 1];

    result += rad(p2[0] - p1[0]) * (2 + sin(rad(p1[1])) + sin(rad(p2[1])));
  }

  return result * radius * radius / 2;
}

double areaMetersSimd(const double[2][] coordinates) @safe pure {
  if (coordinates.length <= 2) {
    return 0;
  }

  __m128d pi_2 = cast(__m128d)[PI, PI];
  __m128d pattern180_2 = cast(__m128d)[180., 180.];

  double result = 0;
  enum radius = 6_378_137;

  foreach(i; 0 .. coordinates.length - 1) {
    auto p1 = _mm_div_pd(_mm_mul_pd(cast(__m128d) coordinates[i], pi_2), pattern180_2);
    auto p2 = _mm_div_pd(_mm_mul_pd(cast(__m128d) coordinates[i + 1], pi_2), pattern180_2);
    auto diff = _mm_sub_sd(p1, p2);

    result += diff[0] * (2 + sin(p1[1]) + sin(p2[1]));
  }

  return result * radius * radius / 2;
}


CPU info:

cat /proc/cpuinfo
processor       : 0
vendor_id       : AuthenticAMD
cpu family      : 23
model           : 113
model name      : AMD Ryzen 7 3800X 8-Core Processor
stepping        : 0
microcode       : 0x8701030
cpu MHz         : 3741.289
cache size      : 512 KB
physical id     : 0
siblings        : 16
core id         : 0
cpu cores       : 8
apicid          : 0
initial apicid  : 0
fpu             : yes
fpu_exception   : yes
cpuid level     : 16
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm constant_tsc rep_good nopl nonstop_tsc cpuid extd_apicid aperfmperf rapl pni pclmulqdq monitor ssse3 fma cx16 sse4_1 sse4_2 x2apic movbe popcnt aes xsave avx f16c rdrand lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt tce topoext perfctr_core perfctr_nb bpext perfctr_llc mwaitx cpb cat_l3 cdp_l3 hw_pstate ssbd mba ibpb stibp vmmcall fsgsbase bmi1 avx2 smep bmi2 cqm rdt_a rdseed adx smap clflushopt clwb sha_ni xsaveopt xsavec xgetbv1 cqm_llc cqm_occup_llc cqm_mbm_total cqm_mbm_local clzero irperf xsaveerptr rdpru wbnoinvd arat npt lbrv svm_lock nrip_save tsc_scale vmcb_clean flushbyasid decodeassists pausefilter pfthreshold avic v_vmsave_vmload vgif v_spec_ctrl umip rdpid overflow_recov succor smca sev sev_es
bugs            : sysret_ss_attrs spectre_v1 spectre_v2 spec_store_bypass retbleed smt_rsb srso
bogomips        : 7784.95
TLB size        : 3072 4K pages
clflush size    : 64
cache_alignment : 64
address sizes   : 43 bits physical, 48 bits virtual
power management: ts ttp tm hwpstate cpb eff_freq_ro [13] [14]

Thanks!
Bogdan

November 03

On Friday, 3 November 2023 at 15:11:31 UTC, Bogdan wrote:

>

Hi everyone,

I was playing around with the intel-intrinsics library, trying to improve the speed of a simple area function. I could not see any performance improvements from the non-SIMD implementation. The SIMD version is a little bit slower even with LDC2 and --o3. Can anyone help me to understand what I am missing?

[...]

Did you try using std.vector or __vector first?

November 03

On Friday, 3 November 2023 at 15:17:43 UTC, Imperatorn wrote:

>

On Friday, 3 November 2023 at 15:11:31 UTC, Bogdan wrote:

>

Hi everyone,

I was playing around with the intel-intrinsics library, trying to improve the speed of a simple area function. I could not see any performance improvements from the non-SIMD implementation. The SIMD version is a little bit slower even with LDC2 and --o3. Can anyone help me to understand what I am missing?

[...]

Did you try using std.vector or __vector first?

Typo, I mean those in core.simd or ldc.simd

November 03

On Friday, 3 November 2023 at 15:11:31 UTC, Bogdan wrote:

>

Hi everyone,

I was playing around with the intel-intrinsics library, trying to improve the speed of a simple area function. I could not see any performance improvements from the non-SIMD implementation. The SIMD version is a little bit slower even with LDC2 and --o3. Can anyone help me to understand what I am missing?

Thanks!
Bogdan

In your SIMD algorithm has not so many gain from using SIMD. The length of the loop is the same.
Also probably compiler applying some optimizations in regular versions, that doing almost the same.

November 04

On Friday, 3 November 2023 at 15:32:08 UTC, Sergey wrote:

>

On Friday, 3 November 2023 at 15:11:31 UTC, Bogdan wrote:

>

Hi everyone,

I was playing around with the intel-intrinsics library, trying to improve the speed of a simple area function. I could not see any performance improvements from the non-SIMD implementation. The SIMD version is a little bit slower even with LDC2 and --o3. Can anyone help me to understand what I am missing?

Thanks!
Bogdan

In your SIMD algorithm has not so many gain from using SIMD. The length of the loop is the same.
Also probably compiler applying some optimizations in regular versions, that doing almost the same.

I think it was from the way I was running the benchmark:

  ////
  auto begin = Clock.currTime;
  foreach (i; 0..100_000) {
    res1 = areaMeters(polygon);
  }
  writeln("No SIMD ", Clock.currTime - begin);

  ////
  begin = Clock.currTime;
  foreach (i; 0..100_000) {
    res2 = areaMetersSimd2(polygon);
  }
  writeln("SIMD    ", Clock.currTime - begin);

gives me:

  No SIMD 1 sec, 80 ms, 765 μs, and 1 hnsec
  SIMD    1 sec, 120 ms, 765 μs, and 1 hnsec
  ////
  auto begin = Clock.currTime;
  res1 = areaMeters(polygon);
  writeln("No SIMD ", Clock.currTime - begin);

  ////
  begin = Clock.currTime;
  res2 = areaMetersSimd2(polygon);
  writeln("SIMD    ", Clock.currTime - begin);

gives me:

  No SIMD 19 μs and 3 hnsecs
  SIMD    16 μs and 8 hnsecs
November 04

On Friday, 3 November 2023 at 15:11:31 UTC, Bogdan wrote:

>

Can anyone help me to understand what I am missing?

Your loop is likely dominated by sin() calls, And the rest of the loop isn't complicated enough to outperform the compiler.

What you could do is use the intrinsics to implement a _mm_sin_ps that makes 4x sines at once, then you'll see an improvement at scale.