Speed difference between i7 quad 3rd gen 2.6ghz and i7 quad 4th gen 3.1ghz?

How much speed difference in Logic X will I notice between an i7 quad 3rd gen 2.6ghz and i7 quad 4th gen 3.1ghz?
both loaded with 16gb 1600 ram... 256gb ssd

Kappy wrote:
All other things being equal 4-cores are twice as fast as 2-cores. This is regardless of what you are doing. The only way a 2-core processor would be as fast is if it were run at twice the clock speed. But the 2-core CPU is only clocked around 10% or so faster. Now, for all that you claim you will be doing the relevant question is do you need 4-cores. My answer is that you don't. But the 2-core machine will be slower - all things being equal.
Iris is a far better GPU than HD4 or 5000. But not as fast as a discreet GPU with better performance measures. Again, you don't really need high-power GPU. Iris should meet your needs adequately for now.
But remember you want to keep the computer for 6 or 7 years. No one knows what your needs will be then. You may find whatever you buy today that meets today's needs will be inadequate for tomorrow's.
Your comments on graphics pretty much confirm the majority of what I've been reading on other sites.
The conflict is with cores. About half the people are saying for low CPU intensive tasks 4 cores are totally unnecessary, while the other half says they'll make things faster no what the task (one thing all seem to have in common is they're totally against the 2014s).
So it seems I'm left with the decision between faster performance vs better graphics.
I appreciate your input.

