Windows Advanced Rasterization Platform

learn more… | top users | synonyms

1
vote
0answers
56 views
+50

Unwanted Warp effect drawing text on path android

I do some tests on drawing text on path. I made a background picture by setting bitmap to canvas. Then, I draw text on path to canvas, rotated by matrix. I have to shorten the code, I will only post ...
-3
votes
1answer
42 views

what's the difference between a thread in a block and a warp(32 threads)?

I have written a program for the string matching test,to test the performance vs cpu. I just call the kernel by <1,1>,one block which contains one thread, the time is 430ms, and then I use one ...
0
votes
0answers
98 views

How to warp a jpg image using homography

Hi I am working on creating a panorama with two images. Here is the link that I am using as a guideline to do this. ...
0
votes
1answer
98 views

About Nvidia visual profiler, what does warp efficiency mean?

I mean the exact definition, why the Nvidia profiler always tell me that my codes have very poor warp efficiency due to branch divegence within a warp in SM3.5? My code have avoided branch within a ...
1
vote
0answers
125 views

Image Distortion in android

How to implement image distortion or image warp by dragging on the screen in android? I am new to android and I want to make an app like "Photo warp" or "face changer" which distort the image by ...
0
votes
2answers
108 views

copy to the shared memory in cuda

In CUDA programming, if we want to use shared memory, we need to bring the data from global memory to shared memory. Threads are used for transferring such data. I read somewhere (in online ...
2
votes
1answer
55 views

Anyone know the mechanism of warp retirement in nvidia products(Kepler)?

I am talking about nvidia GPUs with compute capability 3.5 (GK110): On each GPU core, there are at most 64 active warps, how the hardware handles warp retirements? can warps from different grid ...
2
votes
2answers
79 views

About warp and threads

My understanding is that warp is a group of threads that defined at runtime through the task schedueler, one performance critical part of CUDA is the diveragence of threads within a warp, is there a ...
0
votes
0answers
77 views

warp tls bug in haskell 7.6.2 under linux [closed]

When I use openssl stunnel it works but when I use the following code it gives me errors like send: resource vanished (Broken pipe) Error_EOF Error_Packet "partial packet: expecting 16416 bytes, got: ...
0
votes
3answers
143 views

Extract a part of UIImageView

I was wondering if it's possible to "extract" a part of UIImageView. For example, I select using Warp Affine a part of the UIImageView and I know the selected part frame. like in this image: Is ...
1
vote
0answers
365 views

How Can I Perform a Perspective Transform Using a Homography Matrix (3x3) in JavaCV?

I have been trying for some time now to take an image of a pool table from an arbitrary angle, locate four coordinate pairs (x,y) of the corners, and rotate/warp the image such that the resulting ...
1
vote
1answer
72 views

Easiest way to handle OPTIONS method?

I'm writing a client for my Yesod JSON server in angular.js. When examining the header traffic, it appears that Chrome is sending an OPTIONS method, which my handler rejects. Investigation suggests ...
2
votes
2answers
58 views

Trouble running Warp, on WAI, in Windows

I've written a simple Hello World application for (Warp) on (Wai). It works fine in Ubuntu Linux, as do more complicated apps. But I can't even get this Hello World app to run in Windows. I'm using ...
0
votes
1answer
128 views

CUDA warp scheduling: another warp from the current block or a warp from another block?

When a running warp on a SM is stalled, another warp must be scheduled on the SM to exchange the stalled one to cover latency. But is the substitute from the same block as the stalled warp or it must ...
1
vote
0answers
101 views

Android-OpenCV Warp ROI

How can I warp a rectangular extracted ROI so that it fills the entire preview keeping proportions? I extracted a rectangular from the camera source image (Opencv Mat) and I saved into another Mat. ...
1
vote
1answer
122 views

Lower Arc effect on live type with CSS

I'm wondering if this effect (http://igdaloff.com/mission.jpg) is possible with CSS. I know you can arc entire letters, but curious if it's possible to keep the top of the word flat while arcing just ...
5
votes
2answers
499 views

CUDA - why is warp based parallel reduction slower?

I had the idea about a warp based parallel reduction since all threads of a warp are in sync by definition. So the idea was that the input data can be reduced by factor 64 (each thread reduces two ...
0
votes
1answer
303 views

SlimDX Warp Device using KeyedMutex

I use Direct2D with DirectX11 via KeyedMutex. Everything works great if I am using a Hardware device. As soon as I default to Warp device I have a problem when I go to create a Texture2D object, I ...
1
vote
1answer
264 views

library to warp text on HTML5 canvas similar to csswarp on DOM

I want to warp text on HTML Canvas around Bezeir curves and Circles. CSSWarp library does that using CSS3 on DOM. I am looking for a library which does the same on HTML canvas. I googled in vain. Did ...
0
votes
1answer
313 views

find orientation of pixel patch in affine transformed image with respect to original reference

In part of my project I need to compute orientation of a patch in an affine transformed image. Now my problem is that I don't know how can I find this computed orientation with respect to original ...
0
votes
1answer
51 views

(SOLVED)Can Warp in yesod used to host CGI application?

An old python CGI application is now running under ocsigen with cgimod extension. Whether or not warp support CGI application just by some configuration ? Any suggestion is appreciated!
0
votes
0answers
193 views

Wrap something inside a canvas like Photoshop Free Transform > Warp

I'm planning on building some fancy notebook page tear animation effect with HTML5 Canvas. I'm not new to Javascript, though I'm new to HTML5 Canvas. It doesn't seem complicated at all. After browsing ...
1
vote
1answer
70 views

Which is better, the atomic's competition between: threads of the single Warp or threads of different Warps?

Which is better, the atomic's competition (concurrency) between threads of the single Warp or between threads of different Warps in one block? I think that when you access the shared memory is better ...
1
vote
2answers
347 views

Why bother to know about CUDA Warps?

I have GeForce GTX460 SE, so it is: 6 SM x 48 CUDA Cores = 288 CUDA Cores. It is known that in one Warp contains 32 threads, and that in one block simultaneously (at a time) can be executed only one ...
1
vote
1answer
271 views

How does CUDA exactly synchronize threads in a warp at barriers and conditional expressions?

I recently asked a question about synchronization issues among the threads of a block in CUDA, here: Does early exiting a thread disrupt synchronization among CUDA threads in a block? One of the ...
0
votes
0answers
163 views

warp/rotate/scale windows 7 desktop

I'd like to apply a 3D transform on Windows 7 desktop, directly over the GPU. I have found this answer, but it doesn't work on Windows 7 because the architecture is different (now, Windows 7 uses WDDM ...
2
votes
1answer
223 views

Are there any warp voting functions in OpenCL?

In CUDA there are __ballot(), __any(), __all(), __popc() and a bunch of lanemask functions to perform warp voting operations across all lanes (usually with the size of 32) within a warp. I'm wondering ...
2
votes
1answer
288 views

OpenCl max warp and work-group per compute unit

Can I get maximum warp/work-group on one compute unit through some function like clGetDeviceInfo. From what I've found the number depends only on Compute capability.So is there any function that can ...
1
vote
2answers
316 views

Thread-safe state with Warp/WAI

I want to write a web server which stores its state in a State monad with wai/warp. Something like this: {-# LANGUAGE OverloadedStrings #-} import Network.Wai import Network.Wai.Handler.Warp import ...
4
votes
2answers
170 views

How to add a MonadThrow instance to ResourceT Monad Transformer in a Warp Server

I'm trying to build a simple reverse-proxy server using Warp (mostly for my own edification, since there are lots of other off-the-shelf options). So far, my code is mostly lifted from the Warp ...
1
vote
2answers
1k views

Maven cannot find a local dependancy

I am trying to follow instructions on this site: http://trac.erichseifert.de/warp/wiki/DeveloperGuide I have got all the source - and have done mvn install on both mpqparser and vectorgraphics2d - ...
2
votes
1answer
208 views

How does CUDA compiler know the divergence behaviour of warps?

The CUDA Programming Guide (v4.1) describes this about predicated instructions in Sec 5.4.2: The compiler replaces a branch instruction with predicated instructions only if the number of ...
0
votes
1answer
629 views

OpenCV warping from one triangle to another

I would like to map one triangle inside an OpenCV Mat to another one, pretty much like warpAffine does (check it here), but for triangles instead of quads, in order to use it in a delaunay ...
0
votes
1answer
151 views

Image Transformation (strong wind) c/c++

I want to manipulate a Image like this: http://cdn.jolie.de/bilder/frisuren-fuer-eckige-gesichter-400x500-641657.jpg after the manipulation it should have a effect like this: ...
3
votes
1answer
295 views

How to run Warp in daemonized mode?

I've been working on a pixel server built using Haskell Warp and have been struggling to work out how to run it in daemonized mode. Warp works great - I can use run from Network.Wai.Handler.Warp to ...
1
vote
1answer
160 views

Warp web service with a long lived resource (a file handle)

I'm trying to understand how to write a web service using warp that has a long lived resource that I want access to from all my requests (i.e. I want the resource to exist for the life time of server, ...
3
votes
1answer
1k views

How does the CUDA warp scheduler issue 2 instructions at a time for a warp?

(Note: This question is specific to compute capability 2.1 devices. The following information is obtained from the CUDA Programming Guide v4.1.) In compute capability 2.1 devices, each SM has 48 SP ...