Displaying 15 results from an estimated 15 matches for "washy".
Did you mean:
wash
2014 Oct 13
3
[LLVMdev] RFC: variable names
...ite 'isMyConditionTrue()'? Or 'bool &x = I->isMyConditionTrue'? Or something else? I have no idea. Warnings and other things can help reduce the likelihood of this becoming a live bug, but it still makes the code harder to read IMO.
This is exactly why I was making the wishy-washy statement about instance variables. This is the pattern that I tend to prefer:
class Something {
bool IsMyConditionTrue;
…
bool isMyConditionTrue() const { return IsMyConditionTrue; }
}
If you make instance variables be lower camel case, then you get serious conflict between ivars and met...
2014 Oct 13
5
[LLVMdev] RFC: variable names
...ool &x =
>> I->isMyConditionTrue'? Or something else? I have no idea. Warnings and
>> other things can help reduce the likelihood of this becoming a live bug,
>> but it still makes the code harder to read IMO.
>>
>> This is exactly why I was making the wishy-washy statement about instance
>> variables. This is the pattern that I tend to prefer:
>>
>>
>> class Something {
>> bool IsMyConditionTrue;
>>
>> …
>>
>> bool isMyConditionTrue() const { return IsMyConditionTrue; }
>> }
>>
>>...
2018 Nov 22
2
Question on fast-math optimizations
...t;
>> Compiled with -mfma -ffast-math, this generates fma(x, y, x). Even
>> though this transform superficially appears to use distributivity,
>> that’s somewhat debatable because the fma computes the whole result
>> without any intermediate rounding, so it’s pretty wishy-washy to say
>> that it’s been used here.
>
> It most definitely has been used here, because of inf/nan behavior.
>
> inf*(0 + 1) == inf
> inf*0 + inf == nan
>
> (I actually fixed this bug in the past because it occurred in practice.)
Thanks Nicolai and Steve for the initial...
2018 Nov 20
2
Question on fast-math optimizations
Dear LLVM developers,
I have a question on the fast-math floating-point optimizations applied
by LLVM:
Judging by the documentation at
https://llvm.org/docs/LangRef.html#fast-math-flags I understood that
rewriting with associativity and using reciprocal computations are
possible optimizations. As the folklore description of fast-math is that
it "applies real-valued identities", I
2008 May 02
1
[LLVMdev] optimization assumes malloc return is non-null
On May 2, 2008, at 2:23 PM, me22 wrote:
[...]
> I suppose the most important issue is what constitutes "observable
> behavior".
1.9/6:
«The observable behavior of the abstract machine is its sequence of
reads and writes to volatile data and calls to library
I/O functions. [ Footnote 6: An implementation can offer additional
library I/O functions as an extension.
2014 Oct 14
2
[LLVMdev] RFC: variable names
...ConditionTrue'? Or something else? I have no idea. Warnings and
>>>> other things can help reduce the likelihood of this becoming a live bug,
>>>> but it still makes the code harder to read IMO.
>>>>
>>>> This is exactly why I was making the wishy-washy statement about
>>>> instance variables. This is the pattern that I tend to prefer:
>>>>
>>>>
>>>> class Something {
>>>> bool IsMyConditionTrue;
>>>>
>>>> …
>>>>
>>>> bool isMyCondition...
2014 Oct 13
3
[LLVMdev] RFC: variable names
> If we are going to change how we name variables, I very much want them to
> not collide with either type names or function names. My suggestion would be
> "lower_case" names.
>
> This also happens to be the vastly most common pattern across all C++ coding
> styles and C-based language coding styles I have seen.
STL has "lower_case" functions, and exposes
2000 Mar 08
3
Error loading ctest
Has anyone noticed this behavior:
> library(ctest)
Error in dyn.load(x, as.logical(local), as.logical(now)) :
unable to load shared library "J:
\STATS\RW1000/library/ctest/libs/ctest.dll":
LoadLibrary failure
> library(ctest)
> version
_
platform Windows
arch x86
os Win32
system x86, Win32
status
major 1
minor 0.0
year 2000
month
2005 May 28
1
Re: Demonizing generic Linux issues as Fedora Core-only issues -- WAS: Hi, Bryan
...don't care to understand anything technical with FC-RHEL
development and focus, and just get things dead wrong. Especially things
that have redistribution and/or licensing issues, or the fact that sooner
or later, newer versions have to be adopted.
In fact, many people seem to be "wishy washy" on whether Red Hat
should "hold back/backport" or "adopt newer" releases. The reality is
that Red Hat doesn't ship anything in RHEL that hasn't been through
Fedora Core prior (with rare exception, like MySQL 4 in RHEL4 that
wasn't in FC2/FC3 -- kinda shocked e...
2018 Nov 30
2
Question on fast-math optimizations
...h -mfma -ffast-math, this generates fma(x, y, x). Even
>>>> though this transform superficially appears to use distributivity,
>>>> that’s somewhat debatable because the fma computes the whole result
>>>> without any intermediate rounding, so it’s pretty wishy-washy to say
>>>> that it’s been used here.
>>>
>>> It most definitely has been used here, because of inf/nan behavior.
>>>
>>> inf*(0 + 1) == inf
>>> inf*0 + inf == nan
>>>
>>> (I actually fixed this bug in the past because it o...
2003 Feb 19
3
trying to get better ogg quality for this clip
hi folks, in my (unlucky) first test of ogg vs other encoders, i found a
case where wma and mp3pro sound much better than ogg at 64k. can anyone
suggest a setting that i haven't tried yet that can rival the wma and
mp3pro samples at 64k? it's the "gravel effect" that is troublesome.
the part in question is the first 15 seconds of this wave file:
2008 Nov 07
13
features and form filling - going declarative?
I''m working on writing features for a wizard. The wizard collects
information from a number of different forms, and you can navigate through
it in a number of ways. Anyhow one of these forms is a customer form
collecting name, and email.
In the context of the wizard I feel that the following scenarios
Scenario:
Given I step to customer
And I fill in my customer details
1999 Nov 12
1
R-0.65.1 Startup
Dear R users,
I have noticed that my R startup is extremely slow. It takes almost 3
minutes from "double-click" to R prompt. I have been running R-0.64.1 till
recently and it took about 30 sec. I still have access to R-0.64.1. When I
started it up, it took about 25 sec. Can anyone tell me if this is a bug in
R or a problem with my machine?
Note: This is after bootup with R being the
2008 Dec 31
5
The future of Compiz
Where are we going?
It's time to start thinking ahead and really figure out how to make Compiz
survive, specially in lieu of Dennis' suggestion.
The reality is that there has been the equivalent of no progress since the
merge. We've basically only been in maintenance mode. The reason for this,
from my point of view, is a complete lack of direction and leadership.
We've
2009 Mar 16
0
Reading XML-file + saving to sqlite3 database
Hi!
I''m new with Ruby On Rails, so I don''t really know how I can get this
fixed.
As a result of a program, I''ve got +/- 20 XML files, and I would like
to import them to my sqlite3 database. Each XML-file having it''s own
table.
Now I think I need to read the xml-files first and process them later.
I''ve done some research and found REXML, but I