Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 494985
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T05:33:01+00:00 2026-05-13T05:33:01+00:00

For NVIDIA graphics cards, you can have two working as one (SLI). For a

  • 0

For NVIDIA graphics cards, you can have two working as one (SLI). For a .NET desktop application, I need to be able to check that SLI is enabled. Is this possible?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T05:33:01+00:00Added an answer on May 13, 2026 at 5:33 am

    That should be possible.

    According to the nVidia docs, you can query this via NVCPL.DLL (liked to documentation).

    The call to be used is NvCplGetDataInt() (page 67), with the argument NVCPL_API_NUMBER_OF_SLI_GPUS or NVCPL_API_SLI_MULTI_GPU_RENDERING_MODE you should obtain the information required.

    In oder to access this information, you’ll need P/Invoke. If it is OK to statistically link NVCPL.DLL you just have to create the correct import (static external method) and you’re fine. Otherwise, you can also choose the LoadLibrary and GetEntryPoint way and use the Marshal class to create an instance of a delegate (declared with the correct arguments) which represents the function to be called.

    Edit:
    The following snippet may get you started (I don’t have a nVidia card though, so that’s completely untested and on your own risk 😉 ):

    public const int NVCPL_API_NUMBER_OF_GPUS =7;    // Graphics card number of GPUs. 
    public const int NVCPL_API_NUMBER_OF_SLI_GPUS = 8;    // Graphics card number of SLI GPU clusters available. 
    public const int NVCPL_API_SLI_MULTI_GPU_RENDERING_MODE = 9;    // Get/Set SLI multi-GPU redering mode.  
    
    [DllImport("NVCPL.DLL", CallingConvention=CallingConvention.Cdecl)]
    public static extern bool nvCplGetDataInt([In] int lFlag, [Out] out int plInfo);
    
    public static void Main()   {
        int sliGpuCount;
        if (nvCplGetDataInt(NVCPL_API_NUMBER_OF_SLI_GPUS, out sliGpuCount)) {
            // we got the result
            Console.WriteLine(string.Format("SLI GPU present: {0}", sliGpuCount));
        } else {
            // something did go wrong
            Console.WriteLine("Failed to query NV data");
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a problem with Nvidia's OpenCl/Cuda framework, but I think it is a
I have tried so many different strategies to get a usable noise function and
what is the best nvidia Video Card for cuda development. a single GTX 295
I've got a Nvidia Tesla s2050; a host with a nvidia quadro card.CentOS 5.5
using '#version 330 core' on NVIDIA, By using glBindAttribLocation(program, 0, in_Vertex); the input vertex
I've just recently started working with Visual Studio this summer, primarily on CUDA and
I have a problem with linking and gcc, probably resulting from a stupid mistake
In my last question, OpenCl cleanup causes segfault. , somebody hinted that missing event
I just installed cygwin and eclipse on my win7 x64 machine, and after importing
It seems that the .getBounds() method of the GraphicsConfiguration class is not reporting the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.