• 8 Posts
  • 48 Comments
Joined 1 year ago
cake
Cake day: June 14th, 2023

help-circle




  • Navigate to a problematic movie or episode -> 3 dots -> Get info -> right column -> Color space

    Usually SDR is bt709 and HDR is bt2020. In older codecs (h264) 10 or 12 bit color depth can also cause issues.

    I’m not sure how tone mapping works on plex since I don’t have a pass but with Jellyfin you need to setup OpenCL which is run on the GPU so your guess that a hardware change can break it is plausible.








  • I think calling it a “cache” is not precise. The primary function of the DRAM is to hold the dictionary for translating logical addresses (e.g. sectors) from the OS to the physical addresses (which NAND chip, which bank etc.). This indirection is needed for the controller to do wear leveling without corrupting the filesystem.

    On a SATA SSD without DRAM each read IO could mean 2 actual reads: first the dictionary to find the data and than the actual data being read. As you said HBM helps by eliminating this extra read.

    The read and write caching is just a use of the remaining DRAM capacity. Since modern Operating Systems use the general RAM for the same function it is usually just a small increase to the throughput.




  • If you are looking to reduce the build’s cost consider a cheaper motherboard or a used GPU. The Asrock B650M-HDV/M.2 is the lowest you should go if it has all the connectors you need. As for buying used video card it’s always a bit of risk, but as the most expensive component you could save the most on that. Since all AM5 CPUs have an integrated GPU you could build without the dedicated GPU first.








  • Thanks for the links! I updated my config from z3fold to zsmalloc and adjusted the vm.page-cluster to test these out.

    Reading a bit more, I think when using large max_pool_percent (>30) with Zswap the two solutions are more similar than not. A crucial difference is what use-case is more acceptable since Zswap can cause unresponsiveness (and potential lockup) under high memory pressure. While Zram could result in an OOM crash in a similar worst-case scenario.