Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for cuda_version (0.3 sec)

  1. configure.py

          sys.exit(1)
    
      stderr = open(os.devnull, 'wb')
      curr_version = run_shell([bazel_executable, '--version'],
                               allow_non_zero=True,
                               stderr=stderr)
      if curr_version.startswith('bazel '):
        curr_version = curr_version.split('bazel ')[1]
    
      curr_version_int = convert_version_to_int(curr_version)
    
      # Check if current bazel version can be detected properly.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  2. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

     */
    /** @addtogroup Framework
     * @{
     */
    
    #ifndef CUNIT_CUNIT_H_SEEN
    #define CUNIT_CUNIT_H_SEEN
    
    #include <string.h>
    #include <math.h>
    
    /** CUnit version number. */
    #define CU_VERSION "2.1-2"
    
    /*  Max string lengths for names (includes terminating NULL. */
    /** Maximum length of a test name string. */
    #define CU_MAX_TEST_NAME_LENGTH 256
    /** Maximum length of a suite name string. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
Back to top