Recent Posts

Pages: 1 ... 3 4 [5] 6 7 ... 10
41
Firmware / Re: Messing with WOF Tables
« Last post by bobpaul on March 17, 2025, 07:51:37 pm »
>That link doesn't seem to work, do you happen to still know how to navigate to it or know the name of the paper.

Sorry, I don't.  As I recall, it was an educational presentation/paper on how processor power is modeled.  It is pretty well known material, maybe you can find other references.

hmm, ok. I thought it might be more specific to these processors.

It's been a long time, but I believe VRATIO just means the number of ON cores (a.k.a. active) relative to the maximum available.  As the # of active cores goes down, the power from those cores is applied to the remaining cores, allowing them to boost to higher frequencies.   Depending on the system & power limit, the proc could pretty quickly apply so much power credit from offline cores that it flat-lines at the maximum possible frequency, i.e. it becomes technology limited not power limited.  It sounds like, for that table, the processor is only power-limited when >= 12 cores ON.    Technically VRATIO is "voltage ratio" intended to handle quads using the internal voltage regulator at some % below the input voltage, but it ended up not getting supported and devolved to tracking # of cores.   A core in a stopped state with the power headers off has voltage of 0v hance VRATIO=0 for that core, and you add up the # of ON vs OFF cores to get he VRATIO.

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 believe Linux ever implemented support for different quad frequencies so they all just run at the same frequency?   If true, WOF only uses FRATIO=1.0 indices.

Certainly in Linux I see different frequencies on a per-core basis, but I understood that to be simply what the kernel was requesting rather than what it's actually running at. 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. Linux knows that 4 threads are the same core, so those always show the same frequency, but I understood Linux didn't actually know about the quads and rather I thought it was the PNOR that was really in control of the quad frequencies. But I don't know of any way of checking what frequency a core (or quad) is actually running at.

All of the tables have FRATIO_STEP of 0.1, FRATIO_START of 1, and FRATIO of 0.6, 0.7, 0.8, 0.9, or 1.0. But... yeah, holding vratio constant and looking at fratio, it does not look like the fratio value has an impact, at least for this csv:



For reference, CORE_CEFF is the ratio of the workload switching power relative to TDP, where TDP=1.0.   So 0.5 means the workload has half the switching power of TDP.     If the workload is using less power, the WOF table should attempt to raise frequency, up to the maximum allowed, where it flatlines.   Similarly, if there are fewer cores active, the frequency will go up, and if both are true, the frequency will go up more.   So that explains the shape of that plot.

OK, I don't understand the name, but that makes more sense than my assumption that it was a physical property related to the switching capacitance.
42
General Discussion / Re: Is Raptor Computing Systems still open for business?
« Last post by atomicdog on March 17, 2025, 06:58:13 pm »
If the PNOR IC is dead you can buy one from a site like mouser or digi-key [PNOR] [BMC].
43
General Discussion / Re: Is Raptor Computing Systems still open for business?
« Last post by markr87 on March 17, 2025, 05:37:58 pm »
My first attempt to contact RCS was December 1st of 2024.  They finally responded on the evening of February 28th asking to verify my shipping address.  I responded the following day.  I have heard nothing since.  I have been longing for the next iteration of Power goodness from this company, but if this is how they treat their paying customers I think I am going to pass.
44
Applications and Porting / Re: [DEV] Using Java's Vector API on PPC64LE
« Last post by tle on March 17, 2025, 06:47:27 am »
Thanks  :)

If you have any suggestions for future Java on PPC64LE videos please feel free to share - my youtube feed feels devoid of content at times :(

I think getting GraalVM to support PPC64LE would be endless source of content.
45
Applications and Porting / Re: [DEV] Using Java's Vector API on PPC64LE
« Last post by ClassicHasClass on March 16, 2025, 03:01:21 pm »
Very nicely done.
46
Applications and Porting / Re: [DEV] Using Java's Vector API on PPC64LE
« Last post by icbts on March 16, 2025, 06:55:36 am »
Thanks  :)

If you have any suggestions for future Java on PPC64LE videos please feel free to share - my youtube feed feels devoid of content at times :(
47
Compiler explorer is a cool tool, not sure if it has the features you're looking for though.
48
Haven't heard of this yet but maybe some stuff has leaked from the NDA partners.
49
This is going to sound like a flippant response and it really isn't, but pretty much any debugger would do (I use gdb but lldb should handle it also). You could throw an __asm__("trap\n") in your code and you'll drop into the debugger at that point, from which you can single step and look at the registers as you go along.
50
Applications and Porting / Re: [DEV] Using Java's Vector API on PPC64LE
« Last post by tle on March 16, 2025, 12:08:09 am »
Awesome work! I have not touched Java Vector API at work but your work peak my interests.
Pages: 1 ... 3 4 [5] 6 7 ... 10