search for: chapter2

Displaying 20 results from an estimated 22 matches for "chapter2".

Did you mean: chapter
2019 Aug 10
3
ORC v2 question
...ing some problems. I am using LLVM 8.0.1. I updated my ORC v1 implementation from 6.0 to 8.0 based on Kaleidoscope example (i.e. using Legacy classes) and that works fine. Now I am trying out ORC v2 apis, based on https://github.com/llvm-mirror/llvm/blob/master/examples/Kaleidoscope/BuildingAJIT/Chapter2/KaleidoscopeJIT.h. I have got it to compile and build. But looks like my compiled code is not being optimized at all. For optimization I am using the PassManagerBuilder class to setup the passes. I use OptLevel = 2. This works perfectly with ORC v1 apis, but with ORC v2 I am not sure what is happ...
2019 Nov 18
2
Crash using exceptions
...;t deal with LLVM. I noticed that llvm-config --cxxflags includes the -fno-exceptions flag. Do I need to throw no exceptions whatsoever in my application to use LLVM JIT? As a minimal example, I modified the code in https://github.com/llvm-mirror/llvm/tree/master/examples/Kaleidoscope/BuildingAJIT/Chapter2. In toy.cpp, I update LogError to throw an exception: std::unique_ptr<ExprAST> LogError(const char *Str) { fprintf(stderr, "Error: %s\n", Str); throw std::runtime_error(""); } and I catch that exception in MainLoop: static void MainLoop() { while (true) { fpri...
2019 Aug 10
2
ORC v2 question
...gt;> I updated my ORC v1 implementation from 6.0 to 8.0 based on >> Kaleidoscope example (i.e. using Legacy classes) and that works fine. >> >> Now I am trying out ORC v2 apis, based on >> https://github.com/llvm-mirror/llvm/blob/master/examples/Kaleidoscope/BuildingAJIT/Chapter2/KaleidoscopeJIT.h. >> >> I have got it to compile and build. >> But looks like my compiled code is not being optimized at all. >> >> For optimization I am using the PassManagerBuilder class to setup the >> passes. I use OptLevel = 2. This works perfectly with ORC...
2012 Sep 10
1
[LLVMdev] OCaml bindings broken in trunk
On Sep 10, 2012, at 3:34 PM, Bob Wilson wrote: > Didn't Benjamin already fix this in svn 163502? Looks that way.. > On Sep 10, 2012, at 10:08 AM, Chad Rosier <mcrosier at apple.com> wrote: > >> >> On Sep 7, 2012, at 3:40 PM, Nuno Lopes wrote: >> >>> The linking issue is a recent breakage. >>> I traced it back to r163175. Basically
2008 Dec 30
7
[Xen-research] ISO test Downloads Availability ?
Hi, I seem to remember that there used to be ISO downloads of Xen available, for people wanting to give it an easy way for a test drive, and to submit (automated) feedback on which machines and configurations Xen ran (in)correctly. However, I do not seem to be able to find these ISO images for download at Xen.org anymore. Has the project stopped making these useful test images - and if so, why ?
2008 Dec 30
7
[Xen-research] ISO test Downloads Availability ?
Hi, I seem to remember that there used to be ISO downloads of Xen available, for people wanting to give it an easy way for a test drive, and to submit (automated) feedback on which machines and configurations Xen ran (in)correctly. However, I do not seem to be able to find these ISO images for download at Xen.org anymore. Has the project stopped making these useful test images - and if so, why ?
2005 Mar 07
0
chan_sip not 100% RFC3665 compliant - re-REGISTERs fail.
...C3665 re-registration procedure. This problem occured for devices with more than one FXS port with a set non-empty password. Those gateway attempt to re-register after the initial register timeout period expires fully compliant with RFC3665, clause 2.2 (http://www.zvon.org/tmRFC/RFC3665/Output/chapter2.html#sub2), but asterisk fails to authenticate them. The 1st FXS port of the device always registers successfuly (although still uses same RFC3665, clause 2.2 procedure), but the remainder fail miserably. Using an account/username with an empty password for the affected ports fixes the problem...
2012 May 15
1
Lattice: Add abline to Single Value qqmath() Plot
The data are not normally distributed when untransformed and I'm trying various transformations to see if any would be appropriate to use. The lattice book (fig. 3.10) shows a 2-sample Q-Q plot with an abline but the code for the figure does not include the line. I'd appreciate a pointer to a reference on how to add an abline to a one-sample qqmath() plot in lattice. Rich
2018 Sep 26
4
[RFC] Proposal: llvm-tapi, adding YAML/stub generation for ELF linking support
...technical standpoint, these are not mutually exclusive. This step is a ways down the road, but is definitely a high-priority goal. I’m interested to hear your thoughts and feedback on this. Best, Armando [1] https://github.com/ributzka/tapi [2] https://docs.oracle.com/cd/E23824_01/html/819-0690/chapter2-22.html [3] https://docs.bazel.build/versions/master/user-manual.html#flag--interface_shared_objects [4] https://fuchsia.googlesource.com/zircon/+/master/scripts/shlib-symbols [5] https://fuchsia.googlesource.com/zircon/+/master/scripts/dso-abi.h [6] https://sourceware.org/libabigail/ [7] https://s...
2005 Mar 07
1
chan_sip not 100% RFC3665 compliant - re-REGISTERsfail.
asterisk-users-bounces@lists.digium.com wrote: > Is there anyone else with the same problem? Yes, we've seen the same problem. We have found a work around, but I'm unable to to look into it today. -- Andreas Sikkema Rits tele.com Van Vollenhovenstraat 3 3016 BE Rotterdam t: +31 (0)10 2245544 f: +31 (0)10 2245540
2018 Sep 26
2
[RFC] Proposal: llvm-tapi, adding YAML/stub generation for ELF linking support
...>> I’m interested to hear your thoughts and feedback on this. >> >> >> >> Best, >> >> Armando >> >> >> >> >> >> [1] https://github.com/ributzka/tapi >> >> [2] https://docs.oracle.com/cd/E23824_01/html/819-0690/chapter2-22.html >> >> [3] https://docs.bazel.build/versions/master/user-manual.html#flag--interface_shared_objects >> >> [4] https://fuchsia.googlesource.com/zircon/+/master/scripts/shlib-symbols >> >> [5] https://fuchsia.googlesource.com/zircon/+/master/scripts/dso-abi....
2010 Jul 21
1
[LLVMdev] Is there a guide to LLVM's components?
...bonacci\Fibonacci.vcproj" FileCheck, "utils\FileCheck\FileCheck.vcproj" HowToUseJIT, "examples\HowToUseJIT\HowToUseJIT.vcproj" INSTALL, ".\INSTALL.vcproj" Kaleidoscope-Ch2, "examples\Kaleidoscope\Chapter2\Kaleidoscope-Ch2.vcproj" Kaleidoscope-Ch3, "examples\Kaleidoscope\Chapter3\Kaleidoscope-Ch3.vcproj" Kaleidoscope-Ch4, "examples\Kaleidoscope\Chapter4\Kaleidoscope-Ch4.vcproj" Kaleidoscope-Ch5, "examples\Kaleidoscope\Chapt...
2018 Dec 31
0
[RFC] Proposal: llvm-tapi, adding YAML/stub generation for ELF linking support
...;br /> > >>><br /> > >>><br /> > >>> [1] <a href="https://github.com/ributzka/tapi">https://github.com/ributzka/tapi</a><br /> > >>> [2] <a href="https://docs.oracle.com/cd/E23824_01/html/819-0690/chapter2-22.html">https://docs.oracle.com/cd/E23824_01/html/819-0690/chapter2-22.html</a><br /> > >>> [3] <a href="https://docs.bazel.build/versions/master/user-manual.html#flag--interface_shared_objects">https://docs.bazel.build/versions/master/user-manual.h...
2018 Sep 27
4
[RFC] Proposal: llvm-tapi, adding YAML/stub generation for ELF linking support
...s definitely a > > high-priority goal. > > > > I’m interested to hear your thoughts and feedback on this. > > > > Best, > > Armando > > > > > > [1] https://github.com/ributzka/tapi > > [2] https://docs.oracle.com/cd/E23824_01/html/819-0690/chapter2-22.html > > [3] https://docs.bazel.build/versions/master/user-manual.html#flag--interface_shared_objects > > [4] https://fuchsia.googlesource.com/zircon/+/master/scripts/shlib-symbols > > [5] https://fuchsia.googlesource.com/zircon/+/master/scripts/dso-abi.h > > [6] https://...
2018 Sep 26
2
[RFC] Proposal: llvm-tapi, adding YAML/stub generation for ELF linking support
...oad, but is definitely a >> high-priority goal. >> >> I’m interested to hear your thoughts and feedback on this. >> >> Best, >> Armando >> >> >> [1] https://github.com/ributzka/tapi >> [2] https://docs.oracle.com/cd/E23824_01/html/819-0690/chapter2-22.html >> [3] https://docs.bazel.build/versions/master/user-manual.html#flag--interface_shared_objects >> [4] https://fuchsia.googlesource.com/zircon/+/master/scripts/shlib-symbols >> [5] https://fuchsia.googlesource.com/zircon/+/master/scripts/dso-abi.h >> [6] https://sour...
2018 Sep 28
2
[RFC] Proposal: llvm-tapi, adding YAML/stub generation for ELF linking support
...gt; I’m interested to hear your thoughts and feedback on this. > >>> > >>> Best, > >>> Armando > >>> > >>> > >>> [1] https://github.com/ributzka/tapi > >>> [2] > https://docs.oracle.com/cd/E23824_01/html/819-0690/chapter2-22.html > >>> [3] > https://docs.bazel.build/versions/master/user-manual.html#flag--interface_shared_objects > >>> [4] > https://fuchsia.googlesource.com/zircon/+/master/scripts/shlib-symbols > >>> [5] https://fuchsia.googlesource.com/zircon/+/master/script...
2012 Jan 06
4
Enhanced Podcasts with Ogg Vorbis (Chapter Marks)
...ndroid has no ogm support AFAIK So maybe I did something wrong here? Or does anyone know a player where OGM chapters work? 3) Concatenating ogg files This method was described here: [6]. Each chapter must be one ogg vorbis file and then they are concatenated in one big file: $ cat chapter1.ogg chapter2.ogg chapter3.ogg > all_chapters.ogg PROS: - this method is fully ogg vorbis compatible, cheap hardware players also play these files - foobar lists the individual files and it's able to seek CONS: - I found no other player so far which is able to display these "chapters" - IMHO...
2018 Sep 27
2
[RFC] Proposal: llvm-tapi, adding YAML/stub generation for ELF linking support
...erested to hear your thoughts and feedback on this. >> > > >> > > Best, >> > > Armando >> > > >> > > >> > > [1] https://github.com/ributzka/tapi >> > > [2] >> https://docs.oracle.com/cd/E23824_01/html/819-0690/chapter2-22.html >> > > [3] >> https://docs.bazel.build/versions/master/user-manual.html#flag--interface_shared_objects >> > > [4] >> https://fuchsia.googlesource.com/zircon/+/master/scripts/shlib-symbols >> > > [5] >> https://fuchsia.googlesource.com/zi...
2010 Jul 22
2
[LLVMdev] Is there a guide to LLVM's components?
...bonacci\Fibonacci.vcproj" FileCheck, "utils\FileCheck\FileCheck.vcproj" HowToUseJIT, "examples\HowToUseJIT\HowToUseJIT.vcproj" INSTALL, ".\INSTALL.vcproj" Kaleidoscope-Ch2, "examples\Kaleidoscope\Chapter2\Kaleidoscope-Ch2.vcproj" Kaleidoscope-Ch3, "examples\Kaleidoscope\Chapter3\Kaleidoscope-Ch3.vcproj" Kaleidoscope-Ch4, "examples\Kaleidoscope\Chapter4\Kaleidoscope-Ch4.vcproj" Kaleidoscope-Ch5, "examples\Kaleidoscope\Chapt...
2013 Mar 06
12
if dentro de for
Buenas, Me encuentro con el mismo problema, de que me dice que el argumento del if no es un "valor ausente donde TRUE/FALSE es necesario" Este es mi codigo de pruebas. readseq <- "aaaaaaaaaaa", "aaa", "aa") auxiliar <- count(readseq[j],i+2) aux_a <- auxiliar["listaa"] if(aux_a > 0){ matrizgraf3[i][k] = matrizgraf3[i][k] + 1 listaa