Similar Messages

  • AppleScript speed difference between 10.4 & 10.5

    This post is related to a question I posed in March 2009 (https://discussions.apple.com/message/9226100) regarding the speed difference between AppleScript text handling in OS X 10.5 compared with 10.4.11.
    I have recently written a script to search through a text file which is an xml file exported from WorkGroup Manager. The file, which is approximately 1.8 MB, contains all the user names on the school server (just over 1720 of them), their settings and any other information we have added. After adapting some script ideas (using text delimiters and offsets) which I found on the internet to assist with counting the number of users and searching through the information of each one, one at a time, I have a script which works far in excess of my expectations in terms of speed when run under OS X 10.4, but runs slower than molasses in winter under 10.5.
    The script counts the number of accounts, extracts each user's log-in name and also their actual name (which we have entered under a 'general info' or 'comments' field - I can't remember exactly where, but it is stored in the file), makes up a complete list of all account names (with the actual name, if present) and also makes up a subset of this information into a separate list which contains only the log-in names of those whose actual name has not yet been recorded on the server, then saves both lists to separate text files.
    My original attempts, using some rather clumsy text searching and comparison techniques, took about 1-2 minutes to go through the whole procedure. After some internet searching, head-scratching and a bit more more work, the finished script, when run on my G5 under OS X 10.4.11, takes less than 3 seconds to do all I have described above, including the writing to text files. To say I was pleased would be an understatement!
    Because the school/work environment, where the script would be run, is all OS X 10.5 or higher, I thought I should test it out under at least OS X 10.5. The script was developed on my DP 2.5GHz G5 with 8GB RAM running OS X 10.4.11. Using a fresh, clean installation of 10.5 I ran the script and was extremely disappointed. After letting it run for more than 20 minutes and still not finishing, I force quit AppleScript and reduced the number of accounts in the file. 40 accounts took 3 seconds, 60 accounts took 6 seconds, 80 took 11 seconds, 100 took 19 seconds and 120 took 27 seconds. I eventually let the script run right through - total time taken to process 1720 users was 65 minutes, compared to 3 seconds under 10.4.11!
    Given that it was tested on the same Mac, with the same amount of RAM, using the same script and the same original text file, the only variable left (that I can think of) is the change of OS version - 10.4.11 vs 10.5.
    As was pointed out to me in my previous post, AppleScript in OS X 10.5 handles all text as Unicode and has a greater overhead in processing time as a result. I have implemented the various bits of advice offered by respondents to my original post and changed the way I handled lists, etc. Obviously, if the script works so speedily under 10.4.11, I must have done something right in terms of code optimization/efficiency. It's when that exact same script is run under OS X 10.5 that it slows down incredibly. I even tried it on a 2.66GHz Intel Core 2 Duo iMac running 10.5.8 - it still took 40 minutes and Activity Monitor showed CPU usage by Script Editor constantly above 80% (often well above 90%). Saving the script as an application made no difference in the time taken.
    Does anybody have any knowledge about what makes AppleScript Unicode-only text handling so slow? In this case, it is 1300 times slower! Is there any way of coercing/restricting the text handling/parsing to ASCII? If I really have to, I will set up a humble eMac at school with 10.4 on it just to handle large text files quickly with AppleScript, but I would prefer to be able to do it on the normal work Macs which have 10.5 or later on them. As mentioned, under 10.4.11 the script processes the 1.8MB text file with 1720 users and writes results to two files - all within 3 seconds, so I'm not really looking for coding suggestions unless they are directly related to what has changed in AppleScript under OS X 10.5. Without sounding too smug, the script works properly and speedily (at least in 10.4). I really would like to learn about the changes in AppleScript in OS X 10.5 and how to cope with or work around those changes.

    Hi,
    text 3 thru 14 in largeText
    character 3 thru 14 in largeText
    text 3  in largeText
    character 3  in largeText
    These lines will be slow on Leopard
    Getting some text in a variable that contains more than 60000 characters will be slower on Leopard,
    but I don't know why it's slower
    Here a test script.
    script o
        property t_text : ""
    end script
    set a to "abcdefghij"
    set tResult to ""
    repeat with i from 1 to 3
        set o's t_text to a
        repeat (item i of {17, 15, 14}) times
            set o's t_text to o's t_text & o's t_text -- add  characters in the variable
        end repeat
        set StartTime to current date
        -- test
        repeat 20 times
            set b to text 3 thru 14 in o's t_text -- get a text in the variable
        end repeat
        -- end test
        set EndTime to current date
        set TimeTaken to EndTime - StartTime
        set tResult to tResult & " Getting text in the variable which contains " & length of o's t_text & ", (20 times) = " & TimeTaken & " seconds." & return
    end repeat
    tResult
    Here the result on my old G5, 2 x 1.8 GHZ
    Getting text in the variable which contains 1310720 characters, (20 times)  = 50 seconds.
    Getting text in the variable which contains   327680 characters, (20 times)  = 12 seconds.
    Getting text in the variable which contains   163840 characters, (20 times)  =   6 seconds.
    The result on the same machine on Tiger is always less of one second.
    Also, I try with 20 millions characters on Tiger, the result : getting text in the variable which contains 20971520 characters, (20 times)  = 0 seconds.
    The solution ( text item in a list)
    Here the script
    script o
        property my_List : {}
    end script
    set OldDelims to text item delimiters
    set RecordDelimiter to "::::::::::::::"
    set LengthOfRecordDelimiter to length of RecordDelimiter
    set o's my_List to findAll(read (choose file), RecordDelimiter)
    on findAll(str, findString)
        set Oldtid to text item delimiters
        try
            set text item delimiters to findString
            if str does not contain findString then return {"Nothing found"}
            set t to str's text items
            set text item delimiters to Oldtid
            return t
        on error eMsg number eNum
            set text item delimiters to Oldtid
            error "Can't findAll: " & eMsg number eNum
        end try
    end findAll
    set NumberOfrecords to (count o's my_List)
    display dialog "There are " & NumberOfrecords & " accounts."
    set StartTime to current date
    set text item delimiters to ":"
    set FullUserList to {}
    set ListOfUnnamedUsers to {}
    -- first user needs to be done separately as it is not preceded by RecordDelimiter
    set EndOfHeader to "Standard:URL"
    set LengthOfEndOfHeader to length of EndOfHeader
    set EndOfHeaderOffset to the offset of EndOfHeader in (item 1 of o's my_List)
    set OffsetToApply to EndOfHeaderOffset
    set TextBeingChecked to text (OffsetToApply + LengthOfEndOfHeader + 1) thru -1 of (item 1 of o's my_List)
    tell TextBeingChecked to set {UserName, NameForInfo} to {text item 1, text item 7}
    if NameForInfo = "" then set end of ListOfUnnamedUsers to UserName & return
    set end of FullUserList to (UserName & tab & NameForInfo & return)
    -- now do all the others
    repeat with CounterG from 2 to (NumberOfrecords - 1)
        set TextBeingChecked to item CounterG of o's my_List
        tell TextBeingChecked to set {UserName, NameForInfo} to {text item 1, text item 7}
        if NameForInfo = "" then set end of ListOfUnnamedUsers to UserName & return
        set end of FullUserList to (UserName & tab & NameForInfo & return)
    end repeat
    set o's my_List to {}
    set text item delimiters to OldDelims
    -- write results to file
    -- 1). full user list
    set TargetFile1 to (path to desktop folder as string) & "FullUserList1.txt"
    try
        open for access file TargetFile1 with write permission
    on error
        close access file TargetFile1
        open for access file TargetFile1 with write permission
    end try
    set EndTime to current date
    beep
    set InfoToBeWrittenToFile to FullUserList as text
    write InfoToBeWrittenToFile to file TargetFile1
    close access file TargetFile1
    -- 2). list of users without NameForInfo
    set TargetFile2 to (path to desktop folder as string) & "UnnamedUsersList1.txt"
    try
        open for access file TargetFile2 with write permission
    on error
        close access file TargetFile2
        open for access file TargetFile2 with write permission
    end try
    set InfoToBeWrittenToFile to ListOfUnnamedUsers as text
    write InfoToBeWrittenToFile to file TargetFile2
    close access file TargetFile2
    beep 3
    set TimeTaken to EndTime - StartTime
    set TimePerAccount to TimeTaken / NumberOfrecords
    display dialog (NumberOfrecords & " accounts took " & TimeTaken & " seconds." & return & return & "That equals " & TimePerAccount & " seconds per account.") as string

  • Any speed difference between Apple Wifi Router(air express) and Tp link(or others) wifi router)

    Any speed difference between Apple Wifi Router(air express) and Tp link(or others) wifi router?
    I'm using a tp link router and sometimes it takes a long time delay for my 2 mac computers to connect each other. I don't know this is because of the router compability or the computers.

    Anyone knows?

  • Is there much speed difference between the iMacs?

    Just wondering, if there is any noticeable performance difference between the 1.83 - the 2.0 and the 2.16?
    I'd be surprised to learn that there was (and also, keenly interested to learn).
    My experience is that a dual processor is noticeably more capable than a single processor (regardless of minor increments at the end of the processor number).
    Anyone?

    You are right that it is more about futher differentiating the models than anything else. The speed difference is negligible, but a nice plus is you choose a larger display. Typically you also get a larger standard HD and maybe a better video card and if you add all those things up, the price difference is worth it.

  • Logic Pro X performance difference between iMac i7 3.5ghz (non-Retina) and the i7 4.0 ghz (Retina)?

    Hello - on the verge of getting an iMac - it's for Logic Pro and some video editing with Premiere Pro (don't *really* need the Retina screen though) - i'd just like to get an idea of the performance difference (especially in Logic Pro X) between the quad i7 3.5ghz (non-retina) and the quad i7 4.0ghz (retina)?
    I use loads of plugin instruments (incl. big Kontakt libraries) and effects with just a few audio tracks (only ever record max a couple of audio tracks at a time)
    Thanks!

    I owned the imac and then returned it for the 2.6 MacBook Pro. After using both there is a noticeable speed difference between the 2. Not a huge difference but there is certainly more lag using the MacBook Pro. I found that lots of the lag went away when I attached to an external display though. At the end of the day I think you just need to decide if you need the portability or not. At first I thought I would keep the imac and then get a cheap MacBook Pro to use on the road but the thought of having multiple Lightroom catalogs sounds very annoying to me. Plus all the transferring back and forth. I will say also that I've been getting a lot of freezes in Photoshop on my mbp and weird errors like the sleep wake failure error some people are talking about when connected to a USB device. I didn't have any of these problems with the imac

  • Would I notice a difference between a dual 3.2 MAC PRO and a dual 3.0 Mac P

    Would I notice a difference between a dual 3.2 MAC PRO and a dual 3.0 Mac Pro. Looking to add another MAC PRO to my studio just wondering if there would be a noticeable difference between my dual 3.0 quad core and the 3.2 dual quad core??
    Thanks
    John

    Using mostly FCP and Illustrator CS 3. Really do not need anymore performance for what I am doing but I need to add another station and wonder if the 3.2 would be a better performer. My current system is a 3.0 dual with quad cores. If the 3.2 would be a better performer then I would install the new system in my main suite.
    Thanks
    John

  • What is the difference between the passcode on my iPhone 5 and a password?  I am locked out of my phone.

    What is the difference between the passcode on my iPhone 5 and a password?  I am locked out of my phone.

    Not entirely sure what you are asking, but a passcode to unlock an iOS device is normally 4 digits long (so is a 4 digit code), though you can make it alphanumeric and longer (so effectively becomes a password).
    If you don't know the passcode to unlock your phone or it's showing the disabled screen then there are instructions on this page for how to reset a device : http://support.apple.com/kb/HT1212 - you should then be able to restore/resync your content to it.

  • How to measure time difference between zero crossing of a sine wave and rise time of a pulse on a same graph?

    I have a 50Hz sine wave and a pulse signal on a same graph. The phase difference between two is between 0-90 degrees.
    Now I need to calculate the time difference between (when the sine wave crosses zero volts) and (when the pulse rises). The frequency will stay approximately same for both signals.
    The application is for a three phase generator. In simple words, when the time difference between the zero-crossing of sine wave and the pulse rises increases, that means that the load on the generator has increases.
    I am a beginner user of LabView (version 9, 2009), maybe it is a very simple problem but I've been pulling my hair out for the last few days and coudln't figure anything out. Any help would be greatly appreciated. I am using DAQ USB-6008 to measure these voltages and pulse from the generator and a sensor
    I have attached a jpg (a graph that i just made with excel to explain). The time 't' is what I am trying to measure
    Cheers
    Awais 
    Message Edited by awais.h on 03-30-2010 11:20 PM
    Message Edited by awais.h on 03-30-2010 11:21 PM
    Solved!
    Go to Solution.

    Hi
    Thanks for the code but I'm afraid it won't work. Like you said the probability of choosing a value that is on both graphs may not happen. This is something that I would like the code to do automatically.
    But I did use the previous code posted and made some modifications to it and it seems to work perfectly. Now the next thing is to be able to get just that one value that tells you the first time difference.
    Here is what I get using that code.
    As you can see from the t Values. I only need the one that is highlighted. If there is a way to filter out the rest it would be great.
    I was thinking of a while loop and as soon as the value is higher than 3E-5 it would store the number and stop the loop, but I'm not too familiar with arrays in labview.
    Here is the the code modified.
    As you can see, it wasn't that big of a modification and it still is your code.
    I will keep trying.
    Thanks for the help
    Attachments:
    FinalShockSpeed.vi ‏55 KB

  • Differences between Oracle Forms 11.1.1.6  and 11.1.2

    Hello !
    Which version should I choose 11.1.2 or 11.1.1.6
    11.1.2 must me the latest one aka 11gR2
    11.1.1.6 must be 11gR1 PS5
    Am i right ?
    but in the forms home page it seems that the 11.1.1.6 is the latest version ??
    Oracle Forms 11.1.1.6 Released
    The latest version of Oracle Forms (11.1.1.6) has been released.
    This can be downloaded from My Oracle Support (MOS)
    23-Feb-2012
    Oracle Forms 11g Release 2 has been released. Read about the new features.
    Oct-2011
    I suppose that in a MiddleWare stack : SOA suite + BI publisher + Forms, the 11.1.1.6 (11gR1 PS5) is the best choice.
    Can somebody explain me the differences between Oracle Forms 11.1.1.6 and 11.1.2 ?
    Thanks
    Regards
    Jean-Yves

    Michael Ferrante (Oracle) wrote:
    There are many new features in 11.1.2.0 that do not exist in 11.1.1. Some of the most significant new features are listed in the 11gR2 New Features documentation found on this page:
    http://www.oracle.com/technetwork/developer-tools/forms
    Additional information about new features and changes can be found in the product documentation for 11gR2, which is here:
    http://docs.oracle.com/cd/E24269_01/index.htm
    One important thing to note is that FMw 11.1.2 (11gR2) does not include Portal or Discover. So if you need either or both of these you will need to stick with 11.1.1.Hi Michael,
    One of the features which is very very important in my point of view is
    Reduced Installation Footprint
    In order to reduce the resource requirements on development machines, you can perform an
    installation specifically tailored for development. This will limit the number of software products
    and servers installed on the machine whilst still allowing a developer to build, run and test their
    Forms application.
    If this feature is only available for the 11.1.2 release then the choice is made !
    Thanks !
    Jean-Yves
    ps : and we don't use any portal or discoverer :-)
    Edited by: JeanYves Bernier on 30 nov. 2012 23:54

  • Differences between Oracle 8i for a UNIX Platform and Oracle 8i for a Linux Platform

    Hello,
    J would like to know if there are some differences between Oracle 8i for a UNIX Platform and Oracle 8i for a Linux Platform.
    I know that there are some differences on Oracle 8i Parallel Server and i know that some products are not include like precompiler (Mod*Ada, Pro*FORTRAN) on a Linux Platform.
    Thank you.

    We have installed Oracle 8i on Solaris 8 and it had a great performance, of course that the hardware and licence invested here was costed my the office where i work. Personaly i'd installed linux reh hat 8 and oracle 8i, imagine that, it could be implemented by any individual that has the time to do so.
    By buyinng from a company that has a good background you could be sure that you will have support.
    Bottom line, if you have the $ to buy great hardware go for a unix platform. But if you don't a Red Hat Linux Server Licence with a 1 year sopport and Oracle data base is about 3500Dls.
    Visit www.red-hat.com
    Rewards... Bye

  • Differences between Oracle 8i for a UNIX Platform and a Linux Platform

    I want to know the differences between Oracle 8i for a UNIX Platform and Oracle 8i for a Linux Platform. And which platform is better?
    Thanks

    We have installed Oracle 8i on Solaris 8 and it had a great performance, of course that the hardware and licence invested here was costed my the office where i work. Personaly i'd installed linux reh hat 8 and oracle 8i, imagine that, it could be implemented by any individual that has the time to do so.
    By buyinng from a company that has a good background you could be sure that you will have support.
    Bottom line, if you have the $ to buy great hardware go for a unix platform. But if you don't a Red Hat Linux Server Licence with a 1 year sopport and Oracle data base is about 3500Dls.
    Visit www.red-hat.com
    Rewards... Bye

  • What is the difference between jdk version 1.3.1-b24 and 1.3.1_02-b02?

    Hi,
    This is a weird question. But I really need to know the difference between jdk vesion 1.3.1-b24 and 1.3.1_02-b02.
    Anyone has a clue?
    Thanks
    Wayne

    This is a weird question. But I really need to know
    the difference between jdk vesion 1.3.1-b24 and
    1.3.1_02-b02.Bug fixes only.
    When reading the strings above, ignore the part saying "-b##" (that's the build number). So you're looking at 1.3.1 (the base release), and 1.3.1_02 (patch 02 on 1.3.1).

  • DIfference Between User Exits, Screen Exits, Menu Exits And BADI

    Could any one let me know the exact/practical dIfference Between User Exits, Screen Exits, Menu Exits And BADI. ? And why BADIs are more proned to use?

    Hi,
    User Exits:
    A user exit is a three character code that instructs the system to access a program during system processing.
    SXX: S is for standard exits that are delivered by SAP.   XX represents the 2-digit exit number.
    UXX: U is for user exits that are defined by the user.  XX represents the 2-digit exit number
    Menu Exits:
    Menu exits add items to the pulldown menus in standard SAP applications. You can use these menu items to call up your own screens or to trigger entire add-on applications.
    SAP creates menu exits by defining special menu items in the Menu Painter. These special entries have function codes that begin with "+" (a plus sign). You specify the menu item’s text when activating the item in an add-on project.
    Screen Exits:
    Screen exits add fields to screens in R/3 applications. SAP creates screen exits by placing special subscreen areas on a standard R/3 screen and calling a customer subscreen from the standard screen’s flow logic.
    BADIs:
    Business Add-Ins are a new SAP enhancement technique based on ABAP Objects. They can be inserted into the SAP System to accommodate user requirements too specific to be included in the standard delivery. Since specific industries often require special functions, SAP allows you to predefine these points in your software. 
    And why BADIs are more proned to use?
    In contrast to above customer exits, Business Add-Ins no longer assume a two-level infrastructure (SAP and customer solutions), but instead allow for a multi-level system landscape (SAP, partner, and customer solutions, as well as country versions, industry solutions, and the like). Definitions and implementations of Business Add-Ins can be created at each level within such a system infrastructure.
    SAP guarantees the upward compatibility of all Business Add-In interfaces. Release upgrades do not affect enhancement calls from within the standard software nor do they affect the validity of call interfaces. You do not have to register Business Add-Ins in SSCR.
    The Business Add-In enhancement technique differentiates between enhancements that can only be implemented once and enhancements that can be used actively by any number of customers at the same time. In addition, Business Add-Ins can be defined according to filter values. This allows you to control add-in implementation and make it dependent on specific criteria (on a specific Country value, for example).
    All ABAP sources, screens, GUIs, and table interfaces created using this enhancement technique are defined in a manner that allows customers to include their own enhancements in the standard. A single Business Add-In contains all of the interfaces necessary to implement a specific task.
    The actual program code is enhanced using ABAP Objects. In order to better understand the programming techniques behind the Business Add-In enhancement concept, SAP recommends reading the section on ABAP Objects.
    Regards,
    Ferry Lianto

  • What is the differences between the older version of Oracle Financials and the 11 i

    What is the differences between the older version of Oracle Financials and 11i?

    Vijay,Thanks for your answer,but I am still not clear about it,I have a instance to describe my question at detail.
        If there is a final product A, and the planning strategy for A is 20(MTO), the procurement type of A is F(external procurement) at the view mrp2 in the material master datas.
    step1: I creat a sales order.
    step2: run MRP for A.
    step3: transfer the purchase requistion into a purchase order,and the field of acc.***.cat. in the purchase order will be filled out M automatically, because the acc.***.cat. in the planning strategy 20(MTO) is set with E.
        Well, the purchase order is created, what is the relationship between the sales order and the purchase order? What will be happened about costing between the SO and the PO?
        If I delete the E, I make the PO become a standard PO, what is difference between standard PO and the PO including E?
    Best Regards
    Bob

  • What is the difference between the function declared in the package and pac

    What is the difference between defining a function in the package and package body ?
    Edited by: user10641405 on Nov 19, 2009 1:29 PM

    If you describe a package, you will only see the functions declared in the spec.
    If you only declare them in the body then they are not available to other packages (they are private to the package, not public)

Maybe you are looking for