Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for tf_export (0.43 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

    from tensorflow.python.trackable import autotrackable
    from tensorflow.python.util import tf_export
    
    # Type aliases for quant_opts_pb2 messages.
    _QuantizationOptions = tf_export.tf_export(
        'quantization.experimental.QuantizationOptions'
    )(quant_opts_pb2.QuantizationOptions)
    
    _QuantizationMethod = tf_export.tf_export(
        'quantization.experimental.QuantizationMethod'
    )(quant_opts_pb2.QuantizationMethod)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset.py

          representative_dataset: RepresentativeDatasetMapping which is a
            signature_def_key -> representative dataset mapping.
        """
        raise NotImplementedError('Method "save" is not implemented.')
    
    
    @tf_export.tf_export(
        'quantization.experimental.TfRecordRepresentativeDatasetSaver'
    )
    class TfRecordRepresentativeDatasetSaver(RepresentativeDatasetSaver):
      """Representative dataset saver in TFRecord format.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

     *--------------------------------------------------------------------*/
    CU_EXPORT void CU_set_suite_start_handler(CU_SuiteStartMessageHandler pSuiteStartMessage);
    /**< Sets the message handler to call before each suite is run. */
    CU_EXPORT void CU_set_test_start_handler(CU_TestStartMessageHandler pTestStartMessage);
    /**< Sets the message handler to call before each test is run. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Basic.h

     *          CUE_NOSUITE - pSuite was NULL.
     *          CUE_NOTEST  - pTest was NULL.
     */
    
    CU_EXPORT void CU_basic_set_mode(CU_BasicRunMode mode);
    /**< Sets the run mode for the basic interface.
     *  @param mode The new CU_BasicRunMode for subsequent test
     *              runs using the basic interface.
     */
    
    CU_EXPORT CU_BasicRunMode CU_basic_get_mode(void);
    /**< Retrieves the current run mode for the basic interface.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Util.h

     */
    
    CU_EXPORT void CU_trim_left(char *szString);
    /**<
     *  Trims leading whitespace from the specified string.
     *  @param szString  The string to trim.
     */
    
    CU_EXPORT void CU_trim_right(char *szString);
    /**< 
     *  Trims trailing whitespace from the specified string.
     *  @param szString  The string to trim.
     */
    
    CU_EXPORT void CU_trim(char *szString);
    /**< 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     *  @see CU_get_registry
     *  @see CU_set_registry
     */
    
    CU_EXPORT CU_BOOL CU_registry_initialized(void);
    /**<
     *  Checks whether the test registry has been initialized.
     *
     *  @return  CU_TRUE if the registry has been initialized,
     *           CU_FALSE otherwise.
     *  @see CU_initialize_registry
     *  @see CU_cleanup_registry
     */
    
    CU_EXPORT 
    CU_pSuite CU_add_suite(const char *strName, 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Automated.h

     * @{
     */
                                           
    #ifndef CUNIT_AUTOMATED_H_SEEN
    #define CUNIT_AUTOMATED_H_SEEN
    
    #include "CUnit.h"
    #include "TestDB.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    CU_EXPORT void CU_automated_run_tests(void);
    /**< 
     *  Runs CUnit tests using the automated interface.
     *  This function sets appropriate callback functions, initializes the 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUError.h

    } CU_ErrorAction;
    
    /* Error handling & reporting functions. */
    
    #include "CUnit.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    CU_EXPORT CU_ErrorCode   CU_get_error(void);
    /**<
     *  Retrieves the current CUnit framework error code.
     *  CUnit implementation functions set the error code to indicate the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/internal/modulemap/GenerateModuleMapFileTest.groovy

            then:
            normaliseLineSeparators(moduleMapFile.text) == """module foo {
    \tumbrella "${headers.absolutePath}"
    \tumbrella "${moreHeaders.absolutePath}"
    \texport *
    }
    """
        }
    
        def "does not include non-existent directories"() {
            def moduleMapFile = new File(tempDir, "module.modulemap")
            def headers = new File(tempDir, 'headers').tap { mkdirs() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Console.h

     */
    /** @addtogroup Console
     * @{
     */
    
    #ifndef CUNIT_CONSOLE_H_SEEN
    #define CUNIT_CONSOLE_H_SEEN
    
    #include "CUnit.h"
    #include "TestDB.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    CU_EXPORT void CU_console_run_tests(void);
    /**< Run registered CUnit tests using the console interface. */
    
    #ifdef USE_DEPRECATED_CUNIT_NAMES
    /** Deprecated (version 1). @deprecated Use CU_console_run_tests(). */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top