Recent Posts

Pages: 1 ... 5 6 [7] 8 9 10
61
Applications and Porting / Re: Medal of Honor: Allied Assault War Chest (OpenMoHAA)
« Last post by tle on March 23, 2025, 03:28:33 am »
Great thanks for buying me the game on GOG

Here is the video of the game running:

https://youtu.be/4rqId3r36Hg
https://youtu.be/PO-tbW1O1Qg
62
Applications and Porting / Re: Medal of Honor: Allied Assault War Chest (OpenMoHAA)
« Last post by gbudny on March 22, 2025, 01:53:48 pm »
I think you should download this file again from GOG. and check a few things when you do it like a full path to the .exe file, and the name of the file:

https://www.gog.com/forum/general/unable_to_use_innoextract_on_setup_files_for_gothic_or_gothic_2
63
Firmware / Re: Messing with WOF Tables
« Last post by ejfluhr on March 21, 2025, 05:24:04 pm »
Quote
Ah-ha. So that's why VRATIO_INDEX is always 0-23 and VRATIO_STEP is always exactly 1/24 to 3 figures. VRATIO_STEP is always 0.0409 to account for rounding in VRATIO_STEP to ensure that 23*VRATIO_STEP + VRATIO_START == 1. So really, VRATIO_INDEX is the easier to follow number since it's just the number of active cores. And for a 16 core CPU, one should be able to ignore any VRATIO_INDEX > 15, as 0-15 cover 1-16 active cores, right?

I don't know for sure, but I don't think it works that way.  Rather the index is set up to handle 24 cores, but if the particular processor has < 24 cores, the denominator of that ratio becomes the number of valid cores.  So a 16-core part would be 16/16=1.0, but if 1 core was stopped then the ratio would be 15/16=0.9375 which would then get rounded up the nearest VRATIO point so 23/24.  If 14 cores were active, the ratio 14/16=0.875 would math out to exactly the same as 21/24=0.875 so no rounding needed.

Quote
I had thought it was the case where if 2 active cores in a quad had requested frequencies of 2200 and 1800 then the quad (and thus both cores) would run at 2200MHz.

It is true that all cores in the same quad have to run at the same frequency, and I believe you are correct that the highest-requested frequency wins.  Different quads have the capability to run at different frequencies if implemented by that Linux so, if it's reporting different frequencies aligned with different quads, that could be real.

What are you using to monitor frequencies?   Something like watch -n2 "cat /proc/cpuinfo | grep MHz" or turbostat?
The Sforza datasheet indicates 02CY231 to have a core base frequency of 2.50GHz and max boost of 3.8GHz with Tj Maximum of 85C.  So the cores should not go below 2.50GHz unless some power-saving mode is kicking in, e.g. OS governor settings (e.g. detecting idle and lowering frequency for energy savings). 

I like to use this Mersenne-prime code to push the core power and processor temperatures pretty hard.  I'm pretty sure I compiled & ran on the Blackbird system here, but I cannot seem to log into that right now.   Maybe you can give it a go and see what happens?   I think if you run just 1 or a few threads, the power stress is low but hopefully enough to kick the governor into performance state and it should run close to 3.8GHz.   Then run max-threads and it should drive frequency down toward 2.5GHz, maybe get you closer to that 160W TDP spec?

#include <stdio.h>
#include <stdlib.h>
#include <gmp.h>
int main(int argc, char *argv[]) {
   char *endptr;
   unsigned long int p = strtoul(argv[1],&endptr,10);
   mpz_t M, powerof2, one, two;
   mpz_init(M); mpz_init(powerof2);
   mpz_init_set_str(one,"1",10);
   mpz_init_set_str(two,"2",10);
   mpz_pow_ui(powerof2,two,p);
   mpz_sub(M,powerof2,one);
   gmp_printf("%Zd",M);
   return 0;
}

E.g. I take my Intel lapdown down by running 8 copies of
num=82589933; time ./mersenne $num > M48.1 &
64
Applications and Porting / Re: [DEV] Using Java's Vector API on PPC64LE
« Last post by icbts on March 21, 2025, 06:40:35 am »
The core team doesn't seem to be interested in having it supported:
https://github.com/oracle/graal/issues/5238

No idea how large a project making a fork would be; assumption is that its a very large porting effort.
65
General Discussion / Re: Is Raptor Computing Systems still open for business?
« Last post by markr87 on March 20, 2025, 01:47:18 pm »
Sadly it's the BMC chip that I need.
66
General Discussion / Re: Samsung PRO 980 1TB NVMe is working flawlessly
« Last post by pocock on March 20, 2025, 12:38:07 pm »
I'm using Fedora right now and my impression is they just don't do testing in general,

Fedora users and even the Fedora Developers are the testers.  Unpaid testers for Red Hat.

67
GPU Compute / Accelerators / Re: Intel Arc A770 - failed experiment
« Last post by Hasturtium on March 20, 2025, 10:48:25 am »
It's been 2 years and ... unfortunately the driver still does not support non-x86.

i915's never getting rearchitected for non-x86, but aarch64 reportedly runs Arc with a few caveats using Intel's xe driver. There's nothing it offers that my W6600 doesn't do well enough for my needs at this point, but I'd like to think it'll work since Power9/Raptor's PCIe implementation's apparently less warty.
68
General Discussion / Re: Samsung PRO 980 1TB NVMe is working flawlessly
« Last post by lepidotos on March 20, 2025, 08:20:23 am »
Looking at the history of kernel performance changes in Fedora 37, I get the impression that no one does performance testing before releasing a kernel. The variability is high. It's a shame that Fedora developers don't see this.

I'm using Fedora right now and my impression is they just don't do testing in general, like for example shipping GIMP 3 with no way to go back without shipping one of its dependecies (babl 0.1.112, which looking at the tracker page still isn't released for Fedora).
69
Operating Systems and Porting / Re: [NEWS] Fedora 42 Beta
« Last post by lepidotos on March 20, 2025, 08:15:23 am »
Honestly, for daily use, I don't really have a problem with Wayland. I used to have a lot more of them but it seems like there's been a lot of work done to make it a lot more seamless, but I'm also just a desktop user and any server stuff I do probably won't have a GUI running. I just wish there was something as good as TDE for it, Plasma is fine, just not as full featured and robust ime.
70
Operating Systems and Porting / Re: [NEWS] Fedora 42 Beta
« Last post by ClassicHasClass on March 19, 2025, 09:08:19 pm »
Wayland is fine if you have a GPU. If you don't, it runs everything through llvmpipe. On my 4-core Blackbird with AST graphics it worked fine but the fans never quit running (but when I switched to X11 they throttled back down again).
Pages: 1 ... 5 6 [7] 8 9 10