similar to: Is app_icd ready to replace app_queue?

Displaying 20 results from an estimated 500 matches similar to: "Is app_icd ready to replace app_queue?"

2005 Feb 09
1
Error compiling app_icd
On Wed, 9 Feb 2005, Stefan Gofferje wrote: > I wanted to try out app_icd but... > > root@k-tanco:/opt/app_icd> make > ===> Compile: /opt/app_icd/app_icd.c (app_icd.o) > app_icd.c: In function `app_icd__log_events': > app_icd.c:2104: error: structure has no member named `cid' > app_icd.c:2104: error: structure has no member named `cid' > make: ***
2005 Mar 15
8
Call Center software opensource or commercial
Hi there, we are looking for an opensource or commercial * based Call Center. Full ACD, call monitoring, multiple queue, IVR, voicemail, management, reporting, CDR, etc is needed. over 100 seat can be the initial target and will grow in a very short time. SIP phones will be used and multiple E1 lines incoming, so to provide full failover a cluster of * machines or some other form of redundancy
2019 Mar 06
2
nvidia on 7.6
On Wed, Mar 06, 2019 at 07:26:42AM -0500, Pete Geenhuizen wrote: > > On 03/02/2019 05:41 AM, Phil Perry wrote: > > > >Hi Gerry, > > > >I've updated the nvidia 340xx legacy package set for el7.6, and > >released the packages to the elrepo testing repository. > > > >Please could you test them and let me know if they work as > >expected. To
2019 Mar 06
2
nvidia on 7.6
On 06/03/2019 19:30, Pete Geenhuizen wrote: > > > On 03/06/2019 09:59 AM, Fred Smith wrote: >> >>> I tried to install this and ran into a conflict >>> >>> --> Processing Conflict: >>> nvidia-x11-drv-340xx-340.107-2.el7_6.elrepo.x86_64 conflicts ocl-icd >>> --> Finished Dependency Resolution >>> Error: nvidia-x11-drv-340xx
2019 Mar 06
2
nvidia on 7.6
On 06/03/2019 21:53, Pete Geenhuizen wrote: > > > On 03/06/2019 04:21 PM, Phil Perry wrote: >> On 06/03/2019 19:30, Pete Geenhuizen wrote: >>> >>> That is all good and well, but my problem is that I now can't install >>> >>> vlc smplayer mplayer, or? ffmpeg-libs because they need >>> ocl-icd-2.2.12-1.el7.x86_64from epel.
2005 Aug 30
1
ICD Features
Following up on a thread that I started about Agents/Queue and acknowledging calls before bridging them... Greg Boehnlein said that he was putting his efforts into ICD. I downloaded and installed ICD, and I can get simple queue and agent stuff working fine, and see that this new design is much cleaner and more powerful. That said, in the sample conf files, the "acknowledge_call"
2019 Mar 02
2
nvidia on 7.6
On 27/02/2019 20:34, Phil Perry wrote: > On 27/02/2019 20:29, Jerry Geis wrote: >>> I'll see if I can find some time this weekend to fix the elrepo package >>> and get it reinstated into the repository. >> >>> Phil >> >> >> Hi Phil, Thanks for the reply. Your correct this is OLD hardware. >> Everything was working with 7.5 thought I
2010 Jun 24
1
Wine on Windows (via opengl32.dll)
Hello! I'm trying to replace "default" Direct3D7 implementation with gorgeous Wine software (ddraw.dll/wined3d.dll). However initialization brings surprises. wined3d.dll tries to load opengl32.dll (it's correct I suppose). opengl32.dll calls GetSystemMetrics from user32.dll (it's probably correct) user32.dll tries to use ddraw.dll to calculate some parameters. Maybe
2018 May 06
2
OpenCL runtimes and LLVM command line options
Hello everyone, A while back I hit an issue where the presence of multiple OpenCL runtimes on a single system triggered errors in libLLVM caused by redeclaring command line arguments [0]. There's been some discussion on the bug report and a pointer to a slightly older report, unrelated to OpenCL, but most likely about the same issue [1]. OpenCL uses an ICD loader library to abstract away
2018 May 07
2
OpenCL runtimes and LLVM command line options
On 05/07/2018 12:28 AM, Nicolai Hähnle via llvm-dev wrote: > We have a similar problem in Mesa's radeonsi driver. It would be great if command-line options could somehow be tied to an llvm::Context, for example. > > There is an even worse problem when *different versions* of LLVM are loaded into the same process. This is basically guaranteed to lead to crashes because of symbol
2012 Jan 10
1
Extracting Data from SQL Server
Hi, I am new to R (and rusty on SQL!) and I'm trying to extract records from a SQL server database. I have a table of patient records (LoadPUS) which have three code columns which i want to evaluate against a list of particular codes (CVD_ICD$ table). Given the size of the patient table I want to restrict the data I pull into R to the data I only want to analyse so I am using SQL to do this.
2012 Feb 15
2
[LLVMdev] Performance problems with FORTRAN allocatable arrays
I've noticed that LLVM does a bad job of optimizing array indexing code for FORTRAN arrays declared using the ALLOCATABLE keyword. For example if you have something like the following: DOUBLE PRECISION,ALLOCATABLE,DIMENSION(:,:,:,:) :: QAV ... ALLOCATE( QAV( -2:IMAX+2,-2:JMAX+2,-2:KMAX+2,ND) ) ... DO L = 1, 5 DO K = K1, K2 DO J = J1, J2 DO I = I1, I2 II = I +
2006 Apr 10
5
call center running Asterisk - sound quality - critical!
Hi, I am using Asterisk for a call center on a Dual Xeon machine.. I currently have 109 active channels 53 active calls Every body is complaining about quality and cpu is around 80% idle. Is there any tuning I can do??? Besides that, Asterisk normally goes down once or twice per day... Thank you Dov -------------- next part -------------- An HTML attachment was scrubbed... URL:
2005 Jun 29
1
OrderlyQ installations?
What experience can be shared about installing and running the OrderlyQ application? I have a bunch of queues set up and want to start adding some additional apps and this one looked promising but I have very little java experience and it doesn't seem to be running properly. Jason Kawakami -------------- next part -------------- An HTML attachment was scrubbed... URL:
2018 May 07
0
OpenCL runtimes and LLVM command line options
We have a similar problem in Mesa's radeonsi driver. It would be great if command-line options could somehow be tied to an llvm::Context, for example. There is an even worse problem when *different versions* of LLVM are loaded into the same process. This is basically guaranteed to lead to crashes because of symbol clashes. I wonder if C++11 inline namespaces could be used for proper
2018 May 08
0
OpenCL runtimes and LLVM command line options
On 07.05.2018 17:49, Tom Stellard wrote: > On 05/07/2018 12:28 AM, Nicolai Hähnle via llvm-dev wrote: >> We have a similar problem in Mesa's radeonsi driver. It would be great if command-line options could somehow be tied to an llvm::Context, for example. >> >> There is an even worse problem when *different versions* of LLVM are loaded into the same process. This is
2003 Mar 19
2
Some more general questions
Hi, Some general questions. I want to build a web page with numerical analysis generated by R. I have a few questions: - Can I control the output of a function? For example, if I do: > summary(data[[5]]) Min. 1st Qu. Median Mean 3rd Qu. Max. 0.0 0.0 120.0 193.3 310.0 10290.0 can I control the output to be something like min=0 q1=0.0 q2=120.0 q3=193.3 max=10290.0
2004 Jun 16
1
replacing cisco callmanager with asterisk?
ive had enough of cisco unity and microsoft exchange and im looking for alternatives to our voip system. right now, we have 3 cisco callmanagers, 1 cisco ip icd system, and 1 cisco unity voicemail system. all phones are cisco 7940/7960's and some ata186/188's. voice gateways are cisco vg200's with pri cards (5 total). im running h323 on the gateways and phones are of course
2012 Feb 15
0
[LLVMdev] Performance problems with FORTRAN allocatable arrays
Hi Wonsun, can you please provide a testcase. Best wishes, Duncan. > I've noticed that LLVM does a bad job of optimizing array indexing > code for FORTRAN arrays declared using the ALLOCATABLE keyword. > > For example if you have something like the following: > > DOUBLE PRECISION,ALLOCATABLE,DIMENSION(:,:,:,:) :: QAV > ... > ALLOCATE( QAV(
2019 Sep 19
2
Execute OpenCL
Dear all, After a huge amount of time trying to install LLVM and Clang i could finally do it, so now im trying to use this tools for generating a bytecode, then apply it modular optimizations and then generate an executable to test the result. First, I only want to compile a project and execute it to see how it works, specifically this one: