search for: reisinger

Displaying 18 results from an estimated 18 matches for "reisinger".

2016 May 18
2
[GSoC 2016] Introduction - "Enabling Polyhedral Optimizations in Julia"
...9;m no html expert :) Best regards, Matthias Am Dienstag, 10. Mai 2016 19:48:21 UTC+2 schrieb vivek pandya: > > > > *Vivek Pandya* > > > On Tue, May 10, 2016 at 11:15 PM, vivek pandya <vivekv... at gmail.com > <javascript:>> wrote: > >> Hello Matthias Reisinger, >> >> It is simple html page that shows simple abstract ( which I have already >> added for all projects as per GSoC page) , link to your read-only proposal, >> blog URL (if you maintain any) , and status reporting interval (if you want >> to follow) and any oth...
2016 May 10
2
[GSoC 2016] Introduction - "Enabling Polyhedral Optimizations in Julia"
Hello Matthias Reisinger, It is simple html page that shows simple abstract ( which I have already added for all projects as per GSoC page) , link to your read-only proposal, blog URL (if you maintain any) , and status reporting interval (if you want to follow) and any other relevant information. You can check out (SVN) r...
2016 May 10
2
[GSoC 2016] Introduction - "Enabling Polyhedral Optimizations in Julia"
> Do you happen to have any plans on reporting your progress publicly? > I will try to make my progress transparent by writing about it on my blog as often as possible and definitely give updates at the mailing lists ( julia-dev <https://groups.google.com/group/julia-dev>, polly-dev and llvm-dev). Also, please submit a patch to llvm.org/SummerOfCode/2016.html to add > some
2016 Aug 04
2
Remove zext-unfolding from InstCombine
...t = xor i8 %a, -1 > %lowBit = and i8 %not, 1 > ret i8 %lowBit > } > > ...because xor with -1 is the canonical 'not' operation? Do we need such a canonicalization in the presence of the above patterns? Best, Matthias > > On Wed, Jul 27, 2016 at 8:13 AM, Matthias Reisinger <matthias.j.reisinger at gmail.com> wrote: > Hi Sanjay, > > thank you a lot for your answer. I understand that in your examples it is desirable that `foo` and `goo` are canonicalized to the same IR, i.e., something like `@goo`. However, I still have a few open questions, but please...
2008 Nov 04
2
Problem: Sweave and math environments
...ents! Best, Christian PS: I tried to replace all $ signs by \$, but this did not work either and caused many LaTex errors. -- Ph.D. Candidate Graduate School of Social Sciences FVG-West Wiener Stra?e/Ecke Celsiusstr. 28334 Bremen Germany Tel: +49 (0)421 218 4156 http://www.gsss.uni-bremen.de creisinger at gsss.uni-bremen.de
2016 Jul 27
2
Remove zext-unfolding from InstCombine
...%xor > } > > The 2nd function is the better IR (one less logic op), so you need to add a transform to produce that and get rid of the existing limitation. Any InstCombine folds that rely on bypassing an earlier fold are wrong IMO. > > > On Thu, Jul 21, 2016 at 6:07 AM, Matthias Reisinger via llvm-dev <llvm-dev at lists.llvm.org> wrote: > Hi all, > > I have a question regarding a transformation that is carried out in InstCombine, which has been introduced by r48715. It unfolds expressions of the form `zext(or(icmp, (icmp)))` to `or(zext(icmp), zext(icmp)))` to expose...
2016 Jun 22
2
[GSoC 2016] Enabling Polyhedral Optimizations in Julia - Midterm Report
...use Polly in the presence of Julia's bound-checks. Best regards, Matthias [1] https://docs.google.com/document/d/1s5mmSW965qmOEbHiM3O4XFz-Vd7cy9TxX9RQaTK_SQo/edit?usp=sharing [2] https://github.com/JuliaLang/julia/pull/16531 [3] https://github.com/JuliaLang/julia/pull/16726 [4] http://www.mreisinger.com/?p=43 [5] http://www.mreisinger.com/?p=137 [6] https://llvm.org/bugs/show_bug.cgi?id=28126 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20160621/d03c63a1/attachment-0001.html>
2003 Jul 28
4
Offering an Asterisk Documentation and FAQ Portal
Hi, I have resources available to host a portal specifically for the Asterisk system, to help correlate documentation, FAQ's and How To I am new to Asterisk, and my hardest work is in locating information on using or configuring the software. Would Mark, John or any of you feel this would be of benefit to host? I am offering a PHP-NUKE portal for this, (Unless you know of a better
2017 Sep 04
2
llvm-dev Digest, Vol 159, Issue 2
...EugeneZelenko, George Burgess IV, Hans Wennborg, Hongbin Zheng, Huihui Zhang,Jakub Kuderski, Johannes Doerfert, Justin Bogner, Karthik Senthil, LoganChien, Lawrence Hu, Mandeep Singh Grang, Matt Arsenault, MatthewSimpson, Mehdi Amini, Micah Villmow, Michael Kruse, Matthias Reisinger,Maximilian Falkenstein, Nakamura Takumi, Nandini Singhal, NicolasBonfante, Patrik Hägglund, Paul Robinson, Philip Pfaffe, Philipp Schaad,Peter Conn, Pratik Bhatu, Rafael Espindola, Raghesh Aloor, ReidKleckner, Roal Jordans, Richard Membarth, Roman Gareev, SaleemAbdulrasool, Same...
2016 May 10
2
[GSoC 2016] Introduction - "Enabling Polyhedral Optimizations in Julia"
...of input so feel free to comment on this, post suggestions and give advice. [1] https://docs.google.com/document/d/1s5mmSW965qmOEbHiM3O4XFz-Vd7cy9TxX9RQaTK_SQo/edit?usp=sharing <https://docs.google.com/document/d/1s5mmSW965qmOEbHiM3O4XFz-Vd7cy9TxX9RQaTK_SQo/edit?usp=sharing> [2] http://www.mreisinger.com <http://www.mreisinger.com/> [3] https://groups.google.com/group/julia-dev <https://groups.google.com/group/julia-dev> [4] https://gist.github.com/MatthiasJReisinger/18c08b18903d7729b5b3 <https://gist.github.com/MatthiasJReisinger/18c08b18903d7729b5b3> [5] https://github.com/J...
2016 Jul 21
2
Remove zext-unfolding from InstCombine
Hi all, I have a question regarding a transformation that is carried out in InstCombine, which has been introduced by r48715. It unfolds expressions of the form `zext(or(icmp, (icmp)))` to `or(zext(icmp), zext(icmp)))` to expose pairs of `zext(icmp)`. In a subsequent iteration these `zext(icmp)` pairs could then (possibly) be optimized by another optimization (which has already been there before
2017 Sep 04
2
[RFC] Polly Status and Integration
...Hans Wennborg, Hongbin Zheng, Huihui > > Zhang,Jakub Kuderski, Johannes Doerfert, Justin Bogner, Karthik Senthil, > > LoganChien, Lawrence Hu, Mandeep Singh Grang, Matt Arsenault, > > MatthewSimpson, Mehdi Amini, Micah Villmow, Michael Kruse, Matthias > > Reisinger,Maximilian Falkenstein, Nakamura Takumi, Nandini Singhal, > > NicolasBonfante, Patrik Hägglund, Paul Robinson, Philip Pfaffe, Philipp > > Schaad,Peter Conn, Pratik Bhatu, Rafael Espindola, Raghesh Aloor, > > ReidKleckner, Roal Jordans, Richard Membarth, Roman Gareev...
2017 Sep 13
3
[RFC] Polly Status and Integration
..., Eugene Zelenko, > George Burgess IV, Hans Wennborg, Hongbin Zheng, Huihui Zhang, Jakub > Kuderski, Johannes Doerfert, Justin Bogner, Karthik Senthil, Logan Chien, > Lawrence Hu, Mandeep Singh Grang, Matt Arsenault, Matthew Simpson, Mehdi > Amini, Micah Villmow, Michael Kruse, Matthias Reisinger, Maximilian > Falkenstein, Nakamura Takumi, Nandini Singhal, Nicolas Bonfante, Patrik > Hägglund, Paul Robinson, Philip Pfaffe, Philipp Schaad, Peter Conn, Pratik > Bhatu, Rafael Espindola, Raghesh Aloor, Reid Kleckner, Roal Jordans, > Richard Membarth, Roman Gareev, Saleem Abdulrasool,...
2017 Sep 13
0
[RFC] Polly Status and Integration
...eorge Burgess IV, Hans Wennborg, Hongbin Zheng, Huihui Zhang, >>> Jakub Kuderski, Johannes Doerfert, Justin Bogner, Karthik Senthil, Logan >>> Chien, Lawrence Hu, Mandeep Singh Grang, Matt Arsenault, Matthew >>> Simpson, Mehdi Amini, Micah Villmow, Michael Kruse, Matthias Reisinger, >>> Maximilian Falkenstein, Nakamura Takumi, Nandini Singhal, Nicolas >>> Bonfante, Patrik Hägglund, Paul Robinson, Philip Pfaffe, Philipp Schaad, >>> Peter Conn, Pratik Bhatu, Rafael Espindola, Raghesh Aloor, Reid >>> Kleckner, Roal Jordans, Richard Membarth, R...
2017 Sep 12
5
[RFC] Polly Status and Integration
...George Burgess IV, Hans Wennborg, >> Hongbin Zheng, Huihui Zhang,Jakub Kuderski, Johannes Doerfert, Justin >> Bogner, Karthik Senthil, LoganChien, Lawrence Hu, Mandeep Singh >> Grang, Matt Arsenault, MatthewSimpson, Mehdi Amini, Micah Villmow, >> Michael Kruse, Matthias Reisinger,Maximilian Falkenstein, Nakamura >> Takumi, Nandini Singhal, NicolasBonfante, Patrik Hägglund, Paul >> Robinson, Philip Pfaffe, Philipp Schaad,Peter Conn, Pratik Bhatu, >> Rafael Espindola, Raghesh Aloor, ReidKleckner, Roal Jordans, Richard >> Membarth, Roman Gareev, Sal...
2017 Sep 01
10
[RFC] Polly Status and Integration
...Smith, Eli Friedman, EugeneZelenko, George Burgess IV, Hans Wennborg, Hongbin Zheng, Huihui Zhang,Jakub Kuderski, Johannes Doerfert, Justin Bogner, Karthik Senthil, LoganChien, Lawrence Hu, Mandeep Singh Grang, Matt Arsenault, MatthewSimpson, Mehdi Amini, Micah Villmow, Michael Kruse, Matthias Reisinger,Maximilian Falkenstein, Nakamura Takumi, Nandini Singhal, NicolasBonfante, Patrik Hägglund, Paul Robinson, Philip Pfaffe, Philipp Schaad,Peter Conn, Pratik Bhatu, Rafael Espindola, Raghesh Aloor, ReidKleckner, Roal Jordans, Richard Membarth, Roman Gareev, SaleemAbdulrasool, Sameer Sahasrabuddhe...
2017 Sep 20
0
[RFC] Polly Status and Integration
...George Burgess IV, Hans Wennborg, Hongbin > > Zheng, Huihui Zhang,Jakub Kuderski, Johannes Doerfert, Justin Bogner, > > Karthik Senthil, LoganChien, Lawrence Hu, Mandeep Singh Grang, Matt > > Arsenault, MatthewSimpson, Mehdi Amini, Micah Villmow, Michael Kruse, > > Matthias Reisinger,Maximilian Falkenstein, Nakamura Takumi, Nandini > > Singhal, NicolasBonfante, Patrik Hägglund, Paul Robinson, Philip > > Pfaffe, Philipp Schaad,Peter Conn, Pratik Bhatu, Rafael Espindola, > > Raghesh Aloor, ReidKleckner, Roal Jordans, Richard Membarth, Roman > > Gareev, Sal...
2017 Sep 20
0
[RFC] Polly Status and Integration
...> EugeneZelenko, George Burgess IV, Hans Wennborg, Hongbin Zheng, Huihui > Zhang,Jakub Kuderski, Johannes Doerfert, Justin Bogner, Karthik Senthil, > LoganChien, Lawrence Hu, Mandeep Singh Grang, Matt Arsenault, > MatthewSimpson, Mehdi Amini, Micah Villmow, Michael Kruse, Matthias > Reisinger,Maximilian Falkenstein, Nakamura Takumi, Nandini Singhal, > NicolasBonfante, Patrik Hägglund, Paul Robinson, Philip Pfaffe, Philipp > Schaad,Peter Conn, Pratik Bhatu, Rafael Espindola, Raghesh Aloor, > ReidKleckner, Roal Jordans, Richard Membarth, Roman Gareev, > SaleemAbdulrasool, Same...