You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-fdevice-syntax-only that ends device compilation after front-end syntax checking. This option can provide rapid feedback (warnings and errors) of source code changes as it will not invoke the optimizer. Note: this option will not generate valid object code.
-minimal - omits certain language features to reduce compile time for small programs.
Let's support them.
The text was updated successfully, but these errors were encountered:
* Now supporting `--minimal` and `--fdevice_syntax_only` NVRTC compilation options
* Now only enabling the `--device-ident` compilation option for versions of CUDA know to support it
CUDA 12.4 adds support for the following flags:
-fdevice-syntax-only
that ends device compilation after front-end syntax checking. This option can provide rapid feedback (warnings and errors) of source code changes as it will not invoke the optimizer. Note: this option will not generate valid object code.-minimal
- omits certain language features to reduce compile time for small programs.Let's support them.
The text was updated successfully, but these errors were encountered: