Jump to content
2,189 posts in this topic

Recommended Posts

2 hours ago, vector sigma said:

Test it: HWMonitorSMC2.app_IPG 3.5.5 beta3.zip

..and good night.

 

Thank you for new beta Vector Sigma

 

I tested it and i  found that the GPU UTILIZATION value is high even though the GPU is not under stress. As seen in the first screen that i attach.

Furthermore, it appears that the processor power value corresponds to the DRAM of IPG (second screen attached): is correct?

screenshot_208.jpg

screenshot_207.jpg

Edited by Extreme™
Link to comment
Share on other sites

6 minutes ago, Extreme™ said:

 

Thank you for new beta Vector Sigma

 

I tested it and i  found that the GPU UTILIZATION value is high even though the GPU is not under stress. As seen in the first screen that i attach.

Furthermore, it appears that the processor power value corresponds to the DRAM of IPG (second screen attached): is correct?

 

 

 

I confirm a bug.

  • Like 1
Link to comment
Share on other sites

22 minutes ago, camillionario said:

Could you tell me how you get the readings from the fans? Any kext?

Thank you

 

I test some kext.
I cannot present him without the permission of the developer.
Have patience, you receive this kext when it will be ready.

  • Thanks 1
Link to comment
Share on other sites

@vector sigma 

Please add power keys from SMCProcessor.kext. 

It is important.

CPU Package Core (W)

CPU Package GPU (W) /Only here it is possible to see IGPU loading for only IQSV, in case of video playback./ 

CPU Package Total (W)

 

478210559_2018-10-102_38_09.png.154949bfbf84533d72af0c8a3476097f.png

 

 

Some parameters will need to be changed/deleted. But it can be solved later. (Cosmetics)

Edited by Andrey1970
Link to comment
Share on other sites

Hi vector sigma,

I successfully compiled HWMonitorSMC2 with Xcode 9.4.1

case "$xver" in
    10*)
        UseModernBuildSystem='-UseModernBuildSystem=0'
        buildv2=1
    ;;
    *)
        quiet=""
        buildv2=1
    ;;
esac

The binary released at sf.net.

Link to comment
Share on other sites

5 hours ago, Slice said:

Hi vector sigma,

I successfully compiled HWMonitorSMC2 with Xcode 9.4.1


case "$xver" in
    10*)
        UseModernBuildSystem='-UseModernBuildSystem=0'
        buildv2=1
    ;;
    *)
        quiet=""
        buildv2=1
    ;;
esac

The binary released at sf.net.

Was to promote the next step (i.e. the incoming swift 5 nearly ready that I wish to use soon). But for the owner of the project... now is:

case "$xver" in
    10*)
        UseModernBuildSystem='-UseModernBuildSystem=0'
        buildv2=1
    ;;
    9.4.1)
        buildv2=1
    ;;
    *)
        quiet=""
        buildv2=0
    ;;
esac

;) 

11 hours ago, Andrey1970 said:

@vector sigma 

Please add power keys from SMCProcessor.kext. 

It is important.

CPU Package Core (W)

CPU Package GPU (W) /Only here it is possible to see IGPU loading for only IQSV, in case of video playback./ 

CPU Package Total (W)

 

478210559_2018-10-102_38_09.png.154949bfbf84533d72af0c8a3476097f.png

 

 

Some parameters will need to be changed/deleted. But it can be solved later. (Cosmetics)

I'm in rush and didn't take a look at SMCProcessor yet, can you help me by enumerating here those keys and its type? And are those keys meant to stay in a separate group? Thanks

Edited by vector sigma
Link to comment
Share on other sites

 

