What's new for C++ AMP with respect to DX 12 ?

As we all know soon Microsoft will release DirectX 12. How is C++ AMP is affected from this ? Are there any significant improvements ?

But I thinks it's safe to say that at least two of your 11 will be in the next update.
Great!
Second, keep in mind that our feature backlog is full of hundreds of ideas. And if you were to ask 10 different users for their Top 11 list, they wouldn't match yours. So let's say we covered all 11 of your requests. Then someone else, perhaps MagistrateCoyote, would come along with her list of 11 requests that we haven't met yet. In other words, there's no shortage of perfectly valid enhancements we could make, and nobody's going to get everything they want in a given release. For that matter, you might come back after the next update with another list of "what abouts..."
The best way you can influence which features get prioritized for a given release is to submit formal feature requests.
I hear you -- and I've been submitting these requests for years now, literally... It's just frustrating when I see you obviously spent thousands of man-hours on new features, when I know some of my requests could be coded in a couple of hours -- and they're mainly about achieving parity with what, say, Avid & FCP have had for 10-15 years.
AND, some of those requests are aspects of the UI that are completely inconsistent with not only the entire CC suite, but UI practice in general (like having pasted items be selected, or the shortcuts for kerning.) They are clearly an oversight stretching back years. And some are just plain bugs (like the scrub toggle not working.)
On the other hand, kudos to the team because MANY of the features I've requested have shown up very quickly, so thanks.
By the way, I'm not familiar with AE's Reduce Project option, but Premiere already has one called "Remove Unused" that sounds similar. You'll find it in the Edit menu.
HA! The Edit menu! Who would've thought! Thanks!

