search for: warp

Displaying 20 results from an estimated 484 matches for "warp".

Did you mean: arp
2008 Jun 01
2
Mouse warping, toggle option
One of the nagging issues that has been around for awhile with wine is "mouse warping" In some cases it doesn't place nice with the house environment, in other cases it doesn't play nice with the game, and overall it's a bit of an annoyance. Would it be possible to introduce an option to wine that would allow one to select whether warping is used (maybe a check...
2018 Sep 05
14
[Bug 107829] New: nouveau crash/freeze [MULTIPLE_WARP_ERRORS] warp 3f0009 [ILLEGAL_INSTR_ENCODING]
https://bugs.freedesktop.org/show_bug.cgi?id=107829 Bug ID: 107829 Summary: nouveau crash/freeze [MULTIPLE_WARP_ERRORS] warp 3f0009 [ILLEGAL_INSTR_ENCODING] Product: xorg Version: unspecified Hardware: x86-64 (AMD64) OS: Linux (All) Status: NEW Severity: major Priority: medium Component: Driver/nouvea...
2015 Jan 24
2
[LLVMdev] Proposal: pragma for branch divergence
...the CUDA language and the PTX backend for now, but I believe this addition will benefit OpenCL and its backends too. Background on branch divergenceCUDA programs have a very different execution model for code with branches. A CUDA program is executed by an array of threads broken into groups called warps. A warp typically contains 32 threads, and all the threads in a warp execute instructions in lock-step, i.e., executing the same instruction at any given time. Therefore, if the code contains divergent branches (i.e., threads in a warp do not agree on which path of the branch to take), the warp ha...
2007 Mar 30
2
ANOVA and confidence intervals plot
Dear *, I would like to obtain for each factor of my anova model the "response variable vs factor" plot with means and 95% Tukey HSD intervals. I would appreciate any information on how to do that. Cheers -------------------------------------------------------------------- Max MANFRIN Tel.: +32 (0)2 650 3168 IRIDIA - CoDE, CP 194/6
2015 Jan 24
2
[LLVMdev] [cfe-dev] Proposal: pragma for branch divergence
...t; and the PTX backend for now, but I believe this addition will benefit > OpenCL and its backends too. Background on branch divergenceCUDA programs > have a very different execution model for code with branches. A CUDA > program is executed by an array of threads broken into groups called warps. > A warp typically contains 32 threads, and all the threads in a warp execute > instructions in lock-step, i.e., executing the same instruction at any > given time. Therefore, if the code contains divergent branches (i.e., > threads in a warp do not agree on which path of the branch t...
2018 Oct 13
1
Scroll bar arrows missing and behaviour change
> Hmmm... It works for me on both CentOS 7 (Firefox 60.2.1) and Fedora 28 > (Firefox 62.0.3). > > As per the linked documentation - What happens if you SHIFT-CLICK on the > scroll bar? On my systems I find that SHIFT-CLICK on the scroll bar > produces > the "warp speed" behavior, exactly as expected. > > > https://developer.gnome.org/gtk3/unstable/GtkSettings.html#GtkSettings--gtk-primary-button-warps-slider > > In Firefox 45.4, shift-click reverses the behavior, so it scrolls a page at a time. It ignores the primary warp setting. I als...
2012 Dec 03
3
[Bug 57837] New: nouveau invalid opcode for NVIDIA
...in use: nouveau $ dmesg [ 23.316445] wlan0: associated [ 23.316516] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready [ 29.796733] EXT4-fs (sda3): re-mounted. Opts: errors=remount-ro,commit=0 [ 99.061057] [drm] nouveau 0000:02:00.0: PGRAPH_TRAP_MP_EXEC - TP 0 MP 0: INVALID_OPCODE at 000000 warp 0, opcode ff637893 ff637893 [ 99.061076] [drm] nouveau 0000:02:00.0: PGRAPH - TRAP [ 99.061087] [drm] nouveau 0000:02:00.0: PGRAPH - ch 2 (0x000080d000) subc 7 class 0x8297 mthd 0x15e0 data 0x00000000 [ 99.064749] [drm] nouveau 0000:02:00.0: PGRAPH_TRAP_MP_EXEC - TP 0 MP 0: INVALID_OPCODE at 000000...
2010 Jun 22
1
Warped Text in mtext in a Quartz-Window
Hello, With one procedure, I get a strangely warped text in the mtext-area of a quartz-window, while with an other the text comes out OK - see attached PDF. (Number of Trials is the x-Axis label, which always comes out OK) -------------- next part -------------- A non-text attachment was scrubbed... Name: Warped Text.pdf Type: application/pdf Size...
2007 Aug 15
1
Re: OS/2 Warp and eComStation
I can run OS/2 Warp 4 (no fixpak) as guest in native QEMU (non kqemu). I can also run OS/2 Warp 4 in a domu guest in XEN 3.1 on a Ubuntu 7.04 (Feisty) host. A stripped down eComStation will also work in native QEMU but it will not run in XEN 3.1. When trying to run eComStation in XEN, at boot it will lockup immediat...
2018 Oct 12
2
Scroll bar arrows missing and behaviour change
> > I agree that issue with the scroll bar jumping all over is really > annoying! > It is actually a feature of Gnome and GTK. It can be changed by editing a > file: > > ~/.config/gtk-3.0/settings.ini > > [Settings] > gtk-primary-button-warps-slider=0 > > I also find this behavior annoying. I tried adding this settings file (it didn't exist) and logging out and back in, but Firefox still jumps do the absolute location on the scrollbar. I'm on CentOS 7.3.
2009 Apr 11
2
Labeling points on plot on relative warp scores?
Hi there, I am plotting relative warp scores (equivalent to pca scores) and I want to label (color code and shape) the points by group. I can't figure out how to do this beyond simple plotting. plot(RW1, RW2); Do I need to make vectors of each group and then plot them separately onto the same plot? How do I go about this? Thank...
1999 Jun 30
1
OS/2 Warp Version 4.0
Is anyone running Warp Clients out there. I am having some problems with saving files and such as was wondering if anyone could send me a smb.conf that is configured with OS/2 in mind. I have the Samba server running on AIX and have had great success with Window 95, 98 and NT clients but seem mystified by the OS/2 proble...
2015 Jan 25
2
[LLVMdev] [cfe-dev] Proposal: pragma for branch divergence
...ure which hurts the performance of the compiled code in the presence of divergent branches. On the other hand, I don't want to disable jump threading all together because it is still beneficial for non-divergent branches. As far as I can understand, cbranch.ifnone provides a fast path so that a warp can jump over the region that no threads in the warp ever execute. However, it doesn't help the case where the branches are indeed divergent. I can vaguely imagine consensual branches may help with my issue by speculative optimization. Given a code region that contains branches that may or may...
1997 Dec 06
1
OS/2, DOS LanMan, Amiga and Solaris 2.4 patch for Samba
...> Comments on the patches: what does that code do anyway? > > ------------------------------------------------------------------------ > > IBM Peer bug workaround for smbclient/smbtar > > The original problem description follows: > > I noticed a serious bug in Warp 4 and Warp Connect: they can be crashed by the Samba client (smbclient/SMBCLNT.EXE) over the network! Well, not a complete crash such as a TRAP, but it will bring down the SMB networking part of Warp, "IBM Peer". TCP/IP and IPX both keep running. The bug has been confirmed by IBM and othe...
2005 Sep 06
6
strange behavior of acts_as_taggable
I was testing my models with this new library and I got: >> s.tag "warp" ActiveRecord::StatementInvalid: ERROR: inserción o actualización en la tabla «tags_stories» viola la llave foránea «tags_stories_story_id_fkey» DETAIL: La llave (story_id)=(8) no está presente en la tabla «stories». : INSERT INTO tags_stories ("tag_id", "story_id") VALU...
2008 Jan 29
0
New package: dtw - Dynamic Time Warping
Dear R community, I would like to introduce the package "dtw" for computing Dynamic Time Warping (DTW) alignments and related algorithms on timeseries. The DTW algorithm computes the time axis stretch which optimally maps one timeseries (query) onto another (template); it outputs the resulting cumulative distance between the two inputs, which is frequently used for classification and clust...
2008 Jan 29
0
New package: dtw - Dynamic Time Warping
Dear R community, I would like to introduce the package "dtw" for computing Dynamic Time Warping (DTW) alignments and related algorithms on timeseries. The DTW algorithm computes the time axis stretch which optimally maps one timeseries (query) onto another (template); it outputs the resulting cumulative distance between the two inputs, which is frequently used for classification and clust...
2006 Jul 12
1
DTW - dynamic time warping - and time series in R
Hello, can anybody tell me if there exists functions for DTW in R? I didn't find anything at CRAN's search page... Also any information about packages for time series preprocessing (for pattern matching) would be useful... Thanks a lot, ondra
2007 Jun 30
2
OS/2 Warp 4 Access Issues
Sometime not too long ago, I installed a new security release of samba on my debian box. Shortly after, I realized that my OS/2 Warp 4 box was no longer able to access the shares on my debian box. The OS/2 system is still able to access shares on other (Win9x) machines. I asked around about this issue on an OS/2 list. Although no one there was sure what might have caused it to quit working, they suggested that there was pos...
2015 Aug 21
2
[CUDA/NVPTX] is inlining __syncthreads allowed?
I'm using 7.0. I am attaching the reduced example. nvcc sync.cu -arch=sm_35 -ptx gives // .globl _Z3foov .visible .entry _Z3foov( ) { .reg .pred %p<2>; .reg .s32 %r<3>; mov.u32 %r1, %tid.x; and.b32 %r2, %r1, 1; setp.eq.b32 %p1, %r2, 1; @!%p1 bra BB7_2; bra.uni