About all other guys and missing detection for video cards, please left here a ioreg (but don't send me a PM...remove sensible data by booting with fake ones if you will). As already said until the week end I'll not be able to do a big job...

5 hours ago, Slice said:

Hi vector sigma,

I successfully compiled HWMonitorSMC2 with Xcode 9.4.1

The binary released at sf.net.

Anyway you really need the 10.14 sdk due to some new APIs (like the ability to change the appearance when the OS do that).

Edited by vector sigma
  • Like 1
Link to comment
Share on other sites

2 hours ago, vector sigma said:

 

I'm in rush and didn't take a look at SMCProcessor yet, can you help me by enumerating here those keys and its type? And are those keys meant to stay in a separate group? Thanks

 

Key PCPC https://github.com/acidanthera/VirtualSMC/blob/master/Docs/SMCKeys.txt#L752

Key PCPG https://github.com/acidanthera/VirtualSMC/blob/master/Docs/SMCKeys.txt#L757

Key PCPT https://github.com/acidanthera/VirtualSMC/blob/master/Docs/SMCKeys.txt#L660

 

This documentation shall help you. https://github.com/acidanthera/VirtualSMC/tree/master/Docs

Also you can ask @vit9696

I am not a developer, but I will help on how many it possibly.

Link to comment
Share on other sites

5 hours ago, Andrey1970 said:

Already there for a long time, just not shown:

// Power (Watts)
#define KEY_CPU_PACKAGE_CORE                    "PCPC" // SNB
#define KEY_CPU_PACKAGE_GFX                     "PCPG" // SNB
#define KEY_CPU_PACKAGE_TOTAL                   "PCPT" // SNB

Try this: HWMonitorSMC2.app_IPG_beta4.zip, you should able to see those keys under "CPU Power", but "-" for no sign of life or a number that ends with 'W' (Watt) when working.

2 hours ago, iCanaro said:

 

@vector sigma la password è il tuo nome

MacProZ97_1070.ioreg.zip

Got it, but for that I'll need more time.. saturday.

  • Like 3
Link to comment
Share on other sites

21 hours ago, Extreme™ said:

 

Thank you for new beta Vector Sigma

 

I tested it and i  found that the GPU UTILIZATION value is high even though the GPU is not under stress. As seen in the first screen that i attach.

Furthermore, it appears that the processor power value corresponds to the DRAM of IPG (second screen attached): is correct?

screenshot_208.jpg

screenshot_207.jpg

Sorry but DRAM make no sense to me, and the key name returned by the framenwork say other, it is a question for Intel.

The "GPU Utilization" comes from this function:

bool GetGPUUtilization(float *util);

has float precision (like 12,85% ??) and the true value is just what you see +100 (as I've subtract it): maybe isn't a percentage even if looks like. Saturday I'll take a better look

  • Like 1
Link to comment
Share on other sites

13 minutes ago, vector sigma said:

Already there for a long time, just not shown:


// Power (Watts)
#define KEY_CPU_PACKAGE_CORE                    "PCPC" // SNB
#define KEY_CPU_PACKAGE_GFX                     "PCPG" // SNB
#define KEY_CPU_PACKAGE_TOTAL                   "PCPT" // SNB

Try this: HWMonitorSMC2.app_IPG_beta4.zip, you should able to see those keys under "CPU Power", but "-" for no sign of life or a number that ends with 'W' (Watt) when working.

Got it, but for that I'll need more time.. saturday.

hack 4 ora con l'ultimo beta 4 di HWMonitorSMC viene visualizzata la nvidia 970M, ottimo! con le precedenti versioni questo non avveniva

 

hack 4 now with the last beta 4 of HWMonitorSMC the nvidia 970M is displayed, excellent! with previous versions this did not happen

Schermata 2018-10-10 alle 22.04.34.png

Link to comment
Share on other sites

26 minutes ago, iCanaro said:

hack 4 ora con l'ultimo beta 4 di HWMonitorSMC viene visualizzata la nvidia 970M, ottimo! con le precedenti versioni questo non avveniva

 


hack 4 now with the last beta 4 of HWMonitorSMC the nvidia 970M is displayed, excellent! with previous versions this did not happen

Schermata 2018-10-10 alle 22.04.34.png

Oh, only now I see that 'CPU Power' for you it is working, less the CPU Package Total... (keys Andrey1970 is looking for :wink_anim:)

and your GFX just it consumes like the oven in my house:blink:

Edited by vector sigma
typo
  • Like 1
Link to comment
Share on other sites

@vector sigma mi serve molta energia per alimentare genesys e dare via al giorno del giudizio :D battute a parte, forse è presente qualche errore con le virgole

 

I need a lot of energy to feed genesys and give away the day of judgment :D beats apart, maybe there are some errors with the commas

  • Haha 1
Link to comment
Share on other sites

×
×
  • Create New...