Displaying 20 results from an estimated 322 matches for "manish".
2010 Sep 22
1
Bundler picking up wrong version of Ruby with Rails 3 ( possible bundler bug )
Hello All,
I am developing a JRuby on Rails 3 application. Standard stuff.
I am facing problems getting autotest to run.
Here''s the trace:
% autotest
loading autotest/rails_rspec2
bundle exec
/Users/manish/Foo/Foo-Server/jruby-1.5.2/lib/ruby/gems/1.8/gems/rspec-core-2.0.0.beta.22/bin/rspec
''/Users/manish/Foo/Foo-Server/FooInsight/spec/controllers/users_controller_spec.rb''
''/Users/manish/Foo/Foo-Server/FooInsight/spec/helpers/home_helper_spec.rb''
''/Users/ma...
2011 May 03
0
[LLVMdev] Loop-Unroll optimization
Even after all the sequence of commands below bit-code is not showing any
effect of loop-unrolling
*manish at manish:~/Test2$ llvm-gcc-4.2 -O2 -emit-llvm Hello.c -c -o Hello.bc*
*manish at manish:~/Test2$ opt-2.8 -loops Hello.bc -o Hello1.bc*
*manish at manish:~/Test2$ opt-2.8 -loopsimplify Hello1.bc -o Hello2.bc*
*manish at manish:~/Test2$ opt-2.8 -indvars Hello2.bc -o Hello3.bc*
*manish at manish:~/Te...
2011 May 04
1
[LLVMdev] Loop-Unroll optimization
...nch.
4. Looking at LoopUnroll.cpp showed a comment that said -loop-rotate helps,
so I used the following
opt -mem2reg -loops -loopsimplify -loop-rotate -lcssa -loop-unroll
-unroll-count=3 -debug loop.o -o tt.bc
Getting an unrolled version of the loop.
Arushi
On Tue, May 3, 2011 at 6:50 PM, Manish Gupta <mgupta.iitr at gmail.com> wrote:
> Even after all the sequence of commands below bit-code is not showing any
> effect of loop-unrolling
>
> *manish at manish:~/Test2$ llvm-gcc-4.2 -O2 -emit-llvm Hello.c -c -o Hello.bc
> *
> *manish at manish:~/Test2$ opt-2.8 -loops H...
2011 May 03
3
[LLVMdev] Loop-Unroll optimization
...-loops -loop-simplify before loop unroll.
>From loop simplify.cpp
This pass performs several transformations to transform natural loops
into a00011 // simpler form, which makes subsequent analyses and
transformations simpler and00012 // more effective.
Arushi
On Tue, May 3, 2011 at 2:17 PM, Manish Gupta <mgupta.iitr at gmail.com> wrote:
> You mean like
>
> *llvm-gcc-4.2 -O2 -emit-llvm Hello.c -c -o Hello.bc*
>
> But still i am not able to observe any effect on bit code by running
>
> *opt-2.8 -loop-unroll Hello.bc -o Hello_unroll.bc*
>
> On Tue, May 3, 2011...
2013 Jan 15
1
[LLVMdev] Patch for Transform/LoopStrengthReduction/post-inc-icmpzero.ll test-failure
Hi Renato,
Thanks! I will make sure the patches are posted to the correct mailing list.
Manish
On Tue, Jan 15, 2013 at 3:04 PM, Renato Golin Linaro <
renato.golin at linaro.org> wrote:
> Hi Manish,
>
> Thanks for the patch, I'll check and commit.
>
> cheers,
> --renato
>
> PS: Patches are normally sent to llvm-commit list, unless they require a
> lot o...
2011 Sep 21
3
[LLVMdev] Alias Analysis (Andersen pointer analysis)
Thanks Everyone for the info.
I am planning to work with DSA on llvm-2.9. Hope it is working as John
mentioned.
Manish
On Tue, Sep 20, 2011 at 7:06 AM, John Criswell <criswell at illinois.edu>wrote:
> On 9/19/11 9:12 PM, Manish Gupta wrote:
>
> Dear All,
>
> I am curious to know the reason for removal of andersen pointer analysis.
> Is it because of some issues? We need it on llvm-2.9, i...
2017 Dec 19
2
Unable to run TeamViewer 13 under Centos 7 (amd64)
On 12/19/2017 02:57 PM, Manish Jain wrote:
>
>
> On 12/20/17 01:45, m.roth at 5-cent.us wrote:
>> Manish Jain wrote:
>>>
>>> On 12/19/17 22:11, Manish Jain wrote:
>>>> On 12/19/17 22:07, Jonathan Billings wrote:
>>>>> On Tue, Dec 19, 2017 at 02:54:36PM +0000, Manish J...
2017 Dec 19
3
Unable to run TeamViewer 13 under Centos 7 (amd64)
Manish Jain wrote:
>
> On 12/19/17 22:11, Manish Jain wrote:
>> On 12/19/17 22:07, Jonathan Billings wrote:
>>> On Tue, Dec 19, 2017 at 02:54:36PM +0000, Manish Jain wrote:
>>>> I uninstalled the old TV, and installed the version you indicated, but
>>>> I
>&...
2011 Sep 21
0
[LLVMdev] Alias Analysis (Andersen pointer analysis)
...ays
"DSA is undergoing significant changes and may not be entirely stable
or correct.
See lib/DSA/README"
So, I was wondering from where should one pick the code. Although I will
start my analysis and see how results turn out to be. But any comments on
this line will be helpful.
Thanks
Manish
On Tue, Sep 20, 2011 at 5:13 PM, Manish Gupta <manishg at cs.ucsd.edu> wrote:
> Thanks Everyone for the info.
>
> I am planning to work with DSA on llvm-2.9. Hope it is working as John
> mentioned.
>
> Manish
>
>
> On Tue, Sep 20, 2011 at 7:06 AM, John Criswell &l...
2011 Aug 27
4
[LLVMdev] How to break/iterate over nested instructions.
...and get the instruction of interest by
getopcode == getelementptr. But the getelementptrs in this form as in my
last mail are getting away from my pass. So i wish to break it. I have a
work around if breaking is not possible, but I think it may be a common
requirement by other passes too.
Thanks!
Manish
On Sat, Aug 27, 2011 at 12:41 AM, Duncan Sands <baldrick at free.fr> wrote:
> Hi Manish,
>
> > I wish to iterate over all instructions (where opCode == desired_opCode).
> I
> > could iterate over all the instruction expect the nested instructions
> like:
> >
&g...
2011 Aug 04
1
[LLVMdev] Tracing Value Dependency Chains
On 8/4/11 2:45 PM, Manish Gupta wrote:
> Hey John,
>
> Yes this is what I am looking for. I wrote a code as I described in my
> first mail and I am getting desired result except when the chain
> encounters load instruction (you have also mentioned the that u skip
> loads).
Okay. Just out of curiosity,...
2017 Dec 19
2
Unable to run TeamViewer 13 under Centos 7 (amd64)
On 12/19/2017 03:57 PM, Manish Jain wrote:
>
>
> On 12/20/17 01:45, m.roth at 5-cent.us wrote:
>> Manish Jain wrote:
>>>
>>> On 12/19/17 22:11, Manish Jain wrote:
>>>> On 12/19/17 22:07, Jonathan Billings wrote:
>>>>> On Tue, Dec 19, 2017 at 02:54:36PM +0000, Manish J...
2013 Jan 15
2
[LLVMdev] Patch for Transform/LoopStrengthReduction/post-inc-icmpzero.ll test-failure
...on for the
failure was the test was using hardcoded names. The attached patch fixes
this failure by replacing the hard-coded variables names with
pattern-matched variable names.
I have checked that the test pass after applying the patch. Could somebody
please review and commit the patch.
Regards,
Manish
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130115/efa90301/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-Updated-the-test-to-use-pattern-mat...
2011 Aug 04
2
[LLVMdev] Tracing Value Dependency Chains
On 8/4/11 1:53 PM, Manish Gupta wrote:
> It would be great help if someone can point me to similar code in
> Analysis or Transform, i.e. tracing value dependencies chains.
If I understand correctly, given an instruction I, you want to find its
operands o1 through oN, and then find the instructions (or LLVM values)...
2013 Jan 15
0
[LLVMdev] Patch for Transform/LoopStrengthReduction/post-inc-icmpzero.ll test-failure
Hi Manish,
Thanks for the patch, I'll check and commit.
cheers,
--renato
PS: Patches are normally sent to llvm-commit list, unless they require a
lot of discussion.
On 15 January 2013 14:52, Manish Verma <manish.avtaar at gmail.com> wrote:
> Hi,
>
> Transform/LoopStrengthReduction/po...
2017 Dec 19
6
Unable to run TeamViewer 13 under Centos 7 (amd64)
On 12/19/17 19:55, Johnny Hughes wrote:
> On 12/19/2017 07:16 AM, Manish Jain wrote:
>> Hi,
>>
>> I am writing a book about Unix (Linux / FreeBSD) and my book needs
>> documentation for TeamViewer13 running under Centos 7 (64-bit).
>>
>> Unfortunately, running TeamViewer does not get me a GUI -- the install
>> went smoothly and...
2011 Aug 01
3
[LLVMdev] Grabbing Result of an Instruction.
What member function to use if I wish to operate on results of an
instruction.
eg.
Instruction %1 = getelementptr inbounds [10 x i32]* %a, i32 0, i32 %0
I->getOperand will give me the operands.
How should I get hold of %1?
Thanks,
Manish
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110801/13dc10b5/attachment.html>
2006 Oct 17
2
Help needed!!!!
Hello there,,
My self is MANISH KUMAR <http://astriskmanish.wordpress.com/>, i m a some
wat new user of LINUX , presently i am using UBUNTU 6.06 Dapper Dark.
So some how i need a indian msnger named as REDIFF
BOL<http://messenger.rediff.com/newbol/>, on this ubuntu. i have
searched a lot on GOOGLE,, then i got some id...
2011 Aug 04
0
[LLVMdev] Tracing Value Dependency Chains
...have also mentioned the that u skip loads).
I think the recursive trace back for a Value V depending on Operands
(o1,...oN) should terminate at the nearest definition of the oN (i.e. it is
not an instruction but a LLVM Type). Right? If you can release the code
that would be a great help.
Thanks,
Manish
On Thu, Aug 4, 2011 at 12:14 PM, John Criswell <criswell at illinois.edu>wrote:
> On 8/4/11 1:53 PM, Manish Gupta wrote:
>
> It would be great help if someone can point me to similar code in Analysis
> or Transform, i.e. tracing value dependencies chains.
>
>
> If I un...
2013 Jun 03
2
installing package 'rqpd' (Regression quantiles for panel data)
...compile for R >= 2.14"
So, in another attempt, I downloaded the older version of R (2.14) to see if the 'rqpd' package could be installed using the older version, but still I had no luck.
Is there any way I could still use this package?
Thank you for your help.
Best regards,
Manish
--
--
*Manish K. Srivastava
Michigan Technological University
*