Skip to content
Snippets Groups Projects
  1. Feb 21, 2021
  2. Feb 19, 2021
  3. Feb 17, 2021
  4. Feb 16, 2021
  5. Feb 15, 2021
  6. Feb 13, 2021
  7. Feb 12, 2021
  8. Feb 11, 2021
    • Emmanuel Gil Peyrot's avatar
      Set thread names on Haiku · b44ec453
      Emmanuel Gil Peyrot authored and Link Mauve's avatar Link Mauve committed
      b44ec453
    • Henrik Gramner's avatar
      x86: Rewrite SGR AVX2 asm · fe2bb774
      Henrik Gramner authored
      The previous implementation did multiple passes in the horizontal
      and vertical directions, with the intermediate values being stored
      in buffers on the stack. This caused bad cache thrashing.
      
      By interleaving the all the different passes in combination with a
      ring buffer for storing only a few rows at a time the performance
      is improved by a significant amount.
      
      Also slightly speed up neighbor calculations by packing the a and b
      values into a single 32-bit unsigned integer which allows calculations
      on both values simultaneously.
      fe2bb774
    • Henrik Gramner's avatar
      Add minor SGR optimizations · c290c02e
      Henrik Gramner authored
      Split the 5x5, 3x3, and mix cases into separate functions.
      
      Shrink some tables.
      
      Move some scalar calculations out of the DSP function.
      
      Make Wiener and SGR share the same function prototype to
      eliminate a branch in lr_stripe().
      c290c02e
    • Henrik Gramner's avatar
      x86inc: Add stack probing on Windows · c36b191a
      Henrik Gramner authored
      Large stack allocations on Windows need to use stack probing in order
      to guarantee that all stack memory is committed before accessing it.
      This is done by ensuring that the guard page(s) at the end of the
      currently committed pages are touched prior to any pages beyond that.
      c36b191a
    • Emmanuel Gil Peyrot's avatar
      dav1dplay: Add -lm for llround() support · 58cb4cf0
      Emmanuel Gil Peyrot authored
      Neither --buildtype=plain nor --buildtype=debug set -ffast-math, so
      llround() is kept as a function call and isn’t optimised out into
      cvttsd2siq (on amd64), thus requiring the math lib to be linked.
      
      Note that even with -ffast-math, it isn’t guaranteed that a call to
      llround() will always be omitted (I have reproduced this on PowerPC), so
      this fix is correct even if we ever decide to enable -ffast-math in
      other build types.
      58cb4cf0
  9. Feb 10, 2021
    • Martin Storsjö's avatar
      arm64: itx16: Use usqadd to avoid separate clamping of negative values · 6f9f3391
      Martin Storsjö authored
      Before:                                Cortex A53     A72      A73
      inv_txfm_add_4x4_dct_dct_0_10bpc_neon:       40.7    23.0     24.0
      inv_txfm_add_4x4_dct_dct_1_10bpc_neon:      116.0    71.5     78.2
      inv_txfm_add_8x8_dct_dct_0_10bpc_neon:       85.7    50.7     53.8
      inv_txfm_add_8x8_dct_dct_1_10bpc_neon:      287.0   203.5    215.2
      inv_txfm_add_16x16_dct_dct_0_10bpc_neon:    255.7   129.1    140.4
      inv_txfm_add_16x16_dct_dct_1_10bpc_neon:   1401.4  1026.7   1039.2
      inv_txfm_add_16x16_dct_dct_2_10bpc_neon:   1913.2  1407.3   1479.6
      After:
      inv_txfm_add_4x4_dct_dct_0_10bpc_neon:       38.7    21.5     22.2
      inv_txfm_add_4x4_dct_dct_1_10bpc_neon:      116.0    71.3     77.2
      inv_txfm_add_8x8_dct_dct_0_10bpc_neon:       76.7    44.7     43.5
      inv_txfm_add_8x8_dct_dct_1_10bpc_neon:      278.0   203.0    203.9
      inv_txfm_add_16x16_dct_dct_0_10bpc_neon:    236.9   106.2    116.2
      inv_txfm_add_16x16_dct_dct_1_10bpc_neon:   1368.7   999.7   1008.4
      inv_txfm_add_16x16_dct_dct_2_10bpc_neon:   1880.5  1381.2   1459.4
      6f9f3391
  10. Feb 09, 2021
    • Martin Storsjö's avatar
      arm64: looprestoration: Rewrite the wiener functions · 2e73051c
      Martin Storsjö authored and Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf committed
      Make them operate in a more cache friendly manner, interleaving
      horizontal and vertical filtering (reducing the amount of stack
      used from 51 KB to 4 KB), similar to what was done for x86 in
      78d27b7d.
      
      This also adds separate 5tap versions of the filters and unrolls
      the vertical filter a bit more (which maybe could have been done
      without doing the rewrite).
      
      This does, however, increase the compiled code size by around
      3.5 KB.
      
      Before:                Cortex A53       A72       A73
      wiener_5tap_8bpc_neon:   136855.6   91446.2   87363.6
      wiener_7tap_8bpc_neon:   136861.6   91454.9   87374.5
      wiener_5tap_10bpc_neon:  167685.3  114720.3  116522.1
      wiener_5tap_12bpc_neon:  167677.5  114724.7  116511.9
      wiener_7tap_10bpc_neon:  167681.6  114738.5  116567.0
      wiener_7tap_12bpc_neon:  167673.8  114720.8  116515.4
      After:
      wiener_5tap_8bpc_neon:    87102.1   60460.6   66803.8
      wiener_7tap_8bpc_neon:   110831.7   78489.0   82015.9
      wiener_5tap_10bpc_neon:  109999.2   90259.0   89238.0
      wiener_5tap_12bpc_neon:  109978.3   90255.7   89220.7
      wiener_7tap_10bpc_neon:  137877.6  107578.5  103435.6
      wiener_7tap_12bpc_neon:  137868.8  107568.9  103390.4
      2e73051c
    • Kyle Siefring's avatar
      arm64: mc: Improve first tap for inorder cores · 4e869495
      Kyle Siefring authored and Martin Storsjö's avatar Martin Storsjö committed
      Change order of multiply accumulates to allow inorder cores to forward
      the results.
      4e869495
  11. Feb 08, 2021
    • Martin Storsjö's avatar
      arm32: mc: Optimize warp by doing horz filtering in 8 bit · 0477fcf1
      Martin Storsjö authored and Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf committed
      Additionally reschedule instructions for loading, to reduce stalls
      on in order cores.
      
      This applies the changes from a3b8157e
      on the arm32 version.
      
      Before:             Cortex A7      A8      A9     A53     A72     A73
      warp_8x8_8bpc_neon:    3659.3  1746.0  1931.9  2128.8  1173.7  1188.9
      warp_8x8t_8bpc_neon:   3650.8  1724.6  1919.8  2105.0  1147.7  1206.9
      warp_8x8_16bpc_neon:   4039.4  2111.9  2337.1  2462.5  1334.6  1396.5
      warp_8x8t_16bpc_neon:  3973.9  2137.1  2299.6  2413.2  1282.8  1369.6
      After:
      warp_8x8_8bpc_neon:    2920.8  1269.8  1410.3  1767.3   860.2  1004.8
      warp_8x8t_8bpc_neon:   2904.9  1283.9  1397.5  1743.7   863.6  1024.7
      warp_8x8_16bpc_neon:   3895.5  2060.7  2339.8  2376.6  1331.1  1394.0
      warp_8x8t_16bpc_neon:  3822.7  2026.7  2298.7  2325.4  1278.1  1360.8
      0477fcf1
    • Henrik Gramner's avatar
      build: Fix ninja warning message on Windows · 69268d3a
      Henrik Gramner authored and Henrik Gramner's avatar Henrik Gramner committed
      We currently run 'git describe --match' to obtain the current version,
      but meson doesn't properly quote/escape the pattern string on Windows.
      
      As a result, "fatal: Not a valid object name .ninja_log" is printed
      when compiling on Windows systems. Compilation still works, but the
      warning is annoying and misleading.
      
      Currently we don't actually need the pattern matching functionality
      (which is why things still work), so simply remove it as a workaround.
      69268d3a
    • Martin Storsjö's avatar
      xxhash: Add a cast to silence a warning when built with MSVC · 95884615
      Martin Storsjö authored
      This silences the following warning:
      tools/output/xxhash.c(127): warning C4244: '=': conversion from 'unsigned long' to 'unsigned char', possible loss of data
      95884615
    • Martin Storsjö's avatar
      lf_mask: Align an array that is accessed via aliasing structures · 0a577fd2
      Martin Storsjö authored
      This fixes bus errors due to missing alignment, when built with GCC 9
      for arm32 with -mfpu=neon.
      0a577fd2
    • Janne Grunau's avatar
      tools: add optional xxh3 based muxer · e6168525
      Janne Grunau authored and Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf committed
      The required 'xxhash.h' header can either be in system include directory
      or can be copied to 'tools/output'.
      
      The xxh3_128bits based muxer shows no significant slowdown compared to
      the null muxer. Decoding times Chimera-AV1-8bit-1920x1080-6736kbps.ivf
      with 4 frame and 4 tile threads on a core i7-8550U (disabled turbo boost):
      
      null:  72.5 s
      md5:   99.8 s
      xxh3:  73.8 s
      
      Decoding Chimera-AV1-10bit-1920x1080-6191kbps.ivf with 6 frame and 4 tile
      threads on a m1 mc mini:
      
      null:  27.8 s
      md5:  105.9 s
      xxh3:  28.3 s
      e6168525
    • Matthias Dressel's avatar
      cli: Fix md5 verification for short values · 061ac9ae
      Matthias Dressel authored
      Verification should not succeed if the given string is too short to be a
      real hash.
      
      Fixes videolan/dav1d#361
      061ac9ae
  12. Feb 06, 2021
Loading