Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for sm_90a in <nv/target> API #1411

Merged
merged 2 commits into from
Feb 23, 2024

Commits on Feb 20, 2024

  1. Add SM90a support to <nv/target>

    Can be used as follows:
    
    __global__ void kernel(int *out) {
        NV_DISPATCH_TARGET(
            NV_HAS_FEATURE_SM_90a, (
            *out = 901;
        ), NV_PROVIDES_SM_90, (
            *out = 900;
        ), NV_IS_DEVICE, (
            *out = 0;
        ));
    }
    ahendriksen committed Feb 20, 2024
    Configuration menu
    Copy the full SHA
    97b64bf View commit details
    Browse the repository at this point in the history
  2. Fix nvc++ support

    ahendriksen committed Feb 20, 2024
    Configuration menu
    Copy the full SHA
    f74a948 View commit details
    Browse the repository at this point in the history