Displaying 20 results from an estimated 3000 matches similar to: "bridge to route mode"
2009 Feb 23
3
Infiniband Drivers under Xen kernel?
Hello folks,
I am running Xen 2.6 under Centos 5.2 installation, and am trying to port
Xen migration abilities to Infiniband. But, the InfiniBand drivers do not
work under Xen kernel, only under non-Xen kernels. It looks like I need to
install some patches to rectify the situation.
Has anyone ever worked with Infiniband and Xen and would be able to give me
inputs about the same? I would really
2008 Dec 22
1
VFS: Cannot open root device
how do i know what the root partition is?
i gave the option:
root="/dev/hda"
in the config file.
Thanks & Regards,
Siddharth Wagh
-----------------------------------------------------------------------------------------
To ensure perfect aim, shoot first and call whatever you hit the target...
-----------------------------------------------------------------------------------------
2009 Mar 02
0
Porting Xen migration functionality over MPI
Hello all,
I am working over porting Xen''s migration functionality over an MPI
providing RDMA schematics. I wish to know where I could find detailed
documentation of Xen migration alone, and how to go about developing it.
Will the xen-developers list help?
Thanks & Regards,
Siddharth Wagh
2017 Sep 19
0
Dependency Info from AST
> On Sep 19, 2017, at 10:09 AM, Siddharth Shankar Swain <h2015096 at pilani.bits-pilani.ac.in> wrote:
>
> Hi Chris,
> Thanks for the suggestion i was trying to use the patch https://reviews.llvm.org/D30691 <https://reviews.llvm.org/D30691> and ASTimporter concept for cross file analysis. Can u explain in details the approach u suggested ?
There is a tutorial on
2017 Aug 17
3
Inst->replaceAllUsesWith and uses in ConstantExpr
I see. Is there a pre-existing way to do this in LLVM?
Cheers,
~Siddharth.
On Thu, 17 Aug 2017 at 02:12 Craig Topper <craig.topper at gmail.com> wrote:
> ConstantExprs are immutable, they can't be changed once they are created.
> And a ConstantExpr can reference other ConstantExprs. So replacing all uses
> of a Value in a ConstantExpr would require creating a new immutable
2018 May 11
2
LTO query
Yes running LLVM performance test suite with LTO and Thin LTO enabled.
Thanks,
Siddharth
On Fri, May 11, 2018 at 7:32 PM, Teresa Johnson <tejohnson at google.com>
wrote:
> I'm not completely sure what you are asking. Are you looking for
> performance benchmarks to use for LTO and ThinLTO testing? Or are you
> asking how to build/run with LTO and ThinLTO? Are you asking how to
2018 May 01
2
Disabling Exception in LLVM
Hi Chris,
Thanks for answering, Can u clarify on this comment mentioned in
https://github.com/Z3Prover/z3/issues/861 .
cplusplus no exception support · Issue #861 · Z3Prover/z3 · GitHub
- LLVM's *source code* does not use exceptions for performance reasons
and so is compiled by default with -fno-exceptions. When using LLVM's
libraries via it's C++ interface it is important
2018 May 11
0
LTO query
Hopefully someone else on the dev list who has experience with LNT and the
LLVM test-suite will chime in. I've never run it myself. Adding Mehdi since
he ran it with LTO/ThinLTO.
I found some documentation for the test-suite:
https://llvm.org/docs/TestingGuide.html#test-suite-overview
http://llvm.org/docs/lnt/quickstart.html
http://llvm.org/docs/lnt/tests.html#llvm-cmake-test-suite
But I
2018 May 01
0
Disabling Exception in LLVM
LLVM does not allow the use of exceptions in our code. We do not allow throwing or catching them. That does not mean you cannot compile the code with exceptions enabled, it just means we don't use them.
Clang is a full C++ compiler. Even though LLVM & Clang do not use exceptions in their implementation, Clang does support compiling C++ code that uses exceptions.
Does this answer your
2016 Aug 29
2
Publication
Hi,
Can you add the following two publications from our group to the LLVM
publications page.
-
*Alive-FP: Automated Verification of Floating Point Based Peephole
Optimizations in LLVM [pdf]
<http://www.cs.rutgers.edu/~santosh.nagarakatte/papers/alive-fp-sas16.pdf>
*David
Menendez, Santosh Nagarakatte, and Aarti Gupta
*To Appear in the Proceedings of the 23rd Static Analysis
2018 May 11
0
LTO query
I'm not completely sure what you are asking. Are you looking for
performance benchmarks to use for LTO and ThinLTO testing? Or are you
asking how to build/run with LTO and ThinLTO? Are you asking how to run
LLVM's performance test-suite with LTO and ThinLTO?
Teresa
On Fri, May 11, 2018 at 5:21 AM Siddharth Shankar Swain <
h2015096 at pilani.bits-pilani.ac.in> wrote:
> Hi,
>
2017 Sep 19
3
Dependency Info from AST
Hi Chris,
Thanks for the suggestion i was trying to use the patch
https://reviews.llvm.org/D30691 and ASTimporter concept for cross file
analysis. Can u explain in details the approach u suggested ? What is `nm`
on the object files ? Can u suggest some approach to start on this cross
file analysis tool.
Thanks,
Siddharth
On Tue, Sep 19, 2017 at 9:42 PM, Chris Bieneman <beanz at apple.com>
2019 Apr 05
2
[cfe-dev] scan-build on Windows
Hi Siddharth,
alternativly you can try this <https://github.com/rizsotto/scan-build>,
it's written in Python.
Regards,
Laszlo
On Sat, Apr 6, 2019 at 5:14 AM Artem Dergachev via cfe-dev <
cfe-dev at lists.llvm.org> wrote:
> Hi,
>
> I never tried it myself but i can try to help you with specific problems
> that you're having if you disclose them.
>
>
2018 May 11
2
LTO query
Hi,
Thanks for the info, If i only want to run performance test on benchmarks
for LTO and Thin LTO enabled target, Can u suggest ways to do it ? I want
to do it at my end.
Thanks,
Siddharth
On Wed, May 2, 2018 at 7:03 PM, Teresa Johnson <tejohnson at google.com> wrote:
> I've only measured performance on x86. There are some old results for SPEC
> cpu2006 in the blog post here:
2018 Jan 30
1
Enabling LTO for new target
yeah so when LTO runs, in the linker, it uses the target to produce
object code. In the sense of code generation for target arch.
Thanks,
Siddharth
On Mon, Jan 29, 2018 at 11:03 PM, Teresa Johnson <tejohnson at google.com>
wrote:
> Can you be more specific? LTO/ThinLTO are target independent. You just
> need to be using a linker that supports *LTO (gold, lld, ld64, eg).
> Teresa
2018 May 30
0
Meetup/Social in India
I'd be interested in attending and helping organise the Hyderabad meetup.
Cheers
Siddharth
On Wed 30 May, 2018, 14:32 Siddharth Shankar Swain via llvm-dev, <
llvm-dev at lists.llvm.org> wrote:
> Hi Folks,
>
> We are a group of LLVM compiler developers in Hyderabad area. Considering
> few previous mail about meetups in India, we are planning to organize LLVM
> meetups
2018 May 01
0
Disabling Exception in LLVM
Siddharth,
I'm not sure what coding standards you refer to when you say "some C++ coding standard". This question is answered in the LLVM Coding Standards document here:
https://www.llvm.org/docs/CodingStandards.html#do-not-use-rtti-or-exceptions <https://www.llvm.org/docs/CodingStandards.html#do-not-use-rtti-or-exceptions>
As such LLVM's coding standards prohibit the
2019 Apr 10
2
[cfe-dev] scan-build on Windows
+Aaron because i think he uses scan-build on Windows more or less
successfully. I won't have time for setting up a Windows machine for
myself in the nearest future.
Could you tell us exactly what you're doing and what exactly does it
print to console, more in the spirit of
http://www.catb.org/~esr/faqs/smart-questions.html ?
> scan-build: Not supported for windows. Exiting...
2017 Apr 21
2
Relocation design of different architecture
Thanks. I am just trying to find a relocation and linking design for
Hexagon architecture, whether to follow the MIPS style of relocation or
other architecture style of relocation. Thats my question . Thats why i was
asking about the functions and their differences Please guide.
Thanks,
Siddharth
On Fri, Apr 21, 2017 at 8:37 PM, mats petersson <mats at planetcatfish.com>
wrote:
> If
2017 Sep 19
0
Dependency Info from AST
(Apologies for the re-send Siddharth, I failed to cc the list)
There is no existing tool that I'm aware of which performs this analysis on the AST. It is possible to do on an AST. You would just need to write an AST Visitor that finds declarations, definitions, and uses of functions.
Is there a reason you need to do this at the AST level? With C code this analysis can be trivially performed