Displaying 20 results from an estimated 30000 matches similar to: "[LLVMdev] how to print execution trace"
2006 Dec 13
1
Questions about saving output files and popup
Hi all:
After calculating in R I want to show the answer and some explanations not
graphic plots in another new device and then save it as txt.file. However, I
couldn't find any package or command to do it yet. I know some commands about
generating graphics on different types of display or printing device. ex :
windows(), postscript(), pdf() and etc. But these all works for graphic plots,
2005 Mar 02
1
404 and NameError
Hi guys,
I was wondering if anyone knew a fix for this problem I have. I''ve
ported one of the apps I work with to Rails 0.10.0 to use Routes.
Everything works great, except for 404 pages.
The thing is that if I give a non existent path, I get the correct 404
error page back. However if I request a non existent file such as
test.php (in fact anything non existent that isn''t a
2016 May 04
2
llvm dynamic execution trace
Hi Dean, thank you for the response!
I'm a newbie to LLVM, a student working on an LLVM project so I'm not quite
sure of what you're suggesting, please excuse my naivety.
To clarify there used to exist this
http://llvm.org/releases/1.0/docs/CommandGuide/lli.html where you could
type "lli -trace 'filename.bc' and you would get a dump of the dynamic
excutiion trace.
I
2016 May 12
2
[GSoC 2016] Introduction & Feedback - Better Alias Analysis
On 05/11/2016 05:16 PM, George Burgess IV via llvm-dev wrote:
> > After applying the patch on r267335 and bootstrap LLVM/clang with
> cfl-aa enabled on its own as well as behind basic-aa on an x86
> machine, I ran test-suite with lit and saw no failed test cases
>
> Woohoo! This is great news. :D
Awesome!
>
> I'm not sure how closely everyone is reading the intro
2016 May 12
2
[GSoC 2016] Introduction & Feedback - Better Alias Analysis
(Just to note: the other issue i remember with CFL-AA is that it currently
causes performance loss. This is quite common when you increase precision,
because things move/change things they couldn't before, and often do so
without the natural bounds imprecision provided before :P)
On Thu, May 12, 2016 at 12:29 AM, James Molloy via llvm-dev <
llvm-dev at lists.llvm.org> wrote:
> Yep,
2016 Apr 12
2
llvm outlining question
CodeExtractor sort of does this.
First, it's a utility, not a pass - you'd still need to wrap it up with
pass that actually causes it to outlines what you want it to outline.
Second, it's a bit buggy. There are, as far as I know, two in-tree users of
this utility: bugpoint, and partial inlining. Both of them are fairly
specialized use-cases, and don't actually exercise the full
2008 Aug 21
0
[PATCH]fix a little problem in formats file of xentrace
This patch (attached) fixes a small problem in xentrace_format.
Signed-off-by: Yang Xiaowei <xiaowei.yang@intel.com>
Zhou Ting <ting.g.zhou@intel.com>
---
diff -r 0df3bf8aac1e tools/xentrace/formats
--- a/tools/xentrace/formats Mon Jun 16 16:35:17 2008 +0100
+++ b/tools/xentrace/formats Thu Aug 21 17:36:03 2008 +0800
@@ -23,8 +23,8 @@ 0x00081001 CPU%(cpu)d
2008 Aug 05
0
[PATCH] collect memory location of each domain
This patch will collect memory location (the domain has how many pages
in different node) of each domain and display if you input debug key.
Signed-off-by: Zhou Ting <ting.g.zhou@intel.com>
Thanks,
Zhou, Ting
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2005 Mar 02
2
wilcox.test statistics
Hi,
Could anyone provide the formula of the statistics which the wilcox.test
used for the two-sample rank-sum test? I got some statistics of 0 values,
but it is impossible to have 0 "rank-sum". Does the function use the
Mann-Whitney U test statistics? Thanks.
Ting-Yuan Liu
2017 Jun 06
2
[CommandLine] Missing clEnumValEnd for cl::values in tutorial page
Hi Bekket,
I don't see any use case in the codebase adding clEnumValEnd at the end
of list (for example, [1]), I also don't see there is
clEnumValEnd. Do I miss something here?
[1] http://llvm.org/doxygen/DwarfDebug_8cpp_source.html
Regards,
chenwj
2017-06-06 9:53 GMT+08:00 Bekket McClane via llvm-dev <
llvm-dev at lists.llvm.org>:
> Hi,
>
> Can anyone help reviewing
2018 Jan 30
0
Migrate utils/ Python 2 scripts to Python 3
Does Python 3 have feature we want to use in LLVM codebase, and no
workaround there? If so, please give some examples. I think that makes the
discussion more concrete.
2018-01-30 4:46 GMT+08:00 Fāng-ruì Sòng via llvm-dev <
llvm-dev at lists.llvm.org>:
> Hi LLVM-Devs,
>
> I noticed that many Python scripts under utils/ have a shebang of
> `#!/usr/bin/python` (which is a symlink
2002 Jun 23
0
Why does the Win2K print monitor say Paused when prin ting?
If you're using LPRng, add :done_jobs=0
to either the .common section or
each printer's entry. This will remove
the (retained) last job printed, and you won't
see it displayed as Paused anymore.
It seems that if Samba sees a job in the
lpd queue dir that has been printed, but not
removed, it shows that job with a status of
Paused.
LPRng after 3.8.10 defaults to :done_jobs=1,
and
2016 Apr 12
2
llvm outlining question
I'm not aware of anything else in LLVM that performs outlining.
Ayal (CCed) may be able to help you regarding CodeExtractor fixes.
Thanks,
Michael
On 12 April 2016 at 14:21, Minghwa Wang <mwang2 at cse.scu.edu> wrote:
> Thank you Michael and Tom for the quick reply.
>
> According to your experience and comments, CodeExtractor is buggy only
> works for special cases but
2012 Mar 23
0
[LLVMdev] Execution Engine: CodeGenOpt level
> How can I dynamically change the code generation optimization level (e.g.,
> None) of a JIT in other to recompile a function with a new optimization
> level (e.g., Default)?
From the source code I'm reading, you might have to creat another JIT with
different opt level.
Regards,
chenwj
--
Wei-Ren Chen (陳韋任)
Computer Systems Lab, Institute of Information Science,
Academia
2012 Mar 23
1
[LLVMdev] Execution Engine: CodeGenOpt level
Hi Chenwj,
Thank you for your response.
The problem with this approach is that global mappings have to be
recreated in the new JIT. Can this be somehow avoided?
Best regards,
Nurudeen.
On Thu, March 22, 2012 10:15 pm, é³éä»» wrote:
>> How can I dynamically change the code generation optimization level
>> (e.g.,
>> None) of a JIT in other to recompile a function with a new
2016 May 11
2
[GSoC 2016] Introduction & Feedback - Better Alias Analysis
Dear LLVM community,
I am a GSoC student this year working on the project of improving alias
analysis in LLVM.
The proposal initially came from a discussion I had with various devs on
the mailing list some time ago [1]. The general goal of this project is
to make alias analysis (in particular, cfl-aa) "better", and to be more
concrete here is a list of objectives I had in mind:
-
2018 Jan 31
0
Migrate utils/ Python 2 scripts to Python 3
Thanks for the information. Then how about standalone scripts (many
one-file) like utils/update_check_tests.py that are unrelated to lit
or other important infrastructure? Can they be changed from
`#!/usr/bin/python2.7` to `#!/usr/bin/python3` shebang?
On Tue, Jan 30, 2018 at 11:20 AM, Chris Matthews
<chris.matthews at apple.com> wrote:
> Personally, every machine I work with only has
2012 Mar 23
2
[LLVMdev] Execution Engine: CodeGenOpt level
Neat approach, I think. So you set PassManagers's Opt level rather
then ExecutionEngine's one?
Regards,
chenwj
--
Wei-Ren Chen (陳韋任)
Computer Systems Lab, Institute of Information Science,
Academia Sinica, Taiwan (R.O.C.)
Tel:886-2-2788-3799 #1667
Homepage: http://people.cs.nctu.edu.tw/~chenwj
2012 Feb 03
0
[LLVMdev] Question on LLVM based query execution
Hi Chang,
> I am developing a Hadoop native runtime, it has C++ APIs and libraries,
> what I want to do is to compile Hive's logical query plan directly to LLVM
> IR or translate Hive's physical query plan to LLVM IR, then run on the
> Hadoop native runtime. As far as I know, Google's tenzing does similar
> things, and a few research papers mention this technique, but
2018 Feb 01
0
Migrate utils/ Python 2 scripts to Python 3
On 2018-01-31, Chris Matthews wrote:
>The suggested way to do this on OSX is using env:
>
>#!/usr/bin/env python3
Sorry, I use `#!/usr/bin/env python3` in my patch but used #!/usr/bin/python3 in the email :)
>
>> On Jan 31, 2018, at 10:48 AM, Adrian Prantl <aprantl at apple.com> wrote:
>>
>>
>>
>>> On Jan 31, 2018, at 10:04 AM, Fāng-ruì Sòng via