Minimizing PCI resource usage

Hi,
I'm using 2 cards for a specific application. 
By changing the voltage on the analog outputs (I use both analog outputs) of a pci-6251 I move a scanning mirror to a desired position. After I find the desired position I just leave the voltage output as it is. At this point I use a second card to count photons (not a NI card).
My problem is that the second card doesn't  run properly when the pci-6251 is supplying voltage simultaneously. When I turn off the program that controls the voltage output on the pci-6251 the second card works fine. I realized that both cards compete for the computers resource usage. When I don't use the pci-6251 I can have as many as 2M counts/sec on the other card and when I do use the pci-6251 I can only have ~ 80k counts/sec. 
I don't understand why the pci-6251 uses so much of the computers resources just to keep a constant voltage output. Is there a why to solve this problem so the 2 cards work in harmony with each other?
Thanks for the help,
Eyal

Hi Eyal,
Are voltage values being constantly written to the analog output when the mirror is in the correct position? This analog output voltage will remain constant until it is changed so one thing that may reduce the use of resources is to write the final voltage values to the PCI-6251 and then close all references to it. This article gives a bit more information about this. Hopefully this will allow your other card to run as quickly as possible. Let me know if this helps.
Regards,
Kent
Applications Engineer
Digital Multimeter Home

Similar Messages

  • Capturing session level resource usage in RAC environment

    I have used Tom Kyte's runstats.sql to capture resource usage by a session in a single instance environment. http://asktom.oracle.com/tkyte/runstats.html
    The procedures in the package take before and after snapshot from v$mystat. My question is how does in change in RAC enviornment with more than one instance?
    There is an equivalent table gv$mystat which has an additional column inst_id. I will appreciate if somebody can provide me some insight.

    I wish everyone would stop using V$ objects where GV$ objects exist. Everything you write using V$ is a minimal or no value when run on a RAC cluster. However everything written using GV$ will always run on a stand-alone database.
    Just convert the code and you should be fine.
    At the University of Washington I never even teach about V$ dynamic performance views beyond the concept that they are a legacy of the time before RAC. There are about 107 V$s that have no global equivalent but they mostly related to instance recovery (RMAN).

  • PCI Resource conflict using PLX9054

    We use a PLX9054 PCI chip in our PXI designs. We have found that for some computers, only four modules can be used per PCI bus segment -- the fifth module reports a resource conflict. Looking at the detailed resource usage, there does not seem to be any conflict in the address range or IO address range. On some computers, all five (or more) modules work without a problem.
    The problem may be in what addresses are assigned to the modules -- some debugging suggests that the conflicted module has been assigned addresses reserved for the ISA bus, and are not carried across the PCI bridge we use to run the PXI crates.
    Has anyone else seen this? PLX tech support has not provided any insight. 
    Solved!
    Go to Solution.

    I agree that the problem is the BIOS, not the OS.  From the resources requested, though, I suspect that the problem is I/O space.  Can you change the resource requests to eliminate the I/O space requirement?  It's a scarce resource that's likely to cause problems, and I'd recommend not using it even if it's not the cause of this particular problem.
    A bridge's minimum I/O allocation is 4kB, and there are only 16 allocations (64 kB) available.  While that sounds like plenty for what you're doing, it's complicated by ISA mode aliasing, which essentially limits you to 256 bytes of every 1024 bytes.  And the BIOS might not allocate I/O space well (I've seen it before).
    For your memory space requests, you might as well make them both 4kB.  The minimum increment for a bridge is 1 MB, so all boards in your chassis can use up to 128 kB without using any more system resources.
    Let me know if using only memory space fixes it.
    - Robert

  • Project Online - offline project plan prompts for date range to be entered when accessing Resource Usage view

    When I save a project plan to my local computer from Project Online and open it up in an offline mode and access Resource Usage view I get prompted with Date Range dialog boxes with the first one saying "Show resources/assignments that start or finish
    after:" and the second one with "And before:".
    I don't have any filters that are setup in Project Online that are not available in offline mode to trigger these prompts.
    Please let me know what could be causing the date range prompts. Thanks.

    Hi,
    You probably retrieve an enterprise filter into your local file. Just open the organizer from MS Project, go to the filter tab (be sure to have your project selected in the drop down menu at the top left of right of the organizer) and delete the date range
    filter.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • 'Resource Usage' field in Planner workbench

    Hi,
    Currently the 'Resource Usage' field in Planner Workbench > Item > Routing Operation > Resources doesn't not display decimal places.
    What do I need to change in profile option or preference or anywhere else so that atleast 1 place after decimal is display. In the database column this field has data with decimal places.
    Thanks

    Hi Geert,
    Thanks for the advice.
    I put '1' decimal place in Capacity Plan but it didn't work. Then I entered same value in all decimal places in all tab in Preferences, then it worked.
    Thanks
    Dee

  • Issue with Resource Usage

    When I open up the project plan I see the following in the Resource Usage view for John (resource):
    The level of effort for the task is 8 hrs for that day. However I am seeing a discrepancy where the total effort for that day appears as 9.6 hrs. I don't know where the additional 1.6 hrs is coming from.
    The issue is the same for the other resources in the project.
    Has anyone seen this issue before?
    Thanks in advance. 

    Hi Bomasamudram,
    And you'll only see this check box for Summary Resource Assignemtns if you choose the account each time you start project pro...
    Ben Howard [MVP] | web |
    blog |
    book | P2O

  • Specified load buffer resource usage is above currently available value

    Hello,
    I am trying to load data into my ASO database. The .mxl and the rules file
    have worked fine on the development machine but now on another PC I get this
    error while executing the .mxl
    Initialize load_buffer with buffer_id 3
    Execution Message:
    Specified load buffer resource usage [1] is above currently available valu [0]
    The outline verifies fine and there is no other data in this ASO database.
    Does this error mean I have to increase the available resources (how?).
    Thanks
    metalray

    Hi,
    There has to be something wrong with your import statement, also I am not sure why you are spooling the same file as writing the import errors as this will overwrite the file.
    Here is an example of a script I just ran and it ran through without any problems.
    spool on to 'C:\Out1.txt';
    login admin  password on localhost;
    alter database 'ASObasic'.'basic' destroy load_buffer with buffer_id 2;
    alter database 'ASObasic'.'basic' initialize load_buffer with buffer_id 2;
    import database 'ASObasic'.'basic' data connect as 'admin' identified by 'password' using server rules_file 'DATA' to load_buffer with buffer_id 2 on error write to 'C:\Out.out';
    import database 'ASObasic'.'basic' data from load_buffer with buffer_id 2 override values;
    logout;
    I would open a maxl window and try pasting in line by line as well.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Clear resource usage counter on ACE module

    Hi
    Does anybody know how to clear the resource usage counter on an ACE module?
    We use an ACE20-MOD-K2 with version A2(3.5).
    Here you can see that after issuing 'clear stats resource-usage' the counters are still the same.
    uzhlbsrv1/Admin# sh resource usage resource rate bandwidth
                                                         Allocation
            Resource         Current       Peak        Min        Max       Denied
    Context: Admin
      bandwidth                  1966       3971    7487500  625000028          0
    Context: NOZONE
      bandwidth                     0       4450          0  617512528          0
    Context: ZONE1
      bandwidth              14021827  549340375          0  617512528  192084322
    Context: ZONE2
      bandwidth                197520   69634789          0  617512528      29385
    Context: ZONE3
      bandwidth                 38756   78911285          0  617512528    6471653
    Context: ZONE4
      bandwidth                     0       3052          0  617512528          0
    uzhlbsrv1/Admin# clear stats resource-usage
    uzhlbsrv1/Admin# sh resource usage resource rate bandwidth
                                                         Allocation
            Resource         Current       Peak        Min        Max       Denied
    Context: Admin
      bandwidth                   396        841    7487500  625000028          0
    Context: NOZONE
      bandwidth                     0       4450          0  617512528          0
    Context: ZONE1
      bandwidth               9350189  549340375          0  617512528  192084322
    Context: ZONE2
      bandwidth                128087   69634789          0  617512528      29385
    Context: ZONE3
      bandwidth                133229   78911285          0  617512528    6471653
    Context: ZONE4
      bandwidth                     0       3052          0  617512528          0
    Or is it a bug eventually?
    Thanks
    Patrik

    Hi Patrik,
    What could one of the issue here is, if this box is in production and is being used, as soon as you clear the coutners, the new traffic is still flowing in, so ace will populate the new stats. if you take this box out of production then you should be able to see all the traffic gone.
    Also to reinforce my previous argument, if you happen to see the stats second time, they are reduced , which will only point that the system is actively receiving and before you do a second show resource, it would have received some traffic and it will also take into account the existing traffic flow across the box.
    Most likely not a Bug.
    Regards
    Abijith

  • Kernel doesn't boot (setting up standard PCI resources

    Owkido I've got a big problem. I've upgraded my kernel to the latest with pacman (2.6.19.2-1). So everything was fine, was going for a reboot. But then.... the system just won't go any further then the following message:
    "Setting up standard PCI resources"
    I've tried the beyond kernel, but same story. I've searched the wiki and this forum, but I could not find any solution.
    Problem is I've cleared my pacman cach, so I can't go back to my previous state (which was old anyway )
    Edit, I forgot, the specs:
    Asus M3000N laptop
    Pentium-M 1600
    I855GM

    Well the laptop hasn't got any updates in a while. But my mean PC gets his updates every day. I also read the news on the frontpage, I'm aware of that problem.
    So I downloaded also the 0.8 alpha release (just in case ). Both options (archlinux installation and archlinux installation ide-legacy), give me the same problem. It just hangs on boot.
    I think it is a problem in de >2.6.16 kernel. But i don't know a thing about kernelconfigs and how to set it up properly

  • Can't see content of Text Column cells in Resource Usage View

    I am having an issue adding a custom pre-defined & pre-populated text column field to resource usage view ( in a pooled resource situation) in microsoft project 2013. It doesn't see how the Text column has been renamed or the content of those column's
    cells. Is there a workaround for this? Thanks

    TechNew User1111,
    Go to the following website and take a look at FAQs 51 and 37. They will provide the answer. If you still have a question, post back.
    http://project.mvps.org/faqs.htm
    Hope this helps.
    John

  • Irregular resource usage

    (following a different topic, where there does not seem to be a solution...)
    I would like to have one project with all my others projects as tasks, but not sub projects.
    There I assign resources to tasks (really other projects) and then for each project each resource is available according to this master project. 
    Can I manually split assignments of resources to tasks, so that for example a certain resource works 30% on one task from January 1 to March 31 - and 70% on a different task. Then from April 1 he will stop working on the first task and work 100% on the second
    task. 
    I know this can be done manually by using sub tasks, but is it possible to do directly?
    I am using MS Project 2013, (service pack 1), not server.
    Valgardur Gudjonsson

    Hi Valgardur,
    Have you consider using the resource usage view? This will allow you doing what you want on a single task, without having to split it into various sub-tasks. This view shows on the left part all tasks per resources with assignment fields and on the right
    part a "Excel-like" timephased grid you can enter work in.
    In the "view" tab of the ribbon, you can set the timescale to "week" or "month" then type directly in the grid a certain number of hours of planned work per resources per time period. Splitting your window to display the resource
    graph in the bottom part is also very useful.
    Below a screenshot (unfortunately in french):
    Hope this helps.
    Guillaume Rouyre - MBA, MCP, MCTS

  • Unable to update wip resource usage rate using wip_txn_interface

    Hello All,
    I am unable to update wip resource usage rate using wip_txn_interface.
    The rows were processed in the interface table and Cost Manager also completed normal, but the rows were not updated.
    Can you please help?
    Thanks,
    Gani

    HI Gani,
    Is that stuck with any error?, please provide the error message if possible.
    Thanks,
    Raghav

  • Using PCI resource via NI-VISA server

    I need to use a PCI resource (NI 6221) installed on a server from a client via NI-VISA server.
    I use this system with GPIB and TCP/IP resources: all resources connected on the "server" are accessible.
    Is-it a NI-VISA server limitation?

    Hello,
    You might be able to use your PCI DAQ board with NI-Visa. At least you should be able to get your VISA resource name from your DAQmx board.
    Here are some links on our website which may help :
    http://digital.ni.com/public.nsf/allkb/1321A882CB5​75512862572D400602EDB?OpenDocument (Programmatically Get VISA Resource Name of PXI DAQ Card Using DAQmx)
    http://decibel.ni.com/content/docs/DOC-5344 (Search VISA resources to find Custom Aliases)
    Just to remind you that NI is not recommending to access your DAQ boards this way.
    Other related links :
    http://digital.ni.com/public.nsf/allkb/9C4E9FD0C74​69BC286256F100074EADC?OpenDocument (How Do I Use NI-DAQmx Base with PCI/PXI Devices on Windows?)
    http://zone.ni.com/devzone/cda/tut/p/id/4713 (Using the VISA Driver Development Wizard and NI-VISA to Develop a PXI/PCI Driver in Windows)
    Regards,
    Yannick D.
    National Instruments France
    #adMrkt{text-align: center;font-size:11px; font-weight: bold;} #adMrkt a {text-decoration: none;} #adMrkt a:hover{font-size: 9px;} #adMrkt a span{display: none;} #adMrkt a:hover span{display: block;}
    >> Du 30 juin au 25 août, embarquez pour 2 mois de vidéo-t'chat ! Prenez place pour un voyage au coe...

  • System resource usage profile

    Our Forte OLTP application runs on HP-UX 10.20. A transaction uses
    resources through the Forte partition and the Oracle database.
    Is there a way to apportion CPU time, Memory, IO bytes, etc to a
    single transaction? Ideally we would indicate the start and the end of a
    transaction and then collect resource usage statistics. As a Forte
    partition is a UNIX process which accumulates the CPU times of all
    transactions processed I see no easy way to break down the CPU usage per
    transaction. We need to do capacity planning and assigning system
    resources to transactions is imperative in order to know when the server
    will become saturated. Any ideas?
    Thanks
    Jose Suriol
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi,
    What version of project management is the client using? Please take a look at prim55774in our knowledgebase for further information on a possibly cause for why the resource usage profile is blank.
    If this is not the case please contact support for further assistance at:
    http://primavera.com/customer/support.asp.
    Saryn

  • Question on "show resource usage"

    Hi,
    Hope you are doing great!
    the "show resource usage" indicate the  resource usage of the security appliance or for each context.
    I am wondering the below output:
    FWSM# show resource usage
    Resource              Current         Peak      Limit        Denied Context
    SSH                         1            2          5             0 System
    Syslogs [rate]           1573        65155  unlimited             0 System
    Conns                   29937       192916  unlimited             0 System
    Xlates                   6751       180865  unlimited             0 System
    Hosts                    6218        65515  unlimited             0 System
    Conns [rate]              665        32500  unlimited             0 System
    Fixups [rate]             467         4617  unlimited             0 System
    FWSM#
    does it mean the FWSM is generating 1573 syslogs/second currently? and it used to generate 65155  syslog/second?
    I don't believe the FWSM can generate 65155 syslogs per second....
    does it mean anything else?
    Thanks!

    Hello,
    The command can be use on single and multiple mode:
    Example:
    show resource usage context admin
    Check this links for more information about this command:
    http://www.cisco.com/en/US/docs/security/asa/asa84/command/reference/s4.html#wp1527546
    Not sure if the syslogs are per second or what is interval, but yes, those are the amount of logs being generated.
    Regards,
    Felipe.

Maybe you are looking for

  • Can't synch iPod classic to iTunes after updating iTunes. a duplicate file name was specified.

    I can't synch my iPod classic. "A duplicate file name was specified." I tried on two different computers on which it had previously worked fine.

  • New to Portal and need help with PDK

    Hi there, I have looked all over otn to find a simple document that explain how to install and use PDK but I can't find any. Can someone help me with this? There is a video on otn but it doesn't work here. Regards, Robert

  • How can i find out total no of sunday in the year

    Hi Experts, how can i find out total no of sunday's in the particular year. please can any one help how can i do that Regards, Arun

  • Forms 6i Iconic Buttons

    I have a previous Form Developed On Forms 6 and it was working properlly , when The Forms 6i Installed Most Buttons Displayed Without Icons also In the Forms Designer The New Created Buttons has no icon , the property iconic = YES the icon file name

  • Query for mapping

    HI, I have three tables USERS -> USER_ID,NAME,ROLE CIRCLES -> CIRCLE_ID,NAME USER_CIRCLE_MAP -> USER_ID,CIRCLE_ID I want a SQL query that returns all contents in circles table if USERS.ROLE is not 'END_USER'. IF users.role is 'END USER' I want all th