It is currently April 24th, 2024, 1:01 am

ForceXtended Skin

A package of skins with a "theme" or by a single author
mallchin
Posts: 18
Joined: May 4th, 2012, 4:50 pm

Re: ForceXtended Skin

Post by mallchin »

StaticFX wrote:how do you have the meter "filled in" below the line...like in the memory section?
I have two meters, a line and a histogram. The histogram gives the "filled in" appearance.
User avatar
raiguard
Posts: 660
Joined: June 25th, 2015, 7:02 pm
Location: The Sky, USA

Re: ForceXtended Skin

Post by raiguard »

Great job so far! I can help you implement some of the features people have been requesting. Let me know if you want any help!
”We are pretty sure that r2922 resolves the regression in resolution caused by a reversion to a revision.” - jsmorley, 2017
User avatar
raiguard
Posts: 660
Joined: June 25th, 2015, 7:02 pm
Location: The Sky, USA

Re: ForceXtended Skin

Post by raiguard »

Okay, taking a look at your "Processors" skin, it's possible to automatically adjust the amount of cores and threads (those are different things) using only one skin. I'll throw together a sample and send you a pull request later (I'm in the middle of school right now, so it'll take a while).
”We are pretty sure that r2922 resolves the regression in resolution caused by a reversion to a revision.” - jsmorley, 2017
mallchin
Posts: 18
Joined: May 4th, 2012, 4:50 pm

Re: ForceXtended Skin

Post by mallchin »

Iamanai wrote:Okay, taking a look at your "Processors" skin, it's possible to automatically adjust the amount of cores and threads (those are different things) using only one skin. I'll throw together a sample and send you a pull request later (I'm in the middle of school right now, so it'll take a while).
Thanks, although mostly working now -- I'll be pushing a new version with lots of new features in the next day or so.

That said, curious what you're using to get the number of threads (am showing only threads in the new version).
mallchin
Posts: 18
Joined: May 4th, 2012, 4:50 pm

Re: ForceXtended Skin

Post by mallchin »

Iamanai wrote:Great job so far! I can help you implement some of the features people have been requesting. Let me know if you want any help!
Will do! Once the new version is pushed feel free to send me any pulls.
User avatar
raiguard
Posts: 660
Joined: June 25th, 2015, 7:02 pm
Location: The Sky, USA

Re: ForceXtended Skin

Post by raiguard »

I use the ActiveNet plugin to detect the physical vs. logical cores (cores vs. threads) and some other stuff too. Code below:

Code: Select all

[MeasureCPUPhysicalCores]
Measure=Plugin
Plugin=ActiveNet
Type=PhysicalCores
UpdateDivider=-1

[MeasureCPUPhysicalCPUs]
Measure=Plugin
Plugin=ActiveNet
Type=Processors
UpdateDivider=-1

[MeasureCPUThreadsPerCore]
Measure=Plugin
Plugin=ActiveNet
Type=ThreadsPerCore
IfCondition=MeasureCPUThreadsPerCore <> #threadsPerCore#
IfTrueAction=[!WriteKeyValue Variables threadsPerCore [MeasureCPUThreadsPerCore] "#varPath#"][!Refresh]
UpdateDivider=-1
”We are pretty sure that r2922 resolves the regression in resolution caused by a reversion to a revision.” - jsmorley, 2017
User avatar
fonpaolo
Moderator
Posts: 1387
Joined: April 11th, 2013, 8:08 pm
Location: Italy

Re: ForceXtended Skin

Post by fonpaolo »

mallchin wrote:That said, curious what you're using to get the number of threads (am showing only threads in the new version).
Use:

Code: Select all

%NUMBER_OF_PROCESSORS%
in a Meter or directly as a variable and it will give you the number of threads. ;-)
User avatar
StaticFX
Posts: 12
Joined: October 8th, 2015, 7:47 pm

Re: ForceXtended Skin

Post by StaticFX »

mallchin wrote:I have two meters, a line and a histogram. The histogram gives the "filled in" appearance.
ahhh one on top of the other! great idea!
mallchin
Posts: 18
Joined: May 4th, 2012, 4:50 pm

Re: ForceXtended Skin

Post by mallchin »

fonpaolo wrote:Use:

Code: Select all

%NUMBER_OF_PROCESSORS%
in a Meter or directly as a variable and it will give you the number of threads. ;-)
Just what I was after! :D
User avatar
raiguard
Posts: 660
Joined: June 25th, 2015, 7:02 pm
Location: The Sky, USA

Re: ForceXtended Skin

Post by raiguard »

Oh oops I gave you the wrong thing because I misunderstood.

Code: Select all

%NUMBER_OF_PROCESSORS%
is indeed what you would use. Oops!
”We are pretty sure that r2922 resolves the regression in resolution caused by a reversion to a revision.” - jsmorley, 2017