Displaying 2 results from an estimated 2 matches for "pwmpct".
Did you mean:
pmpict
2018 Feb 07
1
Addressing the problem of noisy GPUs under Nouveau
...is an actual percentage stored
* in the fractional part. The value is not scaled up by 100, as
* elsewhere in the RM.
*/
static NvUFXP16_16
fanPwmScalePwmRatioToPct
(
NvSFXP4_12 fanPwmScaleOffset,
NvSFXP4_12 fanPwmScaleSlope,
NvUFXP16_16 pwmRatio
)
{
NvUFXP16_16 pwmPct;
if (fanPwmScaleSlope == 0)
{
// Various logging/tracing actions here...
return 0;
}
//
// (F1.16 << 12) - (F4.12 << 16) => F4.28
// / F4.12 => F4.12
// ----------------------------------------
//...
2018 Jan 28
3
Addressing the problem of noisy GPUs under Nouveau
On 28/11/17 07:32, John Hubbard wrote:
> On 11/23/2017 02:48 PM, Martin Peres wrote:
>> On 23/11/17 10:06, John Hubbard wrote:
>>> On 11/22/2017 05:07 PM, Martin Peres wrote:
>>>> Hey,
>>>>
>>>> Thanks for your answer, Andy!
>>>>
>>>> On 22/11/17 04:06, Ilia Mirkin wrote:
>>>>> On Tue, Nov 21, 2017 at 8:29