Similar Messages

  • What is new for the Lumia 620 in the black update

    What is new for the Lumia 620 in the black update ?

    It seems Lumia 620 doesn't benefit the "double tap to wake", other than that all announced apps and features will be available. I advise to check also some great beta apps from Nokia Beta Labs, kudos to the guys developing these.

  • What's New for Hyper-V on Windows 10

    What's New for Hyper-V on Windows 10This topic explains the new and changed functionality in Hyper-V on Windows 10.Windows PowerShell DirectThere is a now an easy and reliable way to run Windows PowerShell commands inside a virtual machine from the host operating system. There are no network or firewall requirements or special configuration. It works regardless of your remote management configuration. To use it, you must run Windows 10 or Windows Server Technical Preview on the host and the virtual machine guest operating system.To create a PowerShell Direct session, use one of the following commands:Enter-PSSession -VMName VMNameInvoke-Command -VMName VMName -ScriptBlock { commands }Today, Hyper-V administrators rely on two categories of tools for connecting to a virtual machine on their Hyper-V host:Remote management tools such as...
    This topic first appeared in the Spiceworks Community

    We just released the Universal Windows appdevelopment tools for writing Windows 10 apps in Visual Studio 2015. Itis an exciting release: you can now use the latest .NET technology to build Universal Windows Platform("UWP") apps that run on every Windows device - the phone in yourpocket, the tablet or laptop in your bag, the PC on your desk, the Xbox consolein your living room, and all the new devices that are being added to theWindows family like HoloLens,Surface Hub,and IoT devices like the RaspberryPi 2.Installingthe UWP ToolsYou can install the free CommunityEdition, which install the UWP tools by default. If you need theProfessional or Enterprise edition, you can download them from VisualStudio.com.During setup, choose 'Custom' to install the Tools for Universal Windows Apps.If you already haveVisual Studio 2015, here's two ways to...

  • Relative path for Download directory folder.I created a firefox profile and i wanted to use this profile in multiple machines.I wanted to use a relative path for download directory with respect to the profile folder.I need this on Linux machines

    I have a use case where I need to use different download directories with different firefox profiles.I need to use this profiles in multiple linux machines.
    I need to have a relative path to my download directory with respect to the profile folder.
    Ex: I have a selenium test which opens a website and downloads it to my machine.I want this downloaded file to go into some specific folder relative to this profile folder.How do I do this??

    That is not a practically empty xinitrc - that file only needs one line: exec WM.  Other things are entirely optional, and some of them very useful, but I'd encourage you to stick with the simplest xinitrc that will do what you require.
    Is slim involved?  Probably.  That is the source of many problems.  But to start narrowing this down, I have 3 suggestions:
    1) temporarily (at least) change your inittab to default to runlevel 3 ... actually, is it currently set to 5 or 3? if it is currently 3 that would explain why slim doesn't start.
    2) at a tty in runlevel 3 use "xinit" instead of "startx".  Startx is fine most of the time, but it is essentially just a complex wrapper for xinit.  That complexity can often iadd useful functionality, but it *always* makes troubleshooting more difficult.  So for now just use a vanilla 'xinit'.
    3) remove dbus-launch from your exec line in xinitrc.  This is done by console-kit so it is redundant and potentially problematic.  Further BOTH of these are taken care of by slim, so I'd even suggest getting both a jump start on being ready for slim and simplifying troubleshooting by removing both of them.  Just make that line "exec openbox-session"
    Edit: adding one more:
    4) temporarily switch out openbox-session for openbox.  I suspect the reason feh's setting of the background is getting overridden is due to a script or setting in openbox's autostart settings - many of these are only invoked when "openbox-session" is called, while "openbox" starts *just* the window manager itself.
    Last edited by Trilby (2012-10-03 17:30:36)

  • Inner join and select for all entries with respect to performance

    Hi Friends,
    I just want to know which is more efficient with respect to performance the Inner join or select for all entries?which is more efficient? and how? can you explain me in detail ?
    Regards,
    Dinesh

    INNER JOIN->
    The data that can be selected with a view depends primarily on whether the view implements an inner join or an outer join. With an inner join, you only get the records of the cross-product for which there is an entry in all tables used in the view. With an outer join, records are also selected for which there is no entry in some of the tables used in the view.
    http://help.sap.com/saphelp_nw2004s/helpdata/en/cf/21ec77446011d189700000e8322d00/content.htm
    FOR ALL ENTRIES->
    Outer join can be created using this addition to the where clause in a select statement. It speeds up the performance tremendously, but the cons of using this variation are listed below
    Duplicates are automatically removed from the resulting data set. Hence care should be taken that the unique key of the detail line items should be given in the select statement.
    If the table on which the For All Entries IN clause is based is empty, all rows are selected into the destination table. Hence it is advisable to check before-hand that the first table is not empty.
    If the table on which the For All Entries IN clause is based is very large, the performance will go down instead of improving. Hence attempt should be made to keep the table size to a moderate level.
    Not Recommended
    Loop at int_cntry.
    Select single * from zfligh into int_fligh
    where cntry = int_cntry-cntry.
    Append int_fligh.
    Endloop.
    Recommended
    Select * from zfligh appending table int_fligh
    For all entries in int_cntry
    Where cntry = int_cntry-cntry.

  • Inner join and select for all entries with respect to performance in SAP

    Hi Friends,
    I just want to know which is more efficient with respect to performance the Inner join or select for all entries?which is more efficient?
    Regards,
    Dinesh

    I did some testing a while ago and found that a JOIN is usually a bit more efficient than FOR ALL ENTRIES. This wasn't always the case though, so the best thing to do is to write it both ways and see which is faster.
    Rob

  • ++ What's new for photographers (and designers) in CS4?

    Here is a link to John Nack's blog for a good brief description of enhancements to Photoshop and Bridge CS4. For the time being, I'm leaving this as a sticky topic.
    http://blogs.adobe.com/jnack/2008/11/cs4_for_photographers.html
    Neil

    With EHP4 itself, there is not much that comes in as far ESS is concerned directly. As mentioned by Siddharth - If you are already using concurrent employment there are more functionalities added (actions, time management related etc.) with EHP4. Also there are more functionalites delivered for Performance management, Talent management, HCM processes and forms, ECM, LSO and EIC. If you are using any of the above, you might want to check the documentation to see if  it affects ESS in any way.      
    However, with EHP3 and EHP2 there were few delivered functionalities directly affecting ESS.
    for ex.  personal information, concurrent/global employment. With EHP2, as a part of HCM processes and forms, there are some delivered forms an employee can trigger from ESS - for ex. address change including tax details.
    It really depends on what level of EHP you are on, if you are on ECC 6.0 without any enhancements you can jump to EHP4 and use the features delivered by EHP3 (assuming you are only looking out from ESS perspective).  Below is the link to media library - SAP Enhancement packages  on service market place, all the information is available here.
    Link: [https://websmp202.sap-ag.de/~form/sapnet?_SHORTKEY=01200252310000083217&]

  • How to create new reminder (in ML) with respective email reference?

    Hello,
    is there any way to create reminder which contains email reference (e.g to remind for follow up the email)?
    thank in advance
    Andrey

    Thanks.  That is exactly what I needed.
    Summary:
    To configure text objects for custom applications:
    1) Define new object in:
    V_TTXOBI
    2) Define TextID in
    V_TTXIDI

  • Whats the alternate for left join with using IN operator in the where claus

    My senario...
    Select t1.f1, t1.f2, t2.f3
      From t1, t2
    Where ...
          t1.f1> (+) IN t2.f1
          ...alternate query..
    Select t1.f1, t1.f2, t2.f3
      From t1, t2
    Where ...
          (t1.f1> IN t2.f1 or 1=1)
          ...will the alternate query satisfy the above senario..?

    I'm not quite sure I've understood what the OP's question is, but will ANSI syntax deal with it?
    SQL> ed
    Wrote file afiedt.buf
      1  with a as (select 1 as num, 2 as data from dual union all
      2             select 2 as num, 3 as data from dual union all
      3             select 3 as num, 4 as data from dual),
      4       b as (select 1 as num, 5 as data from dual union all
      5             select 3 as num, 7 as data from dual)
      6  -- END OF TEST DATA
      7  select a.num, a.data, b.data
      8* from a LEFT OUTER JOIN b ON (a.num = b.num AND b.num IN (3))
    SQL> /
           NUM       DATA       DATA
             3          4          7
             1          2
             2          3
    SQL>

  • What is QDX for data exchange with SAP

    Hi,
    Anyone know what is QDX. I was told that it is a Data Exchange Interface (in the higher layer than BAPI). I could not find any relevant information on the Web so far.
    Please share with me if you have any information.
    Thanks
    Andy Tan

    Hi,
    Anyone know what is QDX. I was told that it is a Data Exchange Interface (in the higher layer than BAPI). I could not find any relevant information on the Web so far.
    Please share with me if you have any information.
    Thanks
    Andy Tan

  • What PSE version for ibook g4 with leopard

    What PSE version will work on an iBook G4 that has Leopard 10.5.8 on it?  I have PSE 2, since upgrading to Leopard it will not work and
    my computer will not support pse 8.

    Incidentally, 3 is better thann 4 if you can find it. PSE 3 can still run tons of photoshop actions that call up underlying features that were disabled in PSE 4, and PSE 4 doesn't have much in the way of new tools over PSE 3.

  • Jj2sdk1.5 what's new for we game programmers?

    Basically, what the subject says. Is there anything that'll make me jog around the block naked with "Java Rules!" painted across my chest and back? (less exciting advancements are ok too. :+ )

    ..I think you mean "us" game programmers. I heard there was opengl support, that'd be something to jog about.. but maybe I heard wrong.

  • What's new for FaceTime on iOS 6

    Will there be any other inhancemets for the current software , and will there be Siri on ipad2

    Everything that Apple has announced can be found here:
    http://www.apple.com/ios/ios6/
    As to Siri, as has been said here many times already, Siri will not be available on the iPad 2.
    Regards.

  • Now that all of our school district iPads have been upgraded to ios 7 ...I am unable to save a photo from google in my photo gallery. Whats the new technique for this???

    now that our iPad is upgraded to ios 7.+, I cannot save images from google to photo gallery the old conventional way. Whats the new technique?

    actually with new ios 7
    select image from search,
    once image has been selected and enlarged you may tap/hold select
    then options will appear...then 'save image'

  • BAPI for MIGO with respect to Outbound delivery or Stk trfer pur order

    please let me know is there any standard BAPI for MIGO transaction with respect to Outbound delivery or Stock transfer purchase order

    try these...
    BAPI_OUTB_DELIVERY_CONFIRM_DEC
    BAPI_OUTB_DELIVERY_SAVEREPLICA
    BAPI_OUTB_DELIVERY_SPLIT_DEC

Maybe you are looking for