search for: nyx

Displaying 20 results from an estimated 98 matches for "nyx".

Did you mean: nx
2017 Dec 30
24
[Bug 104421] New: System freeze on wayland with nouveau on NV137 (GP107)
...1.19.5-1.fc27 see also: https://bugzilla.redhat.com/show_bug.cgi?id=1529854 Graphics: Card: NVIDIA GP107 [GeForce GTX 1050 Ti] Display Server: X.org 1.19.5 drivers: modesetting,fbdev,vesa tty size: 211x52 Advanced Data: N/A for root out of X One freeze: Dec 30 11:58:57 nyx kernel: nouveau 0000:23:00.0: disp: 0x000061ec[0]: INIT_GENERIC_CONDITON: unknown 0x07 Dec 30 11:59:13 nyx kernel: nouveau 0000:23:00.0: disp: 0x000061ec[0]: INIT_GENERIC_CONDITON: unknown 0x07 Dec 30 12:02:53 nyx kernel: usb 1-4: USB disconnect, device number 4 Dec 30 12:03:00 nyx kernel: usb usb1...
2001 Aug 14
7
Pitch shift with RC2
I've just installed RC2 and I'm very excited about the quality. It's so much better than MP3. This is the first version I've used since I just found out about Ogg Vorbis. I did notice that very high frequencies seem to be missing but since not many people can hear much above 18 KHz it's not much of an issue. I suppose this resolves the hiss problem so prevalent in MP3.
2001 Nov 20
2
rename file1 -> file2: No such file or directory
I'm rsyncing from an linux box to a win2k box with a precompiled version of rsync for win2k. durring the procces he gives me a lotte of the following errors (with different filenames): rename realother/Maildir/cur/.1005882149.8001_0.nyx.wildape,S=3080:2,.001002 -> realother/Maildir/cur/1005882149.8001_0.nyx.wildape,S=3080:2, : No such file or directory I user the command: rsync -cru pietje@host1:/rcd/ /lcd any Ideas what is the problem? thx Willem
2009 Mar 10
2
[LLVMdev] C++ Exception Handling Problem
Duncan Sands wrote: > > Hi Nyx, > >> I'm in the process of creating a JIT and I've run into a problem with >> exception handling. The situation I'm in is that my program will JIT >> functions, which will call native C++ functions (part of the run-time >> support). These native functions ca...
2009 Mar 14
3
[LLVMdev] Strange LLVM Crash
Nyx wrote: > The linkage type is set to external, I have little code snippet I use to > register those native functions in the first post of this topic. The global > DCE pass deletes the unused native functions when run. I commented it out > for now... Can you make this happen by writing a...
2009 Mar 15
0
[LLVMdev] Strange LLVM Crash
...o. I disabled it for now since I don't want the native functions to get eliminated, and am currently not using any global variables. By the way, is there any way to have the pass managers run its passes on a single function, instead of a whole module? - Maxime Nick Lewycky wrote: > > Nyx wrote: >> The linkage type is set to external, I have little code snippet I use to >> register those native functions in the first post of this topic. The >> global >> DCE pass deletes the unused native functions when run. I commented it out >> for now... > > Ca...
2009 Mar 14
2
[LLVMdev] Strange LLVM Crash
Nyx wrote: > Ok, well, I seem to have pinpointed the cause of the problem more accurately. > I'm running some optimization passes on my module after I compile each > function in my scripting language (functions can be compiled at various > times, when scripts are loaded). Now it seems t...
2009 Mar 15
2
[LLVMdev] Strange LLVM Crash
On Mar 14, 2009, at 5:47 PM, Nyx wrote: > By the way, is there any way to have the pass managers run its > passes on a > single function, instead of a whole module? Yes, and this is what I'd suggest since it's quite a bit faster. Basically you'd use a function pass manager there are some passes which a...
2005 Aug 11
3
question on creating a new logical variable
I have two variables. A <- rep(c(1:9), 2) B <- rep(c(2:10),2) -- Renuka Sane http://www.nyx.net/~rsane [[alternative HTML version deleted]]
2009 Jun 18
2
[LLVMdev] Explicitly Freeing Allocas
That sounds rather cumbersome, is there no simpler way to get the actual size of a struct? John Criswell wrote: > > Nyx wrote: >> Hello, >> >> I would just like to ask if it's possible to explicitly free allocas. >> This >> is because I need to call functions that take structs of different sizes >> as >> input, (possibly inside of loops) and I would rather avoid a stack...
2009 Jun 18
0
[LLVMdev] Explicitly Freeing Allocas
In the TargetData class (available from you ExecutionEngine), you have some informations available (such as StructLayout...). On Thu, Jun 18, 2009 at 5:08 PM, Nyx <mcheva at cs.mcgill.ca> wrote: > > That sounds rather cumbersome, is there no simpler way to get the actual > size > of a struct? > > > John Criswell wrote: > > > > Nyx wrote: > >> Hello, > >> > >> I would just like to ask if it...
2013 Jan 29
6
[Bug 60020] New: Resuming Dell Precision M70 crashes
...Bug ID: 60020 Assignee: nouveau at lists.freedesktop.org Summary: Resuming Dell Precision M70 crashes QA Contact: xorg-team at lists.x.org Severity: normal Classification: Unclassified OS: Linux (All) Reporter: rcbixler at nyx.net Hardware: x86 (IA32) Status: NEW Version: git Component: Driver/nouveau Product: xorg Created attachment 73830 --> https://bugs.freedesktop.org/attachment.cgi?id=73830&action=edit dmesg output - first bootup I am running Debian whe...
2009 Mar 16
2
[LLVMdev] Strange LLVM Crash
On Mar 15, 2009, at 7:55 AM, Nyx wrote: > > Is there a webpage documenting these function passes? Here's some: http://llvm.org/docs/WritingAnLLVMPass.html#FunctionPass You can also look in llvm/lib/Transforms/Scalar for runOnFunction () > Which ones should I run > to maximize performance? There's no right...
2009 Mar 30
1
[LLVMdev] JIT Optimization Levels?
...ected it to run faster as I was eliminating a call to a C++ function by generating the LLVM IR for what I wanted to do directly, essentially inlining the code for the "plus" operator into the code I was generating/JITing. Evan Cheng-2 wrote: > > > On Mar 27, 2009, at 2:47 PM, Nyx wrote: > >> >> Hello, >> >> Is there a way to control how optimized the x86 code generated by >> the JIT >> is? I mean the actual x86 code, not the llvm IR (I know about those >> optimization passes). I would like to make it as optimized as >>...
2009 Jun 18
5
[LLVMdev] Explicitly Freeing Allocas
Hello, I would just like to ask if it's possible to explicitly free allocas. This is because I need to call functions that take structs of different sizes as input, (possibly inside of loops) and I would rather avoid a stack overflow. If this is not possible, an alternate solution would be for me to allocate an array of bytes larger than all the struct types I may be using, and cast that
2009 Mar 10
4
[LLVMdev] C++ Exception Handling Problem
Hello, I'm in the process of creating a JIT and I've run into a problem with exception handling. The situation I'm in is that my program will JIT functions, which will call native C++ functions (part of the run-time support). These native functions can throw exceptions. However, I don't actually want to handle these exceptions in the JITted functions. There are already try/catch
2009 Mar 14
0
[LLVMdev] Strange LLVM Crash
The linkage type is set to external, I have little code snippet I use to register those native functions in the first post of this topic. The global DCE pass deletes the unused native functions when run. I commented it out for now... Nick Lewycky wrote: > > Nyx wrote: >> Ok, well, I seem to have pinpointed the cause of the problem more >> accurately. >> I'm running some optimization passes on my module after I compile each >> function in my scripting language (functions can be compiled at various >> times, when scripts ar...
2009 Jun 18
1
[LLVMdev] Explicitly Freeing Allocas
...nBytes() method from StructLayout not take the alignment into account? - Max Olivier Meurant wrote: > > In the TargetData class (available from you ExecutionEngine), you have > some > informations available (such as StructLayout...). > > > On Thu, Jun 18, 2009 at 5:08 PM, Nyx <mcheva at cs.mcgill.ca> wrote: > >> >> That sounds rather cumbersome, is there no simpler way to get the actual >> size >> of a struct? >> >> >> John Criswell wrote: >> > >> > Nyx wrote: >> >> Hello, >> >&gt...
2009 Mar 14
5
[LLVMdev] Strange LLVM Crash
I'm implementing a JIT and getting some strange crashes. I'm unsure exactly what's causing them, but it seems to occur when I call the getReturnType() method on some LLVM function objects. More precisely, I'm registering some native C++ functions as LLVM functions through the addGlobalMapping method of an execution engine object. I then keep a pointer to those LLVM function
2005 Aug 02
5
question on graphs and finding area under a curve
...e will be some space between the edge of the x-axis and where 0 is placed. If I want 0 on the edge, how do I do it in R? Area under the curve: I have a 45 degree line and a curve above or below it. Is there a way in R to find the area between the two? Thanks, Renuka -- Renuka Sane http://www.nyx.net/~rsane [[alternative HTML version deleted]]