Displaying 20 results from an estimated 22 matches for "lessthan".
Did you mean:
plessthan
2007 Apr 24
1
[LLVMdev] Instruction pattern type inference problem
...for
> a branch. This also allows stuff like letting 'select' accept a vector
> boolean predicate and vector values to perform a vector select.
this is the semantics that GLSL uses for vector compares, for example the signature of one of the overloads for the
built-in function 'lessThan' is:
bvec4 lessThan(vec4 x, vec4 y)
what I wanted to mention are the built-in functions 'any' and 'all' which have signatures (for 4-vectors)
bool any(bvec4 x)
bool all(bvec4 x)
and the obvious semantics any(x)= x.x || x.y || x.z || x.w and all(x)= x.x && x.y &&a...
2011 Feb 08
2
[LLVMdev] A small pass to constant fold branch conditions in destination blocks
...nated
by that branch and replace them with 0 on the spot). After walking up,
you would walk down again with what you learned; for example you may
have done %A = add %X, %Y way early on and know in this lower branch
that %Y is 0, now %A = %X. PS had a full comparison lattice (not-equals,
signed-lessthan-unsigned-greaterthan) and also grew constant range
analysis (x < y implies x != -1 and y != 0).
While I know PS removed tons of code from the .ll I was never really
able to detect a runtime performance improvement; my guess is that while
I was killing off lots of dead code it didn't impa...
2008 Jan 11
2
Question about queues and the definition of agents
...uency=60
announce-holdtime = yes
announce-round-seconds = 10
queue-youarenext = queue-youarenext
queue-thereare = queue-thereare
queue-callswaiting = queue-callswaiting
queue-holdtime = queue-holdtime
queue-minutes = queue-minutes
queue-seconds = queue-seconds
queue-thankyou = queue-thankyou
queue-lessthan = queue-less-than
queue-reporthold = queue-reporthold
periodic-announce = queue-periodic-announce
member => SIP/Tom
;member => Agent/1311
member => SIP/Tim
;member => Agent/1531
When I set "member => Agent/xxxx" only the phone of a logged in agent rings.
When I set "m...
2010 Jan 04
1
Some minor configuration issues with queues
...= no
; announce-round-seconds = 10
; queue-thankyou=
;queue-youarenext = queue-youarenext
;queue-thereare = queue-thereare
;queue-callswaiting = queue-callswaiting
;queue-holdtime = queue-holdtime
;queue-minutes = queue-minutes
;queue-seconds = queue-seconds
;queue-thankyou = queue-thankyou
;queue-lessthan = queue-less-than
;queue-reporthold = queue-reporthold
;periodic-announce = queue-periodic-announce
; monitor-format = gsm|wav|wav49
; monitor-type = MixMonitor
joinempty = no
; leavewhenempty = yes
eventwhencalled = no
; QueueMemberStatus
eventmemberstatus = no
reportholdtime = no
ringinuse = no
m...
2011 Feb 08
0
[LLVMdev] A small pass to constant fold branch conditions in destination blocks
...h and replace them with 0 on the spot). After walking up,
> you would walk down again with what you learned; for example you may
> have done %A = add %X, %Y way early on and know in this lower branch
> that %Y is 0, now %A = %X. PS had a full comparison lattice (not-equals,
> signed-lessthan-unsigned-greaterthan) and also grew constant range
> analysis (x < y implies x != -1 and y != 0).
>
> While I know PS removed tons of code from the .ll I was never really
> able to detect a runtime performance improvement; my guess is that while
> I was killing off lots of dea...
2007 Apr 23
0
[LLVMdev] Instruction pattern type inference problem
On Apr 23, 2007, at 5:08 PM, Chris Lattner wrote:
> On Sun, 22 Apr 2007, Christopher Lamb wrote:
>> 1. Is there a good reason that v2f32 types are excluded from the
>> isFloatingPoint filter? Looks like a bug to me.
>>
>> v2f32 = 22, // 2 x f32
>> v4f32 = 23, // 4 x f32 <== start ??
>> v2f64 = 24, // 2 x
2009 Aug 27
1
how does "wrapuptime" work in queue.conf
...("The current est. holdtime is")
queue-minutes = queue-minutes ; ("minutes.")
queue-seconds = queue-seconds ; ("seconds.")
queue-thankyou = queue-thankyou ; ("Thank you for your patience.")
queue-lessthan = queue-less-than ; ("less than")
queue-reporthold = queue-reporthold ; ("Hold time")
periodic-announce = queue-periodic-announce ; ("All reps busy
/ wait for next")
reportholdtime = no
; before the member hears any anno...
2007 Apr 23
3
[LLVMdev] Instruction pattern type inference problem
On Sun, 22 Apr 2007, Christopher Lamb wrote:
> 1. Is there a good reason that v2f32 types are excluded from the
> isFloatingPoint filter? Looks like a bug to me.
>
> v2f32 = 22, // 2 x f32
> v4f32 = 23, // 4 x f32 <== start ??
> v2f64 = 24, // 2 x f64 <== end
>
> static inline bool isFloatingPoint(ValueType VT) {
2007 May 03
1
Autologoff
Skipped content of type multipart/alternative-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: image/png
Size: 13579 bytes
Desc: image001.png
Url : http://lists.digium.com/pipermail/asterisk-users/attachments/20070503/c64c855a/attachment.png
2009 Oct 09
0
Asterisk Queue & Agent
...ue-holdtime ; ("The current est. holdtime
is")
queue-minutes=queue-minutes ; ("minutes.")
queue-seconds=queue-seconds ; ("seconds.")
queue-thankyou=queue-thankyou ; ("Thank you for your
patience.")
queue-lessthan=queue-less-than ; ("less than")
queue-reporthold=queue-reporthold ; ("Hold time")
periodic-announce=queue-periodic-announce ; ("All reps busy / wait for
next")
reportholdtime = yes
ringinuse = no
memberdelay = 3
timeoutrestart = yes
monitor-forma...
2004 Dec 16
2
Queueueueuueue position
...;The current est.
holdtime is")
queue-minutes = queue-minutes ; ("minutes.")
queue-seconds = queue-seconds ; ("seconds.")
queue-thankyou = queue-thankyou ; ("Thank you for your
patience.")
queue-lessthan = queue-less-than ; ("less than")
join-empty=yes
leavewhenempty=no
member=Agent/1000
When I call in (with an agent logged in) I get to hear the MOH on the client
side, hover no matter how high the hold time is, I NEVER get an announcement
over my queue position or my...
2011 Feb 08
1
[LLVMdev] A small pass to constant fold branch conditions in destination blocks
...em with 0 on the spot). After walking up,
>> you would walk down again with what you learned; for example you may
>> have done %A = add %X, %Y way early on and know in this lower branch
>> that %Y is 0, now %A = %X. PS had a full comparison lattice (not-equals,
>> signed-lessthan-unsigned-greaterthan) and also grew constant range
>> analysis (x < y implies x != -1 and y != 0).
>>
>> While I know PS removed tons of code from the .ll I was never really
>> able to detect a runtime performance improvement; my guess is that while
>> I was kil...
2011 Feb 07
0
[LLVMdev] A small pass to constant fold branch conditions in destination blocks
Here is a new and improved version that also does the following: if the
condition for a conditional branch has the form "A && B" then A, B and the
condition are all replaced with "true" in the true destination (similarly
for || conditions in the false destination). Also, if the condition has
the form "X == Y" then X is replaced by Y everywhere in the true
2007 Apr 26
1
How does Realtime read config files?
Hi...
I just had a real quick and simple question... I have a asterisk
implementation setup w/ real time off of a mySQL database for SIP peers and
queues, voicemail, agents etc... I after the upgrade to asterisk 1.4.3 there
are some new configuration features i would like to use. I was wondering if
i could just add to the database table a column for the new config option?
if this will work or
2004 Sep 17
6
Agents and Queues
I've just installed asterisk as a new phone system for our office but am
having difficulty with the queues. Specifically I need a way to
redirect our sales queue to voicemail when no one is logged in to the
queue. I see I can use the joinonempty=no setting, however this setting
doesn't work if you use the agent functionality (at least not with
AgentCallbackLogin). I could, of
2013 Feb 19
4
Float::INFINITY ranges in where() clause
This seems like such an obvious idea that I''m having trouble believing
I''m the first to think of it. Why not take ranges containing
Float::INFINITY and translate them to the appropriate greater than or
less than comparisons? Example:
class Person
scope :voters, -> { where(born_on: (-Float::INFINITY..18.years.ago)) }
end
This would generate something along the lines of
2006 Jun 27
0
(no subject)
...("The current est. holdtime
is")
queue-minutes = queue-minutes ; ("minutes.")
queue-seconds = queue-seconds ; ("seconds.")
queue-thankyou = queue-thankyou ; ("Thank you for your
patience.")
queue-lessthan = queue-less-than ; ("less than")
queue-reporthold = queue-reporthold ; ("Hold time")
periodic-announce = queue-periodic-announce ; ("All reps busy /
wait for next")
;
; Calls may be recorded using Asterisk's monitor...
2003 Sep 07
1
Problem Installing Open H.323 Channel Driver
....cpp:115: `result' undeclared (first use this function)
ast_h323.cpp:115: `EqualTo' undeclared (first use this function)
ast_h323.cpp:118: invalid use of undefined type `class H323_G7231Capability'
ast_h323.h:70: forward declaration of `class H323_G7231Capability'
ast_h323.cpp:120: `LessThan' undeclared (first use this function)
ast_h323.cpp:122: `GreaterThan' undeclared (first use this function)
ast_h323.cpp:124: warning: control reaches end of non-void function
`H323_G7231Capability::Compare(const PObject &) const'
ast_h323.cpp: At top level:
ast_h323.cpp:127: invalid...
2004 Dec 17
1
h323 channel compile error
...cpp:109: `result' undeclared (first use this function)
ast_h323.cpp:109: `EqualTo' undeclared (first use this function)
ast_h323.cpp:112: invalid use of undefined type `class
H323_G7231Capability'
ast_h323.h:60: forward declaration of `class H323_G7231Capability'
ast_h323.cpp:114: `LessThan' undeclared (first use this function)
ast_h323.cpp:116: `GreaterThan' undeclared (first use this function)
ast_h323.cpp: At top level:
ast_h323.cpp:121: invalid use of undefined type `class
H323_G7231Capability'
ast_h323.h:60: forward declaration of `class H323_G7231Capability'
ast...
2011 Feb 07
7
[LLVMdev] A small pass to constant fold branch conditions in destination blocks
Hi all, I wrote a little pass (attached) which does the following: if it sees a
conditional branch instruction then it replaces all occurrences of the condition
in the true block with "true" and in the false block with "false". Well, OK, it
is a bit more sophisticated (and a bit more careful!) than that but you get the
idea. It will turn this
define i1 @t1(i1 %c) {
br