Any GPUs for Windows that support both CUDA and Open CL?

Hi everyone,
I was looking at this list:  http://www.adobe.com/products/premiere/tech-specs.html
while trying to decide which graphics card to buy to take advantage of Mercury playback.  I couldn't help but notice that there is not a single card listed that is compatible for both CUDA and Open CL in windows.  Do I really have to pick one or the other?  In that case, which would be more beneficial to a Premiere Pro workflow that utilizes a lot of dynamic links to After Effects?  As a side note, I use Photoshop a ton, and would love to keep my GPU acceleration in that arena as well.
Thanks!
-Charlie

I believe they write OpenCL separately.  They're two different APIs.
They are not that different, while 'porting' doesn't imply completely automatic process. Rewriting existing libraries from one language to another is something almost any developer is familiar with.
I'm not sure I understand the point you're trying to make here.  Right now, you cannot use OpenCL processing with an nVidia card on Windows.
The point is simple: both CUDA and OpenCL are supported by NVIDIA cards. The fact that Adobe engineers haven't ported libraries for GPU acceleration in MPE on Windows from CUDA to OpenCL so far doesn't mean they never will. Hence the statement that a user-side choice between AMD and NVIDIA equals to choice between OpenCL and CUDA is incorrect.

Similar Messages

  • TableCellEditor that Supports Both Date and Calendar

    Hi,
    I'm trying to write a TableCellEditor that supports both the Date and Calendar Classes (i.e., my table could have either Dates or Calendar objects, and I want this cell editor to work seamlessly with either one).
    Here is a simplified version of my code:
    public class DateCellEditor extends AbstractCellEditor implements TableCellEditor {
    /** The editor component. */
    private DateChooser editor;
    private Calendar cal;
    public DateCellEditor() {
    super();
    editor = new DateChooser();
    cal = Calendar.getInstance();
    public Object getCellEditorValue() {
    cal.setTime(editor.getDateValue());
    return cal;
    public Component getTableCellEditorComponent (JTable table,
                                                                                                                            Object value,
                                                                                                                            boolean isSelected,
                                                                                                                            int row,
                                                                                                                            int column) {
    if (value != null) {
    if (value instanceof Calendar)
         editor.setDateValue(((Calendar)value).getTime());
         else if (value instanceof Date)
         editor.setDateValue((Date)value);
    return editor;
    As you can see, I've already modified getTableCellEditorComponent to accepted object of class Date or Calendar. My problem arises in the getCellEditorValue method. How do I know which type of object to return? In the code sample above, I'm returning a Calendar object, but I'm not sure how to code this method to return either Calendar OR Date.
    By the way, editor.getDateValue() returns a Date object.
    I could easily write two separate TableCellEditors, but I would prefer a more elegant solution. Any ideas?
    Thanks!
    Karen Prengaman

    If you really must have both objects and don't want to convert one into another, you could add a function like
    setMode(int modetype) {}
    where modetype is either DATE or CALENDAR, and then return the set type when the user calls getValueAt

  • Portable headphones for ipod that are both wireless and noise-cancelling?

    Does such an animal exist? Been googling all over the place but can't
    find anything that is both...wireless and active noise cancelling.
    The only thing that does come up in answer to such a google search appears to be headsets for cell phones.
    I'd be very interested in any suggestions.

    Any wireless headset for an iPod would require some sort of dongle as none of the iPod range have bluetooth (and, I don't believe that the iPhone supports the bluetooth stereo profile, though I could be wrong). I believe there are a few out there but I've never heard of ones that are also noise cancelling. You might check out the accessory section on iLounge. The review lots of off beat iPod accessories.
    www.ilounge.com
    Best of luck.

  • Is there any way to close download windows that remain all black and open after the downloading ?

    <blockquote>Locking duplicate thread.<br>
    Please continue here: [[/questions/968842]]
    </blockquote>
    Hi,
    I have my download windows that remain black and open after the downloading achieved. The only button active is the red cross but seems to be inoperative...
    I can have couple of them open at the end of the day at the same time.
    I have already tried to uninstall/resinstall but the problem remains...
    For info, i am running firefox on a Mac OS.
    Thanks in advance for your help.
    Cheers,
    Jul_313

    Hello,
    Try disabling graphics hardware acceleration. Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    Then perform these steps:
    *Click the orange Firefox button at the top left, then select the "Options" button, or, if there is no Firefox button at the top, go to Tools > Options.
    *In the Firefox options window click the ''Advanced'' tab, then select "General".
    *In the settings list, you should find the ''Use hardware acceleration when available'' checkbox. Uncheck this checkbox.
    *Now, restart Firefox and see if the problems persist.
    Additionally, please check for updates for your graphics driver by following the steps mentioned in the following Knowledge base articles:
    * [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    * [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    Did this fix your problems? Please report back to us!
    Thank you.

  • NLS_LANG that supports both Japanese and Spanish

    Hi All,
    I need to insert Japanese scripts into my custom table. So I did setup the NLS_LANG to support the Japanese scripts as American_America.JA16SJIS.
    The japanese data got inserted into the table.
    Now, the spanish characters, which i have shows up as junk characters.
    I tried setting the NLS_LANG to UTF8. It didnt help me inserting the japanese characters thought it did insert the spanish properly.
    Can you please let me know, which supports these.
    Thanks,
    LR

    When you convert to Shift-JIS, if you also have spanish characters these need to be defined in the character set too. Is the client side Windows? Which shift-jis standard does the code page you are using support, and does it include all the characters?

  • Trying to create an abstract service that supports both DataService(LCDS) and RemoteObject

    I am trying to create a generic service processor in ActionScript that would be able to use a DataService(from LCDS) or a RemoteObject, depending on a property setting. The intent is to be able to change a setting during installation to control whether DataServices would be used, or RemoteObjects. I understand that the server side logic would need to be written differently for each of the implementations.
    The challenge is that accessing a DataService is synchronous, but a RemoteObject access is asynchronous.
    For the synchronous access, I can just call a service and return the result directly to an object which can be passed back to the client.
    For the asynchronous support, extra code must be written on the client side to listen for the return of a requested result (for example, the results of a database quesy). This code must be placed outside of the service itself, thus making the generic service non-generic.
    Are there any examples available that accomplish what I am trying to do?

    Hi. As far as I know both DataService and RemoteObject are asynchronous APIs. If you call a DataService method such as fill() or call a method on your RemoteObject, code in your Flex application will continue to execute and the result from the RemoteObject or DataService request will be received asynchrounously. I don't believe there is any way currently to make synchronous or blocking calls in Flex because of the Flash Player's execution model.
    How are you planning on using the DataService and RemoteObject in your application? Is it to do something like populate a DataGrid? Do you plan on updating the data retrieved from the DataService or RemoteObject such as adding, updating or deleting records?
    The DataService API is much more powerful than the RemoteObject API, in that if you bind an ArrayCollection that is populated from a DataService to your DataGrid, when you update data in the DataGrid, the data on the server is updated and all other clients that have the same view of the data will also get the updates. You don't currently get this functionality with RemoteObjects.
    My point here is that if you wanted to write an abstract service that supports both DataService and RemoteObject and you need to be able to add, update or delete records you are going to need to write a lot of custom code to listen for collection change events when data on the client is modified and translate these change events into RemoteObject requests. Even if you did do that, other clients would not get these updates.
    If all you want to do is something simple like populate a DataGrid with data from the DataService or RemoteObject, then sure, writing an abstraction layer on the client that supports both of these wouldn't be hard.  
    -Alex

  • I am trying to resize disk space on parallels 6 for windows XP under configure Hardrive and I get the error resizing failed unable to resize last volume the file system of this volume might be damaged or not supported?  I am on a Mac using Parallels 6

    I have been trying to increase my disk space for windows xp on my Imac and I am running parallels 6.  before opening windows I go into configure in parallels and open the hard drive and try to move the allotted disk space from 32 gig to 64 or any other increased gig and then apply and I get the error message: resizing failed unable to resize last volume.  The file system of this volume might be damaged or not supported.  How do I increase the size??  I just also did a disk repair utility with Apple on the Apple side of my IMAC.  Please Help!!   I had uninstalled SQL server on the windows side and needed to uncompress files to install this and then I ran short on disk space.

    This sounds to me that your Parallels XP file system is corrupted and not the OSX file system.
    Have you checked the XP file system while running the Parallels XP yet ?
    However, it would be better to ask such question in the Parallels Forum http://forum.parallels.com/
    Stefan

  • Page size that I have to put my site to see the same on a computer supports both laptop and a desktop computer ?

    page size that I have to put my site to see the same on a computer supports both laptop and a desktop computer ?

    The viewport on a computer is adjustable by the user. iWeb sets the viewport width to the page width that you chose in the layout menu. No matter what the end user does, the page width is static and a reasonable compromise for the width of a web page that will be viewed on these devices is 980 to 1024 px.
    Safari on iOS devices cannot set the viewport. The viewport on mobile devices is fixed and its width depends on the orientation of the device. The iPhone in portrait mode has a viewport width of 320px. This means that the 980px wide iWeb built page will be squashed down to about one third of its desired size making it unreadable and difficult to navigate.
    Setting the viewport meta tag so that width equals the device width is a futile gesture since Safari on iOS will do that anyway. Its only useful if you add some initial scaling like...
    <meta name = "viewport" content="initial-scale=0.7">
    In the case of a 980px wide website, the initial scale is about 0.3 so any value higher than this will magnify the initial view of the site.
    Here's an example of a 980px wide page that has been given and initial scale of 0.7 which allows an iPhone user to see one column of a two column layout...

  • I just received a new macbook pro. I am looking for a usb3 external storage 500 GB drive.  Some manufacturers of drives aren't for sure their drive will work with the new lion system. Does anybody have any suggestions for drives that will workw

    I just received a new macbook pro. I am looking for a usb3 external storage 500 GB drive.  Some manufacturers of drives aren't for sure their drive will work with the new  system. Does anybody have any suggestions for drives that will workw

    There seems to be a problem, just now, with the USB 3 ports on the new MBP's supporting eternal USB 3 drives. Some people have no luck at all - can't even recognize the drive - and some are reporting USB 2 speeds (those who drives are recognized). I'd call a dealer such as LaCie or OWC to see if they have USB 3 drives that actually work with MBP's with USB 3 ports. You may have to wait for a software/firmware update.
    Clinton

  • I have just noticed that in both Yahoo and Gmail the drop and drag function for attachments has stopped working. Is this due to Firefox?

    I am currently using Firefox 19. In the last week I have found that in both Yahoo and Gmail I am unable to attach files using drag and drop; I have not used drag and drop for a little while so I cannot say that it begun with a particular Firefox update. Unlike some users of FF16 I have no problem dragging tabs around in the browser. I know in the past certain issues with attachments have evidently been related to the browser and hence the reason I consider such a link now. I am using Windows XP SP3.

    Tylerdowner, hi.
    Thanks for your response, but remembering the cause of a previous attachent problem that many Firefox users were having at around the time of FF13 related to the network.http.spdy.enabled setting to 'true' I decided to check that setting again in about:config.
    To fix my problem at the time I, like others, changed the SPDY setting from 'true' to 'false' and this I found had not been automatically changed with later versions of FF. I did find, however, that there were now two other SPDY settings for v2 and v3, which were set to 'true'. In case these were conflicting with the first setting on 'false' I changed this latter to 'true' also. This done I returned to Gmail and tried to attach some files, firstly in the normal way by clicking on attachments and selecting a file from the dialogue box, which worked (previously on 'true' this had not worked); secondly, I tried attaching using drag & drop, which now worked. I also found that drag & drop worked in Yahoo too.
    So, could a conflict between the SPDY versions have been the cause of the problem when network.http.spdy.enabled was set to 'false'?
    If the problem occurs again I will let you know. (I have attached a snapshot of the current settings.)

  • Need videocard that supports dual monitors and Rotation -for PowerMac G5

    I'm looking for a videocard that supports dual monitors and Rotation for PowerMac G5. I've got two Dell 2407WFP monitors rotated to 90 -I've been running an ATI Radeon X1900 256 pcie16 but apparently it is over heating -not even exactly sure if that indeed is the case but all the symptoms I've looked up online point to this problem. Anyways -just looking for a card that will do the job -I don't run games -this is just for work machine doing photoshop and related programs. Thanks for any help anyone may have!

    Hi-
    A flashed card is a WinPC card that has been modified to accept a Mac ROM to provide for Mac compatibility.
    Occasionally, soldering and other physical modifications are required.
    Without this modification, a WinPC graphics card cannot be used in a MAc.
    Without this modification, Mac users are limited to only a handful of used, OEM options.
    The Geforce 7800 GS is the only 7800 card that may be used in a G5 (or G4).
    The card must have been or be converted to Mac compatibility.
    For dual monitors (DVI) the best performance choices are the Geforce 6800 Ultra (flashed or OEM), a rare, but occasionally available Geforce 6800 GT (flashed), an OEM Radeon X800XT (use ADC/DVI adapter on ADC port) a rare and expensive Radeon FireGL X800 (flashed).
    These are the only performance oriented cards to offer dual digital display support.
    For less demanding graphics work, an OEM Radeon 9650 offers dual digital output.
    Other OEM graphics cards will have either DVI/DVI or ADC/DVI.
    All OEM graphics cards are only available as used.
    All cards are easiest to obtain on eBay.
    Prices vary, but deals can be found.
    Expect to pay $150-$325 for any of the cards listed.
    Any card considered MUST be stated as Mac compatible, unless you are willing to research and learn how to perform the necessary modifications.

  • Hi, my iPad 2 startd tapping on its own. it keeps repeating the tap on the same spot. i can't seem to find any remedy for it except to switch off and on it again, and even that is a temporary fix. any ideas please?

    hi, my iPad 2 startd tapping on its own. it keeps repeating the tap on the same spot. i can't seem to find any remedy for it except to switch off and on it again, and even that is a temporary fix. any ideas please?

    First thing to try is to reset your device. Press and hold the Home and Sleep buttons simultaneously until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.
    If that doesn't help I and the problem persists I would have a technician take a look at your iPad. Make an appointment at an Apple Store to have your device examined by a technician. Or contact Apple Support.

  • I have question about hooking up an external hdd to a time capsule and still have my printer hooked up as well. Anyone got any tips for me, how to do it and what brand of harddrive that will work best for me 1 or 2 TB

    i have question about hooking up an external hdd to a time capsule and still have my printer hooked up as well. Anyone got any tips for me, how to do it and what brand of harddrive that will work best for me 1 or 2 TB

    You just need a powered hub.. if you already use one then fine.
    Plug in just about any external hard disk will work fine. Format has to be readable by the TC.. ie fat32.. or much better HFS+.. plug it into a Mac to prepare the drive.
    Pick whatever size suits.. nowadays 2TB are most economical.
    WD, Seagate have goobled up all the minor players.. so pick one.
    Whatever suits your budget and asthetics.
    NOTE.. The USB on the TC is fine for printers.. IMHO it is the wrong way to go with USB disks.. use the internal disk of the TC.. USB is less than half the native speed plugged into a Mac.. TC to USB is slow.. far slower than internal drive.. or using external drive as external.

  • How do you change the language of the dictionary on Safari from English (US) to (UK)? I'm using Windows 7 Home Premium and the latest version of Safari for Windows that I know of. Cheers in advance

    How do you change the language of the dictionary on Safari from English (US) to (UK)? I'm using Windows 7 Home Premium and the latest version of Safari for Windows that I know of. Cheers in advance

    92matt wrote:
    Cheers for the quick response, but do you know whow I would do that?
    Apologies I'm not the most technical of people!
    Open Regional and Language Options by clicking the Start button , clicking Control Panel, clicking Clock, Language, and Region, and then clicking Regional and Language Options.
    Lupunus

  • Any suggestions for programs that can convert mpeg1 to a format that can be edited in iMovie Version 8.0.6 (821) and/or iMovie HD Version 6.0.3 (267.2) Thanks

    Any suggestions for programs that can convert mpeg1 to a format that can be edited in iMovie Version 8.0.6 (821) and/or iMovie HD Version 6.0.3 (267.2) Thanks

    Hi Mark
    Was just looking for the answer to this exact question and I just found something that worked for me so don't know if it might be of use to you or you might have already solved your problem!  Basically when I was in iMovie and I clicked to import movies from the computer into iMovie and I found the clip I wanted to import, there are a few options.  I think it asked which Event I wanted to add it to but most importantly it asked me what file size I wanted...I had originally been clicking Large because it advised me to because it reduces the file size...but just on a chance there I selected 'Full - Original' for size and it imported perfectly into iMovie in it's original vertical form!
    Hope this helps!
    Bianca

Maybe you are looking for