Jump to content

Welcome to ExtremeHW

Welcome to ExtremeHW, register to take part in our community, don't worry this is a simple FREE process that requires minimal information for you to signup.

 

Registered users can: 

  • Start new topics and reply to others.
  • Show off your PC using our Rig Creator feature.
  • Subscribe to topics and forums to get updates.
  • Get your own profile page to customize.
  • Send personal messages to other members.
  • Take advantage of site exclusive features.
  • Upgrade to Premium to unlock additional sites features.

tictoc

Members
  • Posts

    633
  • Joined

  • Last visited

  • Days Won

    33
  • Feedback

    0%

Everything posted by tictoc

  1. Not my last purchase, but one I purchased quite a while ago, that showed up on my front porch today. First order of business will be taking care of those nasty Windows keys Unicomp Mini M
  2. I've been out since the beginning of the month (BOINC Pentathlon), but I'll have some gear back up an folding later this week.
  3. Everything is up and running, and it will be getting a two week long stress test with the CPU and GPUs running 24/7, all out, for the BOINC Pentathlon. Setting up the whole software stack for the server will have to wait, so for now it's just running a minimal headless Arch setup for crunching.
  4. I think one of the bigger problems is that a large percentage of "media" companies are owned or run by the companies that are actually delivering the media. This is especially a problem when there are large swathes of the US outside of major cities that only have one or maybe two options for internet/TV service. Companies like Comcast, AT&T, Verizon, and Charter are able to leverage their infrastructure to prop up their own media companies. This requires an obscene amount of oversight, since it would be easy for the companies that deliver the media to push the scales to favor their own in house media companies.
  5. If you're curious, you can grab a copy and give it a go. https://archive.org/search.php?query=creator%3A"PeoplePC"
  6. Nice work last month @axipher I will not have my GPUs running 24/7 between now and the 19th. The BOINC Pentathlon has begun, and even though my team has gotten much smaller, I will be giving it all I've got. There will still be some folding time when my GPUs are not active. I'll be back to full time shortly after the 19th.
  7. tictoc

    ThreadRipper Home Server

    Pics from my Threadripper Home Server Build Log
  8. PowerShell is crazy in that it will display the path "properly" on Linux, but you can do whatever you want from the command line. The aggressive path normalization can break all sorts of things in a mixed Unix/Windows environment. From the command line these are all the same and the shell doesn't care: PS /> gci -Path home/tictoc/temp/testing/powershell -i *`(1`)* -r | ri PS /> gci -Path home\tictoc\temp\testing\powershell -i *`(1`)* -r | ri PS /> gci -Path home\tictoc/temp\testing/powershell -i *`(1`)* -r | ri
  9. I imagine most of that performance lead evaporates against a 5995WX. IPC improvement of Zen 2 to Zen 3 is somewhere around 19% plus the higher stock clocks on a 5995WX. The real question is how Sapphire Rapids Xeons will compare to current Milan-X CPUs and the Zen 4 Genoa chips. Depending on the workload, a 7773X is a pretty nice improvement over a 7763 (especially for a mid-process refresh), to say nothing of the upcoming Genoa chips and it's rumored monster L2 cache and 20% performance improvement.
  10. Late to the show, but this is the kind of task that can be quickly accomplished from the CLI. More than likely this is what those GUI apps are using under the hood. Since you're on windows we can use PowerShell with a few cmdlets. *Note* I am running this from PowerShell on Linux, but everything should be the same on Windows. Here is a test scenario I created to accomplish this from the CLI. List directories, sub-directories, and files in the current path: List all the files with "(1)" somewhere in the middle of the file name. PS /home/tictoc/temp/testing/powershell> Get-ChildItem -Include *`(1`)* -Recurse Directory: /home/tictoc/temp/testing/powershell/music UnixMode User Group LastWriteTime Size Name -------- ---- ----- ------------- ---- ---- -rw-r--r-- tictoc tictoc 4/28/2022 17:37 0 test (1).mp3 -rw-r--r-- tictoc tictoc 4/28/2022 17:37 0 test1 (1).mp3 -rw-r--r-- tictoc tictoc 4/28/2022 17:39 0 test2 (1).mp3 -rw-r--r-- tictoc tictoc 4/28/2022 17:39 0 test3 (1).mp3 -rw-r--r-- tictoc tictoc 4/28/2022 17:39 0 test4 (1).mp3 -rw-r--r-- tictoc tictoc 4/28/2022 17:39 0 test5 (1).mp3 Directory: /home/tictoc/temp/testing/powershell/music2 UnixMode User Group LastWriteTime Size Name -------- ---- ----- ------------- ---- ---- -rw-r--r-- tictoc tictoc 4/28/2022 19:02 0 test (1).mp3 -rw-r--r-- tictoc tictoc 4/28/2022 19:02 0 test1 (1).mp3 -rw-r--r-- tictoc tictoc 4/28/2022 19:02 0 test2 (1).mp3 -rw-r--r-- tictoc tictoc 4/28/2022 19:02 0 test3 (1).mp3 -rw-r--r-- tictoc tictoc 4/28/2022 19:02 0 test4 (1).mp3 -rw-r--r-- tictoc tictoc 4/28/2022 19:02 0 test5 (1).mp3 Find the files and delete them: PS /home/tictoc/temp/testing/powershell> Get-ChildItem -Include *`(1`)* -Recurse | RemoveItem or the short and sweet one-liner with aliases: PS /home/tictoc/temp/testing/powershell> gci -i *`(1`)* -r | ri Final result: PS /home/tictoc/temp/testing/powershell> Get-ChildItem -Recurse Directory: /home/tictoc/temp/testing/powershell UnixMode User Group LastWriteTime Size Name -------- ---- ----- ------------- ---- ---- drwxr-xr-x tictoc tictoc 4/28/2022 19:14 4096 music drwxr-xr-x tictoc tictoc 4/28/2022 19:14 4096 music2 Directory: /home/tictoc/temp/testing/powershell/music UnixMode User Group LastWriteTime Size Name -------- ---- ----- ------------- ---- ---- -rw-r--r-- tictoc tictoc 4/28/2022 17:33 0 test.mp3 -rw-r--r-- tictoc tictoc 4/28/2022 17:36 0 test1.mp3 -rw-r--r-- tictoc tictoc 4/28/2022 17:38 0 test2.mp3 -rw-r--r-- tictoc tictoc 4/28/2022 17:38 0 test3.mp3 -rw-r--r-- tictoc tictoc 4/28/2022 17:38 0 test4.mp3 -rw-r--r-- tictoc tictoc 4/28/2022 17:38 0 test5.mp3 Directory: /home/tictoc/temp/testing/powershell/music2 UnixMode User Group LastWriteTime Size Name -------- ---- ----- ------------- ---- ---- -rw-r--r-- tictoc tictoc 4/28/2022 19:02 0 test.mp3 -rw-r--r-- tictoc tictoc 4/28/2022 19:02 0 test1.mp3 -rw-r--r-- tictoc tictoc 4/28/2022 19:02 0 test2.mp3 -rw-r--r-- tictoc tictoc 4/28/2022 19:02 0 test3.mp3 -rw-r--r-- tictoc tictoc 4/28/2022 19:02 0 test4.mp3 -rw-r--r-- tictoc tictoc 4/28/2022 19:02 0 test5.mp3 Random aside, running PowerShell on Linux always feels like some whacky voodoo.
  11. The maximum number of threads is 32 threads per slot. To get around this maximum, you just need to use miultiple CPU slots. I'll quote myself from the other thread:
  12. I don't belive any dual socket boards ever hit the consumer market. Most of the high density Phi clusters were/are running on blades, so 4 boards/processors per 2U rack space.
  13. F@H will maximize CPU usage, but many of the simulations are highly parallelizable, so those calculations are more suited to GPUs. Once upon a time there were some very large tasks that were tailored to many core CPUs, but most of that work has been ported over to OpenMM to run on GPUs. That being said, there are a number of projects that are CPU work only, and they are doing very interesting work. Here is a list of the currently active projects: https://apps.foldingathome.org/psummary The links in the project column will take you to a description of the project. The OPENMM_22 core is GPU work, and GRO_A8 and GRO_A7 are CPU only. The CPU core has been optimized over the last 4-5 years, and now takes advantage of AVX instructions so it will put the CPU to work.
  14. The board you linked (X11DAi-N) is socket P0 for Xeon Scalable-SP 1st and 2nd gen CPUs. x11dai-n_quickRef.pdf This is the only ATX form factor Supermicro board that I am aware of that supports Knight Landing. https://www.supermicro.com/products/motherboard/Xeon_Phi/K1SPE.cfm There might be others, but I've never seen a working one in the wild other than the boards from the Supermicro and ASRock Rack developer workstations. I think Intel originally planned on Knight's Landing/Mill being compatible with all 3647 boards, but scrapped that plan when they EOL'd the Xeon Phi. I am pretty sure (but not positive) that you need a Xeon Phi specific board.
  15. If you really want to put it through it's paces and fully utilize the CPU, I would add additionl CPU slots. F@H works with threads rather than cores, so if you wanted to max out the system I would probably use three CPU folding slots, two slots at 20 and one at 26 (assuming you have a pair of 18core 36 thread CPUs in that machine). That will leave three full cores free, two to feed the GPUs and one for additional system overhead. The lastest F@H CPU core uses AVX, so expect a very heavy system load.
  16. New front intake fan installed, and it moves a bunch more air than the Noctua. Only two SATA SSDs left to mount, but I will need to make one more extension for the SATA power for those drives.
  17. That is correct. Two single rank dimms per channel is effectively equal to one dual rank dimm per channel. With dual ranked dimms you would effectively be running quad rank if you populate all 8 slots, but generally speaking depending on the workload you will see a bump in performance. I never really tuned my 2P v3 system, because I moved over to Threadripper shortly after acquiring it. The best performance on my Xeon v2 system, was using dual ranked dimms, but only installing 4 dimms per socket. My ASRock Rack board allowed me to bump the memory speed over the default for my sticks, so I was able to run 1333MHz sticks at 1866MHz. The board wasn't stable at 1866MHz with all 16 slots populated. Running in quad channel with 4 dimms per socket at the higher speed was the most performant setup, and I only moved away from that when I started to need more than 64GB of memory.
×
×
  • Create New...

Important Information

This Website may place and access certain Cookies on your computer. ExtremeHW uses Cookies to improve your experience of using the Website and to improve our range of products and services. ExtremeHW has carefully chosen these Cookies and has taken steps to ensure that your privacy is protected and respected at all times. All Cookies used by this Website are used in accordance with current UK and EU Cookie Law. For more information please see our Privacy Policy