Why is A3 so slow when using brushes on my MacPro?

Does anyone know what I can do to my MacPro so the brushes stop jerking and pausing when using them. I have what I would think is a well equipped machine but I'm getting so tried of the brush stopping for several seconds when I'm brushing in an adjustment. I have my operating system and software on my main drive, with the A3 libraries and photos on a separate drive. I mostly capture RAW files with my Canon 7D. Below are my MP specs. Will a better video card make a considerable difference? Thank you in advance for all the great support in this forum!
System Software Overview:
  System Version:          Mac OS X 10.6.8 (10K540)
  Kernel Version:          Darwin 10.8.0
  Boot Volume:          Macintosh HD
  Boot Mode:          Normal
  Computer Name:          iDad's Mac Pro
  Secure Virtual Memory:          Not Enabled
  64-bit Kernel and Extensions:          No
  Time since boot:          1 day11:27
Model Name:          Mac Pro
  Model Identifier:          MacPro3,1
  Processor Name:          Quad-Core Intel Xeon
  Processor Speed:          2.8 GHz
  Number Of Processors:          2
  Total Number Of Cores:          8
  L2 Cache (per processor):          12 MB
  Memory:          16 GB
  Bus Speed:          1.6 GHz
  Boot ROM Version:          MP31.006C.B05
  SMC Version (system):          1.25f4
Hard Drives: Western Digital 'Caviar BLACK' 7200RPM 6Gb/s HDD 64MB Cache
NVIDIA GeForce 8800 GT:
  Chipset Model:          NVIDIA GeForce 8800 GT
  Type:          GPU
  Bus:          PCIe
  Slot:          Slot-1
  PCIe Lane Width:          x16
  VRAM (Total):          512 MB
  Vendor:          NVIDIA (0x10de)
  Device ID:          0x0602
  Revision ID:          0x00a2
  ROM Revision:          3233
  Displays:
Display Connector:
  Status:          No Display Connected
LCD2690WUXi:
  Resolution:          1920 x 1200 @ 60 Hz
  Pixel Depth:          32-Bit Color (ARGB8888)
  Display Serial Number:          88104014YA 
  Main Display:          Yes
  Mirror:          Off
  Online:          Yes
  Rotation:          Supported

My guess is the graphics card is not keeping up. With that box I would install a Radeon HD 5870 (or whatever is new now), tests at http://barefeats.com/wst10g7.html
Not that I think it would affect brushes, but the other thing I would do is install a SSD from OWC as boot drive.
HTH
-Allen Wicks

