similar to: [GSoC18] About LLVM Projects

Displaying 20 results from an estimated 2000 matches similar to: "[GSoC18] About LLVM Projects"

2018 Jan 16
0
[GSoC2018] About LLVM Projects
Dear LLVM Team: My name is Guo Xing, a student who are in his third year of college. GSoC2018 is coming, and I want to do some contribution for llvm community. However, the open projects page is for GSoC2017, and some projects like Shell auto-completion support for clang <http://llvm.org/OpenProjects.html#clang-shell-autocompletion-support> have been done. Is there any ideas? What if
2018 Jan 15
1
searching co-mentor for gsoc18
Dear R community, I am in a quest for a co-mentor, expert in R, for the following GSoC18 project proposal: https://github.com/rstats-gsoc/gsoc2018/wiki/Sampling-and-volume-approximation Thank you in advance for your feedback. Best, Vissarion Fisikopoulos
2019 Mar 26
2
How to revert a change properly
The "Revert [tag] message" is the default message generated by the 'git revert' command. Of course you would have to be using a git clone of LLVM instead of an SVN checkout in order to run 'git revert'. This command is the equivalent of 'svn merge –r' run from the top-level directory. I believe svn commands will operate only on the directories below the current
2020 Jul 29
2
Building a single .rst file
Is "Unix Makefiles" what I want if I am building on Windows using GNU make? At 7/28/2020 10:41 PM, Xing GUO wrote: >On 7/29/20, Paul C. Anagnostopoulos via llvm-dev ><llvm-dev at lists.llvm.org> wrote: >> Folks, >> >> Total newbie here. What is the simplest way to build a single .rst file so >> that I can look at the generated HTML? I have CMake,
2020 Jun 28
2
Is bugzilla down?
It seems to be down again for me, anyone experiencing the same? https://bugs.llvm.org/show_bug.cgi?id=18159 On Tue, 23 Jun 2020 at 14:54, Aaron Ballman via llvm-dev < llvm-dev at lists.llvm.org> wrote: > On Tue, Jun 23, 2020 at 8:28 AM Xing GUO via llvm-dev > <llvm-dev at lists.llvm.org> wrote: > > > > Hi folks, > > > > It seems that bugzilla is
2020 May 22
2
RFC: Add DWARF support for yaml2obj
Hi Pavel, Thanks for your comments! On 5/21/20, Pavel Labath <pavel at labath.sk> wrote: > Hello Xing, > > I think the proposal looks very useful. I think it will be fairly tricky > to get all of the details right though. There is a lot of "inferring" > going on there, and getting that to work reliably and with predictable > results will need careful
2019 Nov 16
2
[Bugzilla] Is Bugzilla down?
Hi, It seems that Bugzilla (https://bugs.llvm.org/) is down, when I using the search engine. -- Best Regards, Xing
2019 Mar 26
2
How to revert a change properly
Hi folks, Several days ago, I made a bad change in llvm, and I reverted it using following command ``` $ svn merge -r <bad change revision>:<previous revision> ``` However, this command seemed not working properly. I would like to know, what's the right way to revert a bad change. I notice that there are some reverting change with proper message, e.g. "Revert: [some tag]
2019 Feb 22
2
How to write an 'expected failure test'
Hi devs, I want to write a test that expected to fail. And I want to check the error message. But I found that if the command exit code is not 0, then the test will fail. Also, if I add `XFAIL: *`, it will not check the command line output ... Can someone help me? Best Regards, Xing -------------- next part -------------- An HTML attachment was scrubbed... URL:
2020 Jun 23
2
Is bugzilla down?
Hi folks, It seems that bugzilla is encountering some problems right now. When I click specific bug reports, it shows "undef error - DBD::mysql::st execute failed: Got error 28 from storage engine", e.g. https://bugs.llvm.org/show_bug.cgi?id=41513 and https://bugs.llvm.org/show_bug.cgi?id=46423 -- Cheers, Xing
2018 Jun 01
3
[Kaleidoscope] symbol(s) not found during compiling
Hi, I am very excited to take the awesome tutorial of implementing *Kaleidoscope*. But I got stuck here... I have done the AST parsing, however, when I introduce these 'llvm/IR/*' headers, I got a compiling error... But if I delete these headers it runs well ... """headers #include "llvm/IR/BasicBlock.h" #include "llvm/IR/Constants.h" #include
2018 Aug 07
2
GSoC - Math Aware Search report
Hi All, I created a work product page for GSoC evaluation. I plan to add a couple of sections soon (bit more detail on summary, challenges, Test suite speed up work details). Also, Project plan page is not completed yet. Link: https://trac.xapian.org/wiki/GSoC2018/Maths/Work%20Product Please let me know if you have any suggestion regarding this. Regards, Guruprasad -------------- next part
2020 Aug 08
2
My first real submission with Phabricator
Madhur Amilkanthwar via llvm-dev <llvm-dev at lists.llvm.org>於 2020年8月9日 週日,上午1:53寫道: > Hi Paul, > I hope you have gone through > https://llvm.org/docs/Contributing.html#how-to-submit-a-patch. > > Generally, I would do 'git add' on the new file. 'git diff' should show me > the newly added file. Further, I'd just do 'arc diff' and this should
2020 May 21
2
RFC: Add DWARF support for yaml2obj
On 5/21/20, Adrian Prantl <aprantl at apple.com> wrote: > I think the example looks like it would be really useful for many categories > of testcases! > Will it still be possible to manually specify the .debug_abbrev section when > this is desired after you are done? Yes, I think it works. There are two ways to edit the .debug_abbrev section. i) Edit the "Attr:" and
2016 May 23
0
What's "register pressure set"
Hi Xing, The register pressure sets are basically concepts that tells you how may variables can live in register at the same time. This information is available for two different level of abstraction: per register class and per register unit. The register unit is the basic entity we use to represent a register. Tablegen generates all of that for you, so you do not need to worry about them.
2020 Jul 28
3
Building a single .rst file
Folks, Total newbie here. What is the simplest way to build a single .rst file so that I can look at the generated HTML? I have CMake, Python, and Sphinx installed. ~~ Paul
2020 May 22
2
RFC: Add DWARF support for yaml2obj
I think we have to be careful here. We might want flexibility to say "I want to use a specific class" without having to specify the exact DW_FORM. Sometimes, we might even end up in an ambiguous situation and not get the result we want. For example, in DWARFv4, the DW_AT_high_pc attribute has either a Constant or an Address class, which use completely different forms, but if we have just
2016 Jun 27
0
Why not do machine instruction scheduling in SSA form?
A motivation for scheduling later is that the program representation is closer to the final instruction stream which makes the machine simulation more accurate. If you schedule too early you do not see the instructions produced by phi elimination and the two address fixup pass. LiveIntervals should work on MachineSSA form. If it doesn't you should file a bugzilla ticket with more details. -
2013 Apr 19
4
Spider Plot
Does any one have a sample code for a Spider Plot as attached? Thanks, Xing
2007 Jan 19
2
[Xen-ia64-devel][PATCH] Fix Xen crash when creating VTI in some machines.
Xend will do a hypercall to destory domain when creating VTI guest fail. If "is_vti" not be set at this point, HV will call relinquish_vcpu_resource() which belong to domU. It may try to free a NULL pointer, so dom0 crash. This patch fix it. Signed-off-by, Zhang Xin < xing.z.zhang@intel.com > Good good study,day day up ! ^_^ -Wing(zhang xin) OTC,Intel Corporation