Is there a way to run CUDA applications with the CUDA device being a secondary adapter?












1















I've been trying to run a CUDA program on a remote computer which has Windows 7 installed. The GPU is GeForce GTX 480. One of the problems I've been facing is that, the computer has two adapters,

1) Standard VGA Adapter

2) NVIDIA GeForce GTX 480



Even though this shows in the device manager. The desktop uses the standard VGA Adapter. I'm assuming this is because the Standard VGA is the primary adapter. Also the device manager shows that the monitor is connected to the standard VGA Adapter. In this scenario if i try to run any CUDA application it fails to recognise a CUDA capable device.



Is it necessary for the NVIDIA adapter to be the primary one? Or is there any way to use CUDA when the graphics card is a secondary adapter. I've seen a few posts in the NVIDIA forums on this before, one suggests using another low cost NVIDIA card as the primary adapter, but that is currently not an option. I couldn't find any other solutions.



Thanks



I tried running the deviceQuery test from the NVIDIA GPU Computing Samples. This was the result i obtained



CUDA Device Query (Runtime API) version (CUDART static linking)
cudaGetDeviceCount FAILED CUDA Driver and Runtime version may be mismatched
FAILED



The driver version I'm using is 263.06. The CUDA version is 3.2



I ran the same test on my desktop which also has windows 7 and a GeForce GTX 465. The CUDA toolkit version is 3.2. The driver version was the same and the test passed, although it failed with an older driver.










