similar to: The killer app for Asterisk in corporate deployment

Displaying 20 results from an estimated 600 matches similar to: "The killer app for Asterisk in corporate deployment"

2005 Aug 04
0
Re: [Asterisk-Dev] The killer app for Asterisk in corporate deployment
At 6:31 AM -0700 on 8/4/05, peter webier wrote: >We're a dealer in Europe selling commercial phone & >building management systems, some residential too. >All the new office buildings have an EIB bus to manage >the lights, clima, security access, etc. The big >companies also have Crestron or AMX automation and >media servers for the boardroom. Asterisk is an >awesome
2005 Jun 20
1
(no subject)
R friends, I am using R 2.1.0 in a Win XP . I have a problem working with lists, probably I do not understand how to use them. Lets suppose that a set of patients visit a clinic once a year for 4 years on each visit a test, say 'eib' is performed with results 0 or 1 The patients do not all visit the clinic the 4 times but they missed a lot of visits. The test is considered positive if it
2014 Jan 20
1
Dialing a SIP URI with an ";ext=" parameter
Hi All, In the midst of trying to pilot a deployment of Microsoft Lync (mainly for non-voice collaboration, specifically IM) and integrate it with our Asterisk (11.6.0 if it matters) deployment and a "everything in one place" tool when people are out of the office. I have everything on the voice side playing nice from the Lync side (Lync->Lync, Lync->Asterisk,
2013 Dec 28
1
Convert Asterisk Appliance (AA50) to "Open" Asterisk?
Hi All, Thanks for all of the help I've been given in the past and info I've picked up from this list over the years. I have an "official" Asterisk appliance (the AA50) running my PBX at home (we previously also had an AA50 in a satellite office-that one was recently retired and replaced with Asterisk running on commodity server hardware). Anyway - the AA50
2013 Nov 13
1
SIP Presence across two servers
Hi All, We've been running Asterisk for years in our offices but just recently replaced an Asterisk Appliance* in our smaller office with an actual server, upgraded the server in hardware in our HQ location and upgrading both ends to 11.5.0 with Gareth's patch for Cisco phones. 99.99% of our endpoints are Cisco 7961Gs. Each office is more-or-less standalone for ease of management and
2007 Jul 04
0
Problems with SIP Registration on VPN Link
Hi, We are having major problems with a remote site that links to the head office via a VPN tunnel. The phones will register fine and work for a few minutes to hours but then will drop their connection and will no register to asterisk even with a restart of the phone. We have 2 other remote sites that work exactly same and they are not having any issues so i believe it has to be be something
2009 Apr 05
4
Game install failed
Hello, tried to install Brothers In Arms: Earned In Blood in Hardy, Wine 1.1.18, and it gets through the entire install, then asks me to reboot. When i click yes, the window disappears. But nothing happens. I open it again to find the same prompt right in front of my face. I've tried wineboot in the Terminal, tried even restarting ubuntu itself. But it always comes up with that same
2005 May 30
0
Re: Running LabView + OPC server/EIB on wine ?
Hi Benno, --- Benno Senoner <sbenno@gardena.net> wrote: > Hi, sorry for writing you directly, It's no trouble, though you may get more or better advice posting to one of the mailing lists or on irc (#winehq). I'm cc'ing wine-users in case someone else has experience in this area, hope you don't mind. > assume I use LabView on Windows to make a standalone .exe >
2009 Sep 01
1
avoiding local users
Dear all, I am new to samba. have configured a samba share, pls see config file below and my problem is that the share works successfully however to work I need to create an equivalent user locally , in the case ' boule ' . Is there a way to authenticate to the domain , force user and group as apache and having the valid users not created locally on the machine ? tnx konrad # This is
2005 Aug 09
1
Net RPC Vampire not sucking all groups
I've tried numerous times but cannot get Vampire to bring across all groups or add users to all groups that they belong to. Sometimes I get everygroup except 1, other times not so lucky. Vampire log is below with an example of what is going wrong. vampire.log Fetching DOMAIN database Creating unix group: 'skischool' Creating unix group: 'sales' Creating unix group:
2020 Aug 14
6
Intel AMX programming model discussion.
Hi, Intel Advanced Matrix Extensions (Intel AMX) is a new programming paradigm consisting of two components: a set of 2-dimensional registers (tiles) representing sub-arrays from a larger 2-dimensional memory image, and accelerators able to operate on tiles. Capability of Intel AMX implementation is enumerated by palettes. Two palettes are supported: palette 0 represents the initialized state and
2020 Aug 14
3
Intel AMX programming model discussion.
[Yuanke] AMX register is special. It needs to be configured before use and the config instruction is expensive. To avoid unnecessary tile configure, we collect the tile shape information as much as possible and combine them into one ldtilecfg instruction. The ldtilecfg instruction should dominate any AMX instruction that access tile register. On the other side, the ldtilecfg should post-dominated
2020 Nov 19
2
[RFC] Intel AMX programming model
Hi, Several months ago, we have some discussion for Intel AMX programming model in llvm-dev. H.J. post the AMX ABI at [1], and I sent the design for the programming model at [2]. Thank Hal, Philip for the time to review the design and provide good ideas to improve the design. After that I implemented the patch [4] and it is reviewed in LLVM community. The patch covers 6 components. 1. The c
2020 Aug 18
2
Intel AMX programming model discussion.
The AMX registers are complicated. The single configuration register (which is mostly used implicitly, similar to MXCSR for floating point) controls the shape of all the tile registers, and if you change the tile configuration every single tile register is cleared. In practice, if we have to change the the configuration while any of the tile registers are live, performance is going to be terrible.
2020 Aug 19
2
Intel AMX programming model discussion.
Hi Hal, There is 3 aspect to be solved. 1. The HW support max shape 16x16, so there are many register classes from 1x1 to 16x16. We need 256 register classes. 2. We want to support variable shape, so compiler don't know what register class to fit tile shape as it is only known in runtime. 3. The tile configure is to configure physical tile register, so we need to allocate
2020 Aug 19
3
Intel AMX programming model discussion.
There is no problem to have 256 register classes. Just a lot of register classes to me. We don't assume the shape of each physical register be 16x16, it is defined by user. For variable shape, I mean the shape is known in runtime and in compile time the shape is unknown. Take below code as an example, the %row and %col are variable instead of constant. Compiler recognizes llvm.x86.tileloadd64
2020 Aug 19
2
Intel AMX programming model discussion.
> When the tile shape is unknown at compile time, how do you plan to do the register allocation of the tiles? My question is: do you do the allocation for this case in the same way as you would if you knew the size was 16x16 (i.e., conservatively assume the largest size)? I think what will happen is that the registers are allocated based on a number of runtime values that are assumed to be
2020 Aug 19
3
Intel AMX programming model discussion.
The width and height can be runtime values that we would just copy into 64 byte configuration block we pass to ldtilecfg. So the code doesn't need to be multiversioned. The user code would also use those values to update pointers in the loops they write using the tiles. If we can't determine that two tiles were defined with the same width and height we need to assume the shape is different
2020 Aug 21
2
Intel AMX programming model discussion.
Hi Hal, The proposal is attractive to me, but there is something I still can't figure out. Let's take below MIR as an example. We assume we have 256 register classes (vtile1x1, vtile1x2, ..., tile16x16). 1. After instruction selection, the pseudo AMX instruction is generated. The name of pseudo instructions have 'P' prefix. Now all the AMX pseudo instruction take vtile as
2020 Aug 14
2
Intel AMX programming model discussion.
From: Hal Finkel <hfinkel at anl.gov> Sent: Friday, August 14, 2020 11:27 PM To: Luo, Yuanke <yuanke.luo at intel.com>; llvm-dev at lists.llvm.org; florian_hahn at apple.com; Kaylor, Andrew <andrew.kaylor at intel.com>; Topper, Craig <craig.topper at intel.com>; Lu, Hongjiu <hongjiu.lu at intel.com> Subject: Re: [llvm-dev] Intel AMX programming model discussion. On