Displaying 20 results from an estimated 700 matches similar to: "who has purchased a V400 card from Varion ?"
2006 Feb 03
0
varion card
I've been using it in a test environment with no problems. However, I
haven't used it in production yet. I'm doing some voice broadcasting
with a PRI and so far I'm content with the performance.
-MC
-----Original Message-----
From: asterisk-users-bounces@lists.digium.com
[mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Akpome
Akpoguma
Sent: Friday, February 03,
2004 May 07
2
Availability of T400P and E400P
Good day everyone,
A Solution now exists for those of you still looking for the first model of Quad T1/E1 Interface Cards - the T400P and E400P.
The T400P and E400P were manufactured by Digium until a few months ago, and were designed and released under the GNU Public License as the
Tormenta II by Zapata Telephony.
Varion, Inc. is now in full production manufacturing these boards. With the
2018 Jan 17
3
Does it make sense to upstream some MVT's?
Hi,
Our backend for Pixel Visual Core uses some MVT's that aren't upstream.
Does it make sense to upstream them? I figure that as architectures get
wider, we'll eventually have "all" possible combinations of widths and
types, but on the other hand having code that isn't used by current
backends in tree isn't great.
These are the MVT's that we have added:
16x16
2018 Jan 17
0
Does it make sense to upstream some MVT's?
Hi Sean,
I had to add ‘v16f16’ to our out-of-tree target, and this was to primarily to allow me to express lowering for all the OpenCL types (well, except for the ‘v3T’ types).
The trend does seem to be towards larger bit-width SIMD registers, and as you say this will increase in time; but perhaps instead of using a discrete enumeration combined with additional entries in several
2010 Jan 30
3
[LLVMdev] [patch] MicroBlaze Backend
> Your patch looks very clean. Some comments:
Heh, Jakob was faster :)
> - I think you have some literal tabs in your instruction descriptions.
The tabs can be seen in some other places as well. Also, there is a
"mix" of coding conventions in the files. It will be really nice to
use only one :)
> - Your tests are nice, but you could use some more of them. I would recommend
2018 Jan 17
1
Does it make sense to upstream some MVT's?
On Tue, Jan 16, 2018 at 11:13 PM, Martin J. O'Riordan <MartinO at theheart.ie>
wrote:
> Hi Sean,
>
>
>
> I had to add ‘v16f16’ to our out-of-tree target, and this was to
> primarily to allow me to express lowering for all the OpenCL types (well,
> except for the ‘v3T’ types).
>
>
>
> The trend does seem to be towards larger bit-width SIMD registers, and
2012 May 21
3
Need help for R install
Dear R committee:
I am Renzhi, Ph.D student in computer science in the University of Missouri. I have one question for you. I try to install R in the linux server, but I don't have the root permission, is there any way to install the R locally?
Thank you very much for helping me.
Renzhi Cao
Graduate Research Assistant
Department of Computer Science
University of
2006 Feb 27
2
Tried to load a theme, didn't work. No error message.
I searched every wine forum and wiki I could find, but there's no
information on wine theming.
I downloaded an *.msstyles file, and opened it with winecfg (Desktop
Integration->Install theme...). Nothing changed. The style I selected
didn't even get added to the list - the only option is still "(No
Theme)". There was no error message.
wine 0.9.8
This is the style I tried:
2005 Oct 12
3
E400P vs te410p vs te411p
Hi,
I found E400P quad PRI card quite cheap (749USD):
http://www.govarion.com/product_info.php?cPath=1&products_id=2&osCsid=68cdd6e3d08754
in comparison to te410p (approx 1500 USD )
http://www.digium.com/index.php?menu=product_detail&category=hardware&product=TE410P
Now newer generation with HW echo canceling emerged (te411p).
I'm not sure in what things those two cards
2024 Jan 13
8
[Bug 3656] New: How to fix row hammer attacks?
https://bugzilla.mindrot.org/show_bug.cgi?id=3656
Bug ID: 3656
Summary: How to fix row hammer attacks?
Product: Portable OpenSSH
Version: -current
Hardware: All
OS: All
Status: NEW
Severity: security
Priority: P5
Component: sshd
Assignee: unassigned-bugs at mindrot.org
2004 Nov 28
17
Wiki down?
Hi All,
The wiki seems to be struggling this evening. Anyone else seeing this?
Michael
--
Michael Graves mgraves@pixelpower.com
Sr. Product Specialist www.pixelpower.com
Pixel Power Inc. mgraves@mstvp.com
o713-861-4005
o800-905-6412
c713-201-1262
2018 Dec 04
3
Bug report: Function ppois(0:20, lambda=0.9) does not generate a non-decreasing result.
Le 04/12/2018 ? 11:27, I?aki Ucar a ?crit?:
> On Tue, 4 Dec 2018 at 11:12, <qweytr1 at mail.ustc.edu.cn> wrote:
>> function ppois is a function calculate the CDF of Poisson distribution, it should generate a non-decreasing result, but what I got is:
>>
>>> any(diff(ppois(0:19,lambda=0.9))<0)
>> [1] TRUE
>>
>> Actually,
>>
>>>
2007 Jun 29
1
TE420 PCI Express Card
Hi,
Does anybody have any feedback on this new card from Digium? It was
announced a couple of weeks ago but now Digium said they ran out and is
no longer available for purchase via their web site. I find this kind
off odd. If they are out why don't they just says its on backorder or
something, rather than pulling it off completely from the store.
I am kind of hesistant at this point
2010 Oct 15
2
[LLVMdev] how to get MachineBasicBlock of a BasicBlock
Hello, we can get BasicBlock from MachineBasicBlock through MachineBasicBlock::getBasicBlock() function, but how can I get MachineBasicBlock of a BasicBlock?
Thank you!
2018 Dec 03
2
Bug report: Function ppois(0:20, lambda=0.9) does not generate a non-decreasing result.
function ppois is a function calculate the CDF of Poisson distribution, it should generate a non-decreasing result, but what I got is:
> any(diff(ppois(0:19,lambda=0.9))<0)
[1] TRUE
Actually,
> ppois(19,lambda=0.9)<ppois(18,lambda=0.9)
[1] TRUE
Which could not be TRUE.
Code is tested in both R 3.5.1 and Microsoft R Open 3.5.1.
_
2013 May 23
2
[LLVMdev] LLVM Loop Vectorizer puzzle
Hi,
I have the llvm loop vectorizer to complie the following sample:
//=================
int test(int *a, int n) {
for(int i = 0; i < n; i++) {
a[i] += i;
}
return 0;
}
//================
The corresponded .ll file has a loop preheader:
//================
for.body.lr.ph: ; preds = %entry
2004 Jul 09
5
RE: the "cisco vs. Linux" thread
FYI this topic has been covered on the Zebra and Quagga lists
- hardware processors, memory, NICs, etc
- software OS (Linux, *BSD), drivers, etc
I''ve been running a couple of Linux routers for about 2 years now, I''m
using
them as core routers so I bought a couple of rackmount "server" boxes
with
redundant PSUs and h/w RAID (1) for hotswap disks.
I''m using
2010 Oct 15
0
[LLVMdev] how to get MachineBasicBlock of a BasicBlock
I don't think you can.
The BasicBlock is a member of MachineBasicBlock. It is not inherited,
so it cannot be cast. The number of the MachineBasicBlock is not the
same as any BasicBlock values. So
MachineFunction::getMachineBasicBlock( BasicBlock::{get the number} )
cannot work. I do not see much in the basic block which can identify
it.
So you can search for it.
typedef struct findBlock {
2005 Aug 22
0
Does Asterisk support T1 E&M Wink/Wink voicechannels on any Digium/Sangoma hardware?
I could only get *ANI*DNIS* working one way and that was setting my
signalling type on the Asterisk side to 'featd' The Definity won't send
*ANI*DNIS* information back to the asterisk as far as I can tell.
Other than that, I've been running it with wink/wink E&M for a while
now. TN464 circuit pack on the definity side, te110p on the asterisk
side. Just a crossover cable
2003 Oct 17
1
vorbis is dying? [aac is taking over?]
Hey,
It seems that ogg/vorbis is being slowly forgotten..
It used to have really alot of attention from all around, and it was
the "the" coolest thing !
Now people barely talk about it, most of them now talk about AAC and
how superior it is both in low and high bitrates.
I know that there have been discussions about vorbis 1.01 and 1.1, but
as time passes by we hear no news.
Yeah