share|improve this question





























    1















    I've been trying to run a CUDA program on a remote computer which has Windows 7 installed. The GPU is GeForce GTX 480. One of the problems I've been facing is that, the computer has two adapters,

    1) Standard VGA Adapter

    2) NVIDIA GeForce GTX 480



    Even though this shows in the device manager. The desktop uses the standard VGA Adapter. I'm assuming this is because the Standard VGA is the primary adapter. Also the device manager shows that the monitor is connected to the standard VGA Adapter. In this scenario if i try to run any CUDA application it fails to recognise a CUDA capable device.



    Is it necessary for the NVIDIA adapter to be the primary one? Or is there any way to use CUDA when the graphics card is a secondary adapter. I've seen a few posts in the NVIDIA forums on this before, one suggests using another low cost NVIDIA card as the primary adapter, but that is currently not an option. I couldn't find any other solutions.



    Thanks



    I tried running the deviceQuery test from the NVIDIA GPU Computing Samples. This was the result i obtained



    CUDA Device Query (Runtime API) version (CUDART static linking)
    cudaGetDeviceCount FAILED CUDA Driver and Runtime version may be mismatched
    FAILED



    The driver version I'm using is 263.06. The CUDA version is 3.2



    I ran the same test on my desktop which also has windows 7 and a GeForce GTX 465. The CUDA toolkit version is 3.2. The driver version was the same and the test passed, although it failed with an older driver.










    share|improve this question



























      1












      1








      1


      0






      I've been trying to run a CUDA program on a remote computer which has Windows 7 installed. The GPU is GeForce GTX 480. One of the problems I've been facing is that, the computer has two adapters,

      1) Standard VGA Adapter

      2) NVIDIA GeForce GTX 480



      Even though this shows in the device manager. The desktop uses the standard VGA Adapter. I'm assuming this is because the Standard VGA is the primary adapter. Also the device manager shows that the monitor is connected to the standard VGA Adapter. In this scenario if i try to run any CUDA application it fails to recognise a CUDA capable device.



      Is it necessary for the NVIDIA adapter to be the primary one? Or is there any way to use CUDA when the graphics card is a secondary adapter. I've seen a few posts in the NVIDIA forums on this before, one suggests using another low cost NVIDIA card as the primary adapter, but that is currently not an option. I couldn't find any other solutions.



      Thanks



      I tried running the deviceQuery test from the NVIDIA GPU Computing Samples. This was the result i obtained



      CUDA Device Query (Runtime API) version (CUDART static linking)
      cudaGetDeviceCount FAILED CUDA Driver and Runtime version may be mismatched
      FAILED



      The driver version I'm using is 263.06. The CUDA version is 3.2



      I ran the same test on my desktop which also has windows 7 and a GeForce GTX 465. The CUDA toolkit version is 3.2. The driver version was the same and the test passed, although it failed with an older driver.










      share|improve this question
















      I've been trying to run a CUDA program on a remote computer which has Windows 7 installed. The GPU is GeForce GTX 480. One of the problems I've been facing is that, the computer has two adapters,

      1) Standard VGA Adapter

      2) NVIDIA GeForce GTX 480



      Even though this shows in the device manager. The desktop uses the standard VGA Adapter. I'm assuming this is because the Standard VGA is the primary adapter. Also the device manager shows that the monitor is connected to the standard VGA Adapter. In this scenario if i try to run any CUDA application it fails to recognise a CUDA capable device.



      Is it necessary for the NVIDIA adapter to be the primary one? Or is there any way to use CUDA when the graphics card is a secondary adapter. I've seen a few posts in the NVIDIA forums on this before, one suggests using another low cost NVIDIA card as the primary adapter, but that is currently not an option. I couldn't find any other solutions.



      Thanks



      I tried running the deviceQuery test from the NVIDIA GPU Computing Samples. This was the result i obtained



      CUDA Device Query (Runtime API) version (CUDART static linking)
      cudaGetDeviceCount FAILED CUDA Driver and Runtime version may be mismatched
      FAILED



      The driver version I'm using is 263.06. The CUDA version is 3.2



      I ran the same test on my desktop which also has windows 7 and a GeForce GTX 465. The CUDA toolkit version is 3.2. The driver version was the same and the test passed, although it failed with an older driver.







      nvidia-geforce cuda display-adapter






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Dec 8 '10 at 17:20







      Slartibartfast

















      asked Dec 8 '10 at 12:50









      SlartibartfastSlartibartfast

      10614




      10614






















          3 Answers
          3






          active

          oldest

          votes


















          0














          Check you BIOS, you can usually configure what should be used as your primary video adapter there and I suspect it is misconfigured - it should be set to use PCIe-16, and not the onboard.



          You may find that changing this configuration option will hide the onboard adapter from the OS entirely (it does on my machine, for example).






          share|improve this answer
























          • Thanks, I had to make it the primary adapter for the time being, though I really wanted to use the GPU just for CUDA

            – Slartibartfast
            Dec 9 '10 at 13:09



















          0














          It shouldn't need to be the primary adapter. It might be how you are trying to grab the device...I would try getting the dev tools for cuda installed on the PC in question and using the enumeration utility and posting the output if it fails.



          another note, in some drivers CUDA functionality is disabled despite the fact that the card is capable of it.



          it looks like the gtx480 might not be supported by the 260 inf out of the box. a discussion of similar problems to yours is here: http://lunatics.kwsn.net/12-gpu-crunching/split-powerspectrum-unit-test.msg33737.html;topicseen



          in this discussion at least one user has the gtx480 running as a non-display adapter and doing cuda processing with it:



          @Ghost: I did get the following so far:
          - Made the modifications appropriate to the inf file, and successfully installed 263.06 TCC driver ( On 480 )
          - Disabled the device as a 'normal' display (using mobo display instead)
          - Merged the nSight registry key that disables WPF acceleration (for good measure, shouldn't be necessary with no active display on it)


          Next step should be to switch the devices driver mode to TCC mode. That's done via the command:
          nvidia-smi --driver-model=

          howevr I get this response:


          ultimately some users had success with a patched inf from laptopvideo2go.



          hope that helps. I'm convinced it's that you have a driver loading that says your card doesn't support cuda even though it does.






          share|improve this answer


























          • The driver is CUDA enabled and I've added the results obtained from the deviceQuery test from the code samples. Is this what you were referring to?

            – Slartibartfast
            Dec 8 '10 at 17:22











          • edited to add a link to a discussion on this topic...ultimately i think it's a busted driver...i would try the one they reference on laptopvideo2go. some with similar problems have gotten this card running with it.

            – RobotHumans
            Dec 8 '10 at 18:00











          • and yes, you provided exactly the info i was looking for

            – RobotHumans
            Dec 8 '10 at 18:14











          • Thanks a lot for the link. Although I couldn't find any succesful attempts there but I'll keep trying :) They seem to use TCC mode for non Tesla cards, if that can be run, maybe even running CUDA via Remote Desktop might be possible.

            – Slartibartfast
            Dec 9 '10 at 13:21











          • Yes, the thread relates to tesla mode, but the point I was trying to get at is that it is possible with an unused video card and cuda processing. You output states that either there isn't a cuda card present or there is a version mismatch. I would go with the patched drivers, at least as a test, to see if they cause the card to be detected

            – RobotHumans
            Dec 9 '10 at 13:24



















          0














          Is a display plugged into it? I know for the ATI, you have to have a monitor plugged into each graphics card to use them.






          share|improve this answer























            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "3"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f219702%2fis-there-a-way-to-run-cuda-applications-with-the-cuda-device-being-a-secondary-a%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            3 Answers
            3






            active

            oldest

            votes








            3 Answers
            3






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Check you BIOS, you can usually configure what should be used as your primary video adapter there and I suspect it is misconfigured - it should be set to use PCIe-16, and not the onboard.



            You may find that changing this configuration option will hide the onboard adapter from the OS entirely (it does on my machine, for example).






            share|improve this answer
























            • Thanks, I had to make it the primary adapter for the time being, though I really wanted to use the GPU just for CUDA

              – Slartibartfast
              Dec 9 '10 at 13:09
















            0














            Check you BIOS, you can usually configure what should be used as your primary video adapter there and I suspect it is misconfigured - it should be set to use PCIe-16, and not the onboard.



            You may find that changing this configuration option will hide the onboard adapter from the OS entirely (it does on my machine, for example).






            share|improve this answer
























            • Thanks, I had to make it the primary adapter for the time being, though I really wanted to use the GPU just for CUDA

              – Slartibartfast
              Dec 9 '10 at 13:09














            0












            0








            0







            Check you BIOS, you can usually configure what should be used as your primary video adapter there and I suspect it is misconfigured - it should be set to use PCIe-16, and not the onboard.



            You may find that changing this configuration option will hide the onboard adapter from the OS entirely (it does on my machine, for example).






            share|improve this answer













            Check you BIOS, you can usually configure what should be used as your primary video adapter there and I suspect it is misconfigured - it should be set to use PCIe-16, and not the onboard.



            You may find that changing this configuration option will hide the onboard adapter from the OS entirely (it does on my machine, for example).







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Dec 8 '10 at 12:58









            DMA57361DMA57361

            16.9k66195




            16.9k66195













            • Thanks, I had to make it the primary adapter for the time being, though I really wanted to use the GPU just for CUDA

              – Slartibartfast
              Dec 9 '10 at 13:09



















            • Thanks, I had to make it the primary adapter for the time being, though I really wanted to use the GPU just for CUDA

              – Slartibartfast
              Dec 9 '10 at 13:09

















            Thanks, I had to make it the primary adapter for the time being, though I really wanted to use the GPU just for CUDA

            – Slartibartfast
            Dec 9 '10 at 13:09





            Thanks, I had to make it the primary adapter for the time being, though I really wanted to use the GPU just for CUDA

            – Slartibartfast
            Dec 9 '10 at 13:09













            0














            It shouldn't need to be the primary adapter. It might be how you are trying to grab the device...I would try getting the dev tools for cuda installed on the PC in question and using the enumeration utility and posting the output if it fails.



            another note, in some drivers CUDA functionality is disabled despite the fact that the card is capable of it.



            it looks like the gtx480 might not be supported by the 260 inf out of the box. a discussion of similar problems to yours is here: http://lunatics.kwsn.net/12-gpu-crunching/split-powerspectrum-unit-test.msg33737.html;topicseen



            in this discussion at least one user has the gtx480 running as a non-display adapter and doing cuda processing with it:



            @Ghost: I did get the following so far:
            - Made the modifications appropriate to the inf file, and successfully installed 263.06 TCC driver ( On 480 )
            - Disabled the device as a 'normal' display (using mobo display instead)
            - Merged the nSight registry key that disables WPF acceleration (for good measure, shouldn't be necessary with no active display on it)


            Next step should be to switch the devices driver mode to TCC mode. That's done via the command:
            nvidia-smi --driver-model=

            howevr I get this response:


            ultimately some users had success with a patched inf from laptopvideo2go.



            hope that helps. I'm convinced it's that you have a driver loading that says your card doesn't support cuda even though it does.






            share|improve this answer


























            • The driver is CUDA enabled and I've added the results obtained from the deviceQuery test from the code samples. Is this what you were referring to?

              – Slartibartfast
              Dec 8 '10 at 17:22











            • edited to add a link to a discussion on this topic...ultimately i think it's a busted driver...i would try the one they reference on laptopvideo2go. some with similar problems have gotten this card running with it.

              – RobotHumans
              Dec 8 '10 at 18:00











            • and yes, you provided exactly the info i was looking for

              – RobotHumans
              Dec 8 '10 at 18:14











            • Thanks a lot for the link. Although I couldn't find any succesful attempts there but I'll keep trying :) They seem to use TCC mode for non Tesla cards, if that can be run, maybe even running CUDA via Remote Desktop might be possible.

              – Slartibartfast
              Dec 9 '10 at 13:21











            • Yes, the thread relates to tesla mode, but the point I was trying to get at is that it is possible with an unused video card and cuda processing. You output states that either there isn't a cuda card present or there is a version mismatch. I would go with the patched drivers, at least as a test, to see if they cause the card to be detected

              – RobotHumans
              Dec 9 '10 at 13:24
















            0














            It shouldn't need to be the primary adapter. It might be how you are trying to grab the device...I would try getting the dev tools for cuda installed on the PC in question and using the enumeration utility and posting the output if it fails.



            another note, in some drivers CUDA functionality is disabled despite the fact that the card is capable of it.



            it looks like the gtx480 might not be supported by the 260 inf out of the box. a discussion of similar problems to yours is here: http://lunatics.kwsn.net/12-gpu-crunching/split-powerspectrum-unit-test.msg33737.html;topicseen



            in this discussion at least one user has the gtx480 running as a non-display adapter and doing cuda processing with it:



            @Ghost: I did get the following so far:
            - Made the modifications appropriate to the inf file, and successfully installed 263.06 TCC driver ( On 480 )
            - Disabled the device as a 'normal' display (using mobo display instead)
            - Merged the nSight registry key that disables WPF acceleration (for good measure, shouldn't be necessary with no active display on it)


            Next step should be to switch the devices driver mode to TCC mode. That's done via the command:
            nvidia-smi --driver-model=

            howevr I get this response:


            ultimately some users had success with a patched inf from laptopvideo2go.



            hope that helps. I'm convinced it's that you have a driver loading that says your card doesn't support cuda even though it does.






            share|improve this answer


























            • The driver is CUDA enabled and I've added the results obtained from the deviceQuery test from the code samples. Is this what you were referring to?

              – Slartibartfast
              Dec 8 '10 at 17:22











            • edited to add a link to a discussion on this topic...ultimately i think it's a busted driver...i would try the one they reference on laptopvideo2go. some with similar problems have gotten this card running with it.

              – RobotHumans
              Dec 8 '10 at 18:00











            • and yes, you provided exactly the info i was looking for

              – RobotHumans
              Dec 8 '10 at 18:14











            • Thanks a lot for the link. Although I couldn't find any succesful attempts there but I'll keep trying :) They seem to use TCC mode for non Tesla cards, if that can be run, maybe even running CUDA via Remote Desktop might be possible.

              – Slartibartfast
              Dec 9 '10 at 13:21











            • Yes, the thread relates to tesla mode, but the point I was trying to get at is that it is possible with an unused video card and cuda processing. You output states that either there isn't a cuda card present or there is a version mismatch. I would go with the patched drivers, at least as a test, to see if they cause the card to be detected

              – RobotHumans
              Dec 9 '10 at 13:24














            0












            0








            0







            It shouldn't need to be the primary adapter. It might be how you are trying to grab the device...I would try getting the dev tools for cuda installed on the PC in question and using the enumeration utility and posting the output if it fails.



            another note, in some drivers CUDA functionality is disabled despite the fact that the card is capable of it.



            it looks like the gtx480 might not be supported by the 260 inf out of the box. a discussion of similar problems to yours is here: http://lunatics.kwsn.net/12-gpu-crunching/split-powerspectrum-unit-test.msg33737.html;topicseen



            in this discussion at least one user has the gtx480 running as a non-display adapter and doing cuda processing with it:



            @Ghost: I did get the following so far:
            - Made the modifications appropriate to the inf file, and successfully installed 263.06 TCC driver ( On 480 )
            - Disabled the device as a 'normal' display (using mobo display instead)
            - Merged the nSight registry key that disables WPF acceleration (for good measure, shouldn't be necessary with no active display on it)


            Next step should be to switch the devices driver mode to TCC mode. That's done via the command:
            nvidia-smi --driver-model=

            howevr I get this response:


            ultimately some users had success with a patched inf from laptopvideo2go.



            hope that helps. I'm convinced it's that you have a driver loading that says your card doesn't support cuda even though it does.






            share|improve this answer















            It shouldn't need to be the primary adapter. It might be how you are trying to grab the device...I would try getting the dev tools for cuda installed on the PC in question and using the enumeration utility and posting the output if it fails.



            another note, in some drivers CUDA functionality is disabled despite the fact that the card is capable of it.



            it looks like the gtx480 might not be supported by the 260 inf out of the box. a discussion of similar problems to yours is here: http://lunatics.kwsn.net/12-gpu-crunching/split-powerspectrum-unit-test.msg33737.html;topicseen



            in this discussion at least one user has the gtx480 running as a non-display adapter and doing cuda processing with it:



            @Ghost: I did get the following so far:
            - Made the modifications appropriate to the inf file, and successfully installed 263.06 TCC driver ( On 480 )
            - Disabled the device as a 'normal' display (using mobo display instead)
            - Merged the nSight registry key that disables WPF acceleration (for good measure, shouldn't be necessary with no active display on it)


            Next step should be to switch the devices driver mode to TCC mode. That's done via the command:
            nvidia-smi --driver-model=

            howevr I get this response:


            ultimately some users had success with a patched inf from laptopvideo2go.



            hope that helps. I'm convinced it's that you have a driver loading that says your card doesn't support cuda even though it does.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Dec 8 '10 at 18:19

























            answered Dec 8 '10 at 13:05









            RobotHumansRobotHumans

            5,63211323




            5,63211323













            • The driver is CUDA enabled and I've added the results obtained from the deviceQuery test from the code samples. Is this what you were referring to?

              – Slartibartfast
              Dec 8 '10 at 17:22











            • edited to add a link to a discussion on this topic...ultimately i think it's a busted driver...i would try the one they reference on laptopvideo2go. some with similar problems have gotten this card running with it.

              – RobotHumans
              Dec 8 '10 at 18:00











            • and yes, you provided exactly the info i was looking for

              – RobotHumans
              Dec 8 '10 at 18:14











            • Thanks a lot for the link. Although I couldn't find any succesful attempts there but I'll keep trying :) They seem to use TCC mode for non Tesla cards, if that can be run, maybe even running CUDA via Remote Desktop might be possible.

              – Slartibartfast
              Dec 9 '10 at 13:21











            • Yes, the thread relates to tesla mode, but the point I was trying to get at is that it is possible with an unused video card and cuda processing. You output states that either there isn't a cuda card present or there is a version mismatch. I would go with the patched drivers, at least as a test, to see if they cause the card to be detected

              – RobotHumans
              Dec 9 '10 at 13:24



















            • The driver is CUDA enabled and I've added the results obtained from the deviceQuery test from the code samples. Is this what you were referring to?

              – Slartibartfast
              Dec 8 '10 at 17:22











            • edited to add a link to a discussion on this topic...ultimately i think it's a busted driver...i would try the one they reference on laptopvideo2go. some with similar problems have gotten this card running with it.

              – RobotHumans
              Dec 8 '10 at 18:00











            • and yes, you provided exactly the info i was looking for

              – RobotHumans
              Dec 8 '10 at 18:14











            • Thanks a lot for the link. Although I couldn't find any succesful attempts there but I'll keep trying :) They seem to use TCC mode for non Tesla cards, if that can be run, maybe even running CUDA via Remote Desktop might be possible.

              – Slartibartfast
              Dec 9 '10 at 13:21











            • Yes, the thread relates to tesla mode, but the point I was trying to get at is that it is possible with an unused video card and cuda processing. You output states that either there isn't a cuda card present or there is a version mismatch. I would go with the patched drivers, at least as a test, to see if they cause the card to be detected

              – RobotHumans
              Dec 9 '10 at 13:24

















            The driver is CUDA enabled and I've added the results obtained from the deviceQuery test from the code samples. Is this what you were referring to?

            – Slartibartfast
            Dec 8 '10 at 17:22





            The driver is CUDA enabled and I've added the results obtained from the deviceQuery test from the code samples. Is this what you were referring to?

            – Slartibartfast
            Dec 8 '10 at 17:22













            edited to add a link to a discussion on this topic...ultimately i think it's a busted driver...i would try the one they reference on laptopvideo2go. some with similar problems have gotten this card running with it.

            – RobotHumans
            Dec 8 '10 at 18:00





            edited to add a link to a discussion on this topic...ultimately i think it's a busted driver...i would try the one they reference on laptopvideo2go. some with similar problems have gotten this card running with it.

            – RobotHumans
            Dec 8 '10 at 18:00













            and yes, you provided exactly the info i was looking for

            – RobotHumans
            Dec 8 '10 at 18:14





            and yes, you provided exactly the info i was looking for

            – RobotHumans
            Dec 8 '10 at 18:14













            Thanks a lot for the link. Although I couldn't find any succesful attempts there but I'll keep trying :) They seem to use TCC mode for non Tesla cards, if that can be run, maybe even running CUDA via Remote Desktop might be possible.

            – Slartibartfast
            Dec 9 '10 at 13:21





            Thanks a lot for the link. Although I couldn't find any succesful attempts there but I'll keep trying :) They seem to use TCC mode for non Tesla cards, if that can be run, maybe even running CUDA via Remote Desktop might be possible.

            – Slartibartfast
            Dec 9 '10 at 13:21













            Yes, the thread relates to tesla mode, but the point I was trying to get at is that it is possible with an unused video card and cuda processing. You output states that either there isn't a cuda card present or there is a version mismatch. I would go with the patched drivers, at least as a test, to see if they cause the card to be detected

            – RobotHumans
            Dec 9 '10 at 13:24





            Yes, the thread relates to tesla mode, but the point I was trying to get at is that it is possible with an unused video card and cuda processing. You output states that either there isn't a cuda card present or there is a version mismatch. I would go with the patched drivers, at least as a test, to see if they cause the card to be detected

            – RobotHumans
            Dec 9 '10 at 13:24











            0














            Is a display plugged into it? I know for the ATI, you have to have a monitor plugged into each graphics card to use them.






            share|improve this answer




























              0














              Is a display plugged into it? I know for the ATI, you have to have a monitor plugged into each graphics card to use them.






              share|improve this answer


























                0












                0








                0







                Is a display plugged into it? I know for the ATI, you have to have a monitor plugged into each graphics card to use them.






                share|improve this answer













                Is a display plugged into it? I know for the ATI, you have to have a monitor plugged into each graphics card to use them.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Sep 4 '11 at 2:57









                surfasbsurfasb

                20.8k34271




                20.8k34271






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Super User!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f219702%2fis-there-a-way-to-run-cuda-applications-with-the-cuda-device-being-a-secondary-a%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Aardman Animations

                    Are they similar matrix

                    Ficheiro:Flag of Oman.svg