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
- int: CUDA Runtime Compilation major version number.
645
644
- int: CUDA Runtime Compilation minor version number.
646
645
@@ -657,6 +656,7 @@ cpdef tuple version():
657
656
cpdef int get_num_supported_archs() except? -1:
658
657
"""nvrtcGetNumSupportedArchs sets the output parameter ``num_archs`` with the number of architectures supported by NVRTC. This can then be used to pass an array to ``nvrtcGetSupportedArchs`` to get the supported architectures.
659
658
659
+
see ``nvrtcGetSupportedArchs``.
660
660
Returns:
661
661
int: number of supported architectures.
662
662
@@ -672,6 +672,7 @@ cpdef int get_num_supported_archs() except? -1:
672
672
cpdef object get_supported_archs():
673
673
"""nvrtcGetSupportedArchs populates the array passed via the output parameter ``supported_archs`` with the architectures supported by NVRTC. The array is sorted in the ascending order. The size of the array to be passed can be determined using ``nvrtcGetNumSupportedArchs``.
"""nvrtcGetProgramLogSize sets ``log_size_ret`` with the size of the log generated by the previous compilation of ``prog`` (including the trailing ``NULL``).
883
884
885
+
Note that compilation log may be generated with warnings and informative
886
+
messages, even when the compilation of ``prog`` succeeds.
884
887
Args:
885
888
prog (intptr_t): CUDA Runtime Compilation program.
0 commit comments