Similar Messages

  • Why is quicktime slower when using multiple mdat atoms

    Hi,
    I've been trying to generate a mov file and I noticed that the more mdat atoms I put in my mov file the more the file takes time to load on QuickTime, iTunes.
    Even worst, on the iPhone the file takes more than 3 minutes to load.
    If there are too many mdat atoms quicktime even says that the file is invalid ( error -2004 or -2002, I don't remember exactly).
    Why is quicktime/iTunes slower when using multiple mdat atoms ?
    Thanks,

    Yeah! Problem solved: It's a QT issue.
    Cause: Mac Update Software downloaded a faulty QT.
    Solution: Download QT from Apple's QT site.
    Great to have the Video back

  • Why Portal will be slow when we work on Theme Editor

    Hi Experts,
    Why Portal will be slow when we work on Theme Editor in Creating new Theme or modifying existing one.
    Note: Since i have done Branding for 6 to 7 Clients i fell same , portal runs very slow.
    Thanks
    Vijai

    Hi,
    use the Eclipse Theme Editor. No need to be logged on in the portal, hence: faster. You'll only have to upload the theme afterwards to the portal.
    br,
    Tobias

  • Query runs slower when using variables & faster when using hard coded value

    Hi,
    My query runs slower when i use variables but it runs faster when i use hard coded values. Why it is behaving like this ?
    My query is in cursor definition in a procedure. Procedure runs faster when using hard coded valus and slower when using variables.
    Can anybody help me out there?
    Thanks in advance.

    Hi,
    Thanks for ur reply.
    here is my code with Variables:
    Procedure populateCountryTrafficDetails(pWeekStartDate IN Date , pCountry IN d_geography.country_code%TYPE) is
    startdate date;
    AR_OrgId number(10);
    Cursor cTraffic is
    Select
              l.actual_date, nvl(o.city||o.zipcode,'Undefined') Site,
              g.country_code,d.customer_name, d.customer_number,t.contrno bcn,
              nvl(r.dest_level3,'Undefined'),
              Decode(p.Product_code,'820','821','821','821','801') Product_Code ,
              Decode(p.Product_code,'820','Colt Voice Connect','821','Colt Voice Connect','Colt Voice Line') DProduct,
              sum(f.duration),
              sum(f.debamount_eur)
              from d_calendar_date l,
              d_geography g,
              d_customer d, d_contract t, d_subscriber s,
              d_retail_dest r, d_product p,
              CPS_ORDER_DETAILS o,
              f_retail_revenue f
              where
              l.date_key = f.call_date_key and
              g.geography_key = f.geography_key and
              r.dest_key = f.dest_key and
              p.product_key = f.product_key and
              --c.customer_key = f.customer_key and
              d.customer_key = f.customer_key and
              t.contract_key = f.contract_key and
              s.SUBSCRIBER_KEY = f.SUBSCRIBER_KEY and
              o.org_id(+) = AR_OrgId and
              g.country_code = pCountry and
              l.actual_date >= startdate and
              l.actual_date <= (startdate + 90) and
              o.cli(+) = s.area_subno and
              p.product_code in ('800','801','802','804','820','821')
              group by
              l.actual_date,
              o.city||o.zipcode, g.country_code,d.customer_name, d.customer_number,t.contrno,r.dest_level3, p.product_code;
    Type CountryTabType is Table of country_traffic_details.Country%Type index by BINARY_INTEGER;
    Type CallDateTabType is Table of country_traffic_details.CALL_DATE%Type index by BINARY_INTEGER;
    Type CustomerNameTabType is Table of Country_traffic_details.Customer_name%Type index by BINARY_INTEGER;
    Type CustomerNumberTabType is Table of Country_traffic_details.Customer_number%Type index by BINARY_INTEGER;
    Type BcnTabType is Table of Country_traffic_details.Bcn%Type index by BINARY_INTEGER;
    Type DestinationTypeTabType is Table of Country_traffic_details.DESTINATION_TYPE%Type index by BINARY_INTEGER;
    Type ProductCodeTabType is Table of Country_traffic_details.Product_Code%Type index by BINARY_INTEGER;
    Type ProductTabType is Table of Country_traffic_details.Product%Type index by BINARY_INTEGER;
    Type DurationTabType is Table of Country_traffic_details.Duration%Type index by BINARY_INTEGER;
    Type DebamounteurTabType is Table of Country_traffic_details.DEBAMOUNTEUR%Type index by BINARY_INTEGER;
    Type SiteTabType is Table of Country_traffic_details.Site%Type index by BINARY_INTEGER;
    CountryArr CountryTabType;
    CallDateArr CallDateTabType;
    Customer_NameArr CustomerNameTabType;
    CustomerNumberArr CustomerNumberTabType;
    BCNArr BCNTabType;
    DESTINATION_TYPEArr DESTINATIONTYPETabType;
    PRODUCT_CODEArr PRODUCTCODETabType;
    PRODUCTArr PRODUCTTabType;
    DurationArr DurationTabType;
    DebamounteurArr DebamounteurTabType;
    SiteArr SiteTabType;
    Begin
         startdate := (trunc(pWeekStartDate) + 6) - 90;
         Exe_Pos := 1;
         Execute Immediate 'Truncate table country_traffic_details';
         dropIndexes('country_traffic_details');
         Exe_Pos := 2;
         /* Set org ID's as per AR */
         case (pCountry)
         when 'FR' then AR_OrgId := 81;
         when 'AT' then AR_OrgId := 125;
         when 'CH' then AR_OrgId := 126;
         when 'DE' then AR_OrgId := 127;
         when 'ES' then AR_OrgId := 123;
         when 'IT' then AR_OrgId := 122;
         when 'PT' then AR_OrgId := 124;
         when 'BE' then AR_OrgId := 132;
         when 'IE' then AR_OrgId := 128;
         when 'DK' then AR_OrgId := 133;
         when 'NL' then AR_OrgId := 129;
         when 'SE' then AR_OrgId := 130;
         when 'UK' then AR_OrgId := 131;
         else raise_application_error (-20003, 'No such Country Code Exists.');
         end case;
         Exe_Pos := 3;
    dbms_output.put_line('3: '||to_char(sysdate, 'HH24:MI:SS'));
         populateOrderDetails(AR_OrgId);
    dbms_output.put_line('4: '||to_char(sysdate, 'HH24:MI:SS'));
         Exe_Pos := 4;
         Open cTraffic;
         Loop
         Exe_Pos := 5;
         CallDateArr.delete;
    FETCH cTraffic BULK COLLECT
              INTO CallDateArr, SiteArr, CountryArr, Customer_NameArr,CustomerNumberArr,
              BCNArr,DESTINATION_TYPEArr,PRODUCT_CODEArr, PRODUCTArr, DurationArr, DebamounteurArr LIMIT arraySize;
              EXIT WHEN CallDateArr.first IS NULL;
                   Exe_pos := 6;
                        FORALL i IN 1..callDateArr.last
                        insert into country_traffic_details
                        values(CallDateArr(i), CountryArr(i), Customer_NameArr(i),CustomerNumberArr(i),
                        BCNArr(i),DESTINATION_TYPEArr(i),PRODUCT_CODEArr(i), PRODUCTArr(i), DurationArr(i),
                        DebamounteurArr(i), SiteArr(i));
                        Exe_pos := 7;
    dbms_output.put_line('7: '||to_char(sysdate, 'HH24:MI:SS'));
         EXIT WHEN ctraffic%NOTFOUND;
    END LOOP;
         commit;
    Exe_Pos := 8;
              commit;
    dbms_output.put_line('8: '||to_char(sysdate, 'HH24:MI:SS'));
              lSql := 'CREATE INDEX COUNTRY_TRAFFIC_DETAILS_CUSTNO ON country_traffic_details (CUSTOMER_NUMBER)';
              execDDl(lSql);
              lSql := 'CREATE INDEX COUNTRY_TRAFFIC_DETAILS_BCN ON country_traffic_details (BCN)';
              execDDl(lSql);
              lSql := 'CREATE INDEX COUNTRY_TRAFFIC_DETAILS_PRODCD ON country_traffic_details (PRODUCT_CODE)';
              execDDl(lSql);
              lSql := 'CREATE INDEX COUNTRY_TRAFFIC_DETAILS_SITE ON country_traffic_details (SITE)';
              execDDl(lSql);
              lSql := 'CREATE INDEX COUNTRY_TRAFFIC_DETAILS_DESTYP ON country_traffic_details (DESTINATION_TYPE)';
              execDDl(lSql);
              Exe_Pos:= 9;
    dbms_output.put_line('9: '||to_char(sysdate, 'HH24:MI:SS'));
    Exception
         When Others then
         raise_application_error(-20003, 'Error in populateCountryTrafficDetails at Position: '||Exe_Pos||' The Error is '||SQLERRM);
    End populateCountryTrafficDetails;
    In the above procedure if i substitute the values with hard coded values i.e. AR_orgid = 123 & pcountry = 'Austria' then it runs faster.
    Please let me know why it is so ?
    Thanks in advance.

  • My MacBook Pro is running very slow when using the internet and sometimes gives the pinwheel of death, any suggestions on how to fix?

    My MacBook Pro is running very slow when using the internet and sometimes gives the pinwheel of death, any suggestions on how to fix?

    <http://www.thexlab.com/faqs/sbbod.html>

  • Acrobat XI pro - Slow when using 'save as' or saving merged pdf

    System:
    Windows 7 pro 64-bit
    AMD FX 6300 processor
    HD 7770 1 GB video card
    1 TB disk space
    16 GB RAM
    MS Office 2013 Plus
    Adobe Acrobat XI Pro
    Issue:
    Saving pdf is very slow. Regardless if the location is a network location or desktop. Using the 'save as' option is also very slow. It's super slow when using the 'merge' option.
    Troubleshooting: 
    - uninstalled adobe, rebooted system, reinstalled adobe, installed updates - no changes
    - tried using optimize pdf option  when saving- no changes
    - ran adobe in compatiblity mode - no changes

    All available updates have been applied/installed.

  • HP Photosmart 8750 prints slow when using Photo Gray Cartidge

    HP Photosmart 8750 prints slow when using Photo Gray Cartidge ... sometimes indicates Black Cartridge failed, however upon reinserting works slow

    Welcome to the HP Forums ButchG,
    I see by your post that when printing with the photo gray cartridge the black cartridge will indicate that it has failed.
    I can help you with this issue.
    I would do a power reset to see if that will resolve the issue.
    With the printer still turned on, disconnect the power cable from the back of the printer, if the printer has external power module with a detachable power cord disconnect it for 15 seconds and then reconnect it.
    Hold down the power button for 10 seconds to drain the power.
    Then disconnect the power cable from the wall outlet.
    Wait 10 seconds and reconnect the power cable back to the wall outlet first, then the back of the printer and power it on again.
    Make sure the printer is connected directly to wall outlet. (don't use a power hub or a surge protector)
    I have provided a document for the cleaning the contacts and reseating the cartridge.
    'Cartridge Failed' or 'Cartridge Not Compatible' Error Message.
    What are the ink levels?
    Are you using Genuine HP Cartridges?
    Check the date on the cartridges to make sure they are still in warranty. (not old stock)
    If you need further assistance, let me know.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Live Mirroring - when using Brush

    Hi people,
    I was wondering is there is any way/plugin/fastest workaround to achieve the Live-Mirroring (left=Right) update effect when using Brush to paint?
    Similar to the realtime mirror feature in Corel Painter. 

    Well, this is not a feature I miss (ultimately is seems more of an illustration task than a photo editing one) but sometimes it can appear mystifying which feature requests the product teams seem to pick up or not.
    But one has to consider that even if they should be working on such a feature they might not be able to speak about it before the official announcement.

  • Why won't cells autopopulate when using numbers on the ipad? Anyone have a fix? Have also created a dropdown menu, but that does not translate from excel to numbers either.

    Why won't cells autopopulate when using numbers on the ipad as they will in excel? Anyone have a fix? I have also created a dropdown menu in excel, but that does not translate from excel to numbers either.

    Glad you got it sorted out.
    Diane123456 wrote:
    > Thanks Vix, Joe, and Mad Dog for responding, the site is
    in
    > development so it's behind a password, which I probably
    could share
    > but MD is right, it was a margin issue. I didn't think I
    needed to
    > set a margin but I had to put a left margin of 2em on it
    for the
    > numbers to display on IE7 or IE6
    >
    > This is actually a rather common issue with CSS layouts
    (it is not an
    > issue with designs using tables) - there are several
    posts for ULs
    > which you may be interested in - see
    >
    >
    http://www.adobe.com/cfusion/communityengine/index.cfm?event=showdetails&postId=
    > 1981&productId=1&loc=en_US
    >
    > -- and once I got the numbers to show I ran into the
    same problem as
    > the commenters on the above thread, which noticed that
    the vertical
    > alignment doesn't work well with IE, and which noted
    that apparently
    > IE has a stutter because it just kept repeating "1" "1"
    "1" -- so I
    > finally went with a hanging indent and just put the
    numbers in there
    > manually - fortunately it's not a long list.... if you
    have a fix
    > for the stutter, or know of another place to get help
    with CSS layout
    > browser quirks please share -- if I find another one
    I'll share also
    >
    > thanks again, Diane

  • Why does iMovie abruptly abort when using record voice over?

    Why does iMovie abruptly abort when using record voice over?

    Hey PTD1,
    Thanks for the question. If I understand correctly, iMovie unexpectedly quits when using record voiceover. I would recommend that you read this article, it may be able to help the issue.
    iMovie: How to troubleshoot "Application Unexpectedly Quit" messages - Apple Support
    Thanks for using Apple Support Communities.
    Have a great day,
    Mario

  • HT3310 Why can't I hear when using my ear plugs on my I-pad

    WHy can't I hear when using my apple ear phones on my I-pad?

    Make sure that they are inserted all the way into the jack. It takes a firm push to insert them all the way.

  • Adobe is slow when using the reader

    adobe is slow when using the reader;  It is very slow when I give to another person

    I am working in Windows 7. 
    I have a pdf with 1900 pages of maps.  I am using adobe acrobat 10 standard and sampling adobe acrobat xI pro.  When I click on links moving from each map takes about 8 secs.  when I save the file and give to someone that is just using adobe reader the process takes 20 to 30 seconds to move. 

  • IPhone 6 and 6 plus camera extremely slow when using flash

    I have noticed that the iPhone 6 and 6 plus camera is extremely slow when using flash, it is definitely slower than iPhones 5 and 5s.
    Any explanation/solution for this?

    I Have done some more testing and it seems turning off HDR resolves the issue

  • Why does Photoshop CC running slow when using Mixer brush tool

    Why does Photoshop CC and Photoshop C6 running SOOO slowly when using Mixer brush tool??
    Only to create one stroke it takes several seconds.
    I have to wait a long time to do next stroke. I can't work with this. How do I fix this??
    I have a new computer, a Mac Book Pro with 16 GB ram, so I have plenty of ram.

    You really have to keep your brush size small with the Mixer Brush tool.  And that necessitates keeping your canvas failry small as well.
    Back a few years ago I did a whole painting with the Mixer Brush once and some of the bristle brushes - just to see if I could - and I found I had to really limit the brush size (e.g., to 50 to 75) in order to get enough responsiveness to keep painting.  In that case my canvas was 4096 x 5120.  It's not impossible to get a good, professional result, but you have to be careful about sizing things right.
    -Noel

  • Why is the Tick Count function slow when used with a .dll but fine with normal lab view code?

    when using the Tick Count millisecond timer with a .dll I've written in C, I'm getting some odd timing issues.
    When I code the function I want (I'll explain it below in case it helps) in LV and run it as a subVI, feeding it the Tick count as an argument, the function runs quickly, but not quite as quickly as I would like. When I feed this same subVI just an integer constant rather than the Tick Count, it takes about the same amount of time, maybe a tiny bit more on average.
    When I bring in my function from a .dll, however, I start to run into problems. When I feed my function an integer constant, it is much faster than my subVI written in LV. When I feel my .dll the Tick Count, however, it slows down tremendously. I'm including a table with the times below:
                 |  Clock   |   Constant   |
    SubVi:   | 450ms  |  465ms       |
    .dll         | 4900ms|  75ms         |
    This is running the function 100,000 times. The function basically shifts the contents of a 2-dimensional array one place. For this function, it probably won't be a huge deal for me, but I plan on moving some of my other code out of LV and into C to speed it up, so I'd really like to figure this out.
    Thanks,
    Aaron

    Hi Aaron,
    Thanks for posting the code -- that made things a lot clearer for me. I believe I know what's going on here, and the good news is that it's easy to correct! (You shouldn't apologize for this though, as even an experienced LabVIEW programmer could run into a similar situation.) Let me explain...
    When you set your Call Library Function Node to run in the UI Thread you're telling LabVIEW that your DLL is not Thread-safe -- this means that under no circumstances should the DLL be called from more than one place at a time. Since LabVIEW itself is inherently multithreaded the way to work with a "thread-unsafe" DLL is to run it in a dedicated thread -- in this case, the UI thread. This safety comes at a price, however, as your program will have to constantly thread-swap to call the DLL and then execute block diagram code. This thread-swapping can come with a performance hit, which is what you're seeing in your application.
    The reason your "MSTick fine behavior.vi" works is that it isn't swapping threads with each iteration of the for loop -- same with the "MSTick bad behavior.vi" without the Tick Count function. When you introduce the Tick Count Function in the for loop, LabVIEW now has to swap threads every single iteration -- this is where your performance issues originate. In fact, you could reproduce the same behavior with any function (not just TIck Count) or any DLL. You could even make your "MSTick fine behavior.vi" misbehave by placing a control property node in the for loop. (Property nodes are also executed in the UI thread).
    So what's the solution? If your DLL is thread-safe, configure the call library function node to be "reentrant." You should see a pretty drastic reduction in the amount of time it takes your code to execute. In general, you can tell if your DLL is thread-safe when:
    The code is thread safe when it does not store any global data, such as global variables, files on disk, and so on.
    The code is thread safe when it does not access any hardware. In other words, the code does not contain register-level programming.
    The code is thread safe when it does not make any calls to any functions, shared libraries, or drivers that are not thread safe.
    The code is thread safe when it uses semaphores or mutexes to protect access to global resources.
    The code is thread safe when it is called by only one non-reentrant VI.
    There are also a few documents on the website that you may want to take a look at, if you want some more details on this:
    Configuring the Call Library Function Node
    An Overview of Accessing DLLs or Shared Libraries from LabVIEW
    VI Execution Speed
    I hope this helps clear-up some confusion -- best of luck with your application!
    Charlie S.
    Visit ni.com/gettingstarted for step-by-step help in setting up your system

Maybe you are looking for

  • ORA-20100: AppDomain could not be created for the specified security level

    We recently updated our development environment to Visual Studio 2010. We have previously deployed (with success) .Net stored procedures from Visual Studio 2005 to our Oracle 10gR2 database. I am currently trying to configure a local instance (called

  • Nokia Messaging memory usage

    Hello, Couple of points related to Nokia Messaging memory usage. Nokia Messaging stores, by default, 2kb of each message on the device. Even if you have hundreds of emails, they don't take up much space until you start getting into attachments. The d

  • What would cause a subvi to show its FP even when it is set not to show (default setting)?

    I have a subvi that suddenly decided to show itself even when instructed not to.  What kinds of things would cause this? Thanks! Bill (Mid-Level minion.) My support system ensures that I don't look totally incompetent. Proud to say that I've progress

  • Adding style sheet tag to struts tag

    hi I am unable to add style sheet settings to struts here is my Code =========== <link href="style sheet name" rel="stylesheet" type="text/css"> <html:text property="accNo" class="textone"/> The Jboss server throws and error saying invalid attribute

  • Why is the Keyboard Viewer so small??

    Does anyone know of a way to make the Keyboard Viewer larger? I have looked in the Prefs > International pane fields, but see nothing that will allow me to enlarge this valuable feature. I must be going blind because its difficult to make out the key