Displaying 20 results from an estimated 1000 matches similar to: "Scalability of the Asterisk"
2003 Sep 01
2
Unified Messaging Support ?
Hello,
One quick question. Does anyone has experience implementing
unified messaging (UM) using Asterisk. Does Asterisk has support
for UM ?
Thanks,
Tarun
___________________________________________________
Medicine meets Marketing; Dr. Swati Weds Jayaram.
Rediff Matchmaker strikes another interesting match !!
Visit http://matchmaker.rediff.com?2
2003 Sep 02
1
Matrix of Hardware in use by Asterisk Community
Hello John
Is there any Matrix available about the hardware configuration
people are using. Please refer to one of your reply below in the
month of June 03.
Thanks,
Tarun
/**************************************************/
ithin a few days, I'll have a matrix out to the list with some
hardware profiles of various machines that people are using. It
won't be a chart of "what do
2003 Sep 16
2
Any Universiry using Asterisk ??
Hello all,
Does anyone has experience of deploying Asterisk based VoIP
solution in a universitywide campus. We are at present
investigating various Soft PBX for this purpose from different
vendors Digium,Snom, Pingtel...
We are looking at serving more than 5000 clients and we want to be
very sure before taking any final decision. I would be glad to
hear from members who are aware of
2003 Aug 26
0
Hardware Requirement for Asterisk PBX
Hello All,
I am newbie to Asterisk IP PBX Community. We are planning to use
Asterisk IP PBX at our university campus. I would like to know
what's the ideal hardware requirements for setting up Asterisk.
At present we have 12000 analog telphone lines, so goal is to use
IP telephony on campus in future.
Thanks,
Tarun
___________________________________________________
Art meets Army ;
2003 Oct 12
3
Is this Hardaware Enough for Asterisk ?
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20031012/59c113df/attachment.htm
-------------- next part --------------
Hello,
We are planning to buy following Hardware for Asterisk TestBed. Please let me know if this seems fine to you.
1. IP Phones ( 5 in number) CISCO 7940/7960, SNOM 200, Pingtel xpressa
2. Wildcard T100P interface card,
2011 Apr 17
2
[LLVMdev] Error compiling ConstantProp.cpp
I am using llvm-2.6 and the ConstProp.cpp file is
http://llvm.org/docs/doxygen/html/ConstantProp_8cpp_source.html
and the exact error message is:
llvm[0]: Compiling ConstantProp.cpp for Release build (PIC)
/home/tarun/Desktop/compiler/LLVM/llvm-2.6/include/llvm/Analysis/ConstantFolding.h:
In member function ‘virtual
bool<unnamed>::ConstantPropagation::runOnFunction(llvm::Function&)’:
2011 Apr 17
0
[LLVMdev] Error compiling ConstantProp.cpp
On Sat, Apr 16, 2011 at 5:27 PM, tarun agrawal <tarun at cse.iitb.ac.in> wrote:
> I am using llvm-2.6 and the ConstProp.cpp file is
> http://llvm.org/docs/doxygen/html/ConstantProp_8cpp_source.html
>
> and the exact error message is:
>
> llvm[0]: Compiling ConstantProp.cpp for Release build (PIC)
>
2011 May 03
1
[LLVMdev] Error compiling ConstantProp.cpp
Hi
While compiling the ConstantProp.cpp I am getting the following error.
error: too few arguments to function ‘llvm::Constant*
llvm::ConstantFoldInstruction(
llvm::Instruction*, llvm::LLVMContext&, const llvm::TargetData*)
I am using llvm-2.6 and the ConstProp.cpp file is
http://llvm.org/docs/doxygen/html/ConstantProp_8cpp_source.html
and the exact error message is:
llvm[0]: Compiling
2011 May 04
2
[LLVMdev] Trace Use-Def chain
On 5/3/11 4:08 PM, tarun agrawal wrote:
> HI
>
> I know it is a very simple question not worth asking here but I am
> really struggling pls help me out..
This is a question worth asking; it's just that not everyone can answer
all the time.
:)
If all you want to do is to follow the SSA def-use chain within a single
function, then this is very easy. All you have to do is use
2011 Apr 17
0
[LLVMdev] Regarding BasicBlock Cloning
On 4/16/11 7:01 PM, tarun agrawal wrote:
> The clone llvm:CloneBasicBlock copies the phi function in the
> replicated basic block from the original basic block.
After you clone the basic block, you can probably replace the phi
instruction with another value of your choice. If you're adding
variables, you'll probably want to create them as allocas and use loads
and stores to
2011 May 04
0
[LLVMdev] Trace Use-Def chain
Dear Tarun,
It just occurred to me that this may or may not be what you are asking
about. This only finds basic blocks along the def-use chain of an
instruction; it does not find all basic blocks along all paths between
two instructions. I don't know of an algorithm off-hand for the latter,
but if you understand how to iterate over def-use chains and the
control-flow graph, then
2011 May 04
2
[LLVMdev] Trace Use-Def chain
Thanks John,
I know how to iterate through def-use chains and I also have realized the
need for an algorithm to do the work. But the algorithm I am able to figure
out is not linear in time. It wold be a great help if someone suggest me a
way to get all basic-block along all path between two instruction.
On Wed, May 4, 2011 at 7:00 AM, John Criswell <criswell at illinois.edu> wrote:
>
2011 May 03
0
[LLVMdev] Trace Use-Def chain
HI
I know it is a very simple question not worth asking here but I am really
struggling pls help me out..
On Tue, May 3, 2011 at 10:10 PM, tarun agrawal <tarun at cse.iitb.ac.in> wrote:
> Hi,
>
> I need to get all the basic blocks that are there, in the path from
> definition of an instruction to use of that instruction.
>
>
> Regards
> Tarun
>
--------------
2011 Apr 17
4
[LLVMdev] Regarding BasicBlock Cloning
The clone llvm:CloneBasicBlock copies the phi function in the replicated
basic block from the original basic block.
I don't want the copy of phi in relplicated block. For now I am creating .bc
file with -O0 option so that it doesn't generate phi function in first
place. Is this a good approach or there are some other function available
for it.
Tarun
On Sun, Apr 17, 2011 at 5:22 AM, Eli
2012 Feb 27
0
[LLVMdev] Algorithm used for doing alias analysis.
On Sat, Feb 25, 2012 at 8:44 AM, tarun agrawal <tarun at cse.iitb.ac.in> wrote:
> Hi,
>
> I am using alias analysis to determine whether two values are alias or not.
> But I am not able to figure out the algorithm that is being used to
> determine
> May , Must and No Alias.
Here is the algorithm in high-level:
http://llvm.org/docs/AliasAnalysis.html#exist
>
>
>
2011 Apr 17
0
[LLVMdev] Error compiling ConstantProp.cpp
On Sat, Apr 16, 2011 at 5:07 PM, tarun agrawal <tarun at cse.iitb.ac.in> wrote:
> While compiling the ConstantProp.cpp I am getting the following error.
>
> error: too few arguments to function ‘llvm::Constant*
> llvm::ConstantFoldInstruction(llvm::Instruction*, llvm::LLVMContext&, const
> llvm::TargetData*)
If you're reporting a build error, please include the
2012 Jan 09
0
[LLVMdev] Dynamic Analysis
Dear Tarun,
Swarup Sahoo and I wrote some LLVM passes for dynamic slicing for LLVM 2.6. I believe we had planned to make the code publicly available as part of the Giri project (http://llvm.org/viewvc/llvm-project/giri/trunk), but due to other commitments, we have not moved the code into that SVN repository yet.
Let me check with Vikram and Swarup to see about getting a copy of the code to you.
2012 Feb 08
1
[LLVMdev] Instruction for print
Just to be clear, I have to add a function name printf in the module with
no body. And I can call the function. This will automatically call the
printf function which is defined in the library.
Tarun Agrawal
On Wed, Feb 8, 2012 at 11:34 PM, John Criswell <criswell at illinois.edu>wrote:
> On 2/8/12 11:55 AM, tarun agrawal wrote:
>
> Hi,
>
> I am trying to insert a
2004 Feb 07
2
killing rsync
HI,
My name is tarun and iam new to this list..
Can any one please help me ??
How can i kill a rsync.. Suppose if iam in middle of rsync of a whole 10gb of data. Can i kill rsync in the middle using kill "rsync process id" and resume it later, wouldnt it result in any errors if we kill rsync suddenly. Or is there any signal to send to rsync to terminate it cleanly..Doest rsync have
2011 Apr 17
2
[LLVMdev] Error compiling ConstantProp.cpp
While compiling the ConstantProp.cpp I am getting the following error.
error: too few arguments to function ‘llvm::Constant*
llvm::ConstantFoldInstruction(llvm::Instruction*, llvm::LLVMContext&, const
llvm::TargetData*)
Regards
Tarun
-------------- next part --------------
An HTML attachment was scrubbed...
URL: