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

  • Home
  • SEARCH
  • 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

We have a piece of software which can run on several different graphics cards,
I have an application which I usually run on Nvidia graphics card. I thought
I have a system with an NVidia graphics card and I'm looking at using
I'm working on an app that will run on linux with an NVIDIA graphics
I'd like to start coding for NVIDIA 3D Vision and wonder where can I
I have a program that uses the GPU for performing certain computations. I can
The new MacBookPros come with two graphic adapters, the Intel HD Graphics, and the
I have a notebook with VGA port and HDMI port. Therefore I'm able to
I'm working on a 3d globe application written in java using java3d for the
I have never done GPU programming, but have finally acquired an Nvidia card to

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.