Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for tf_export (0.14 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/cc/experimental/libexport/save.h

    #include <string>
    
    #include "tensorflow/core/platform/status.h"
    
    namespace tensorflow {
    namespace libexport {
    
    // Writes a saved model to disk.
    //
    // Writes a saved model to the given `export_dir`.
    TF_EXPORT Status Save(const std::string& export_dir);
    
    }  // namespace libexport
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 19 19:11:53 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfr/python/composite.py

    # limitations under the License.
    # ==============================================================================
    """Op composition registration."""
    
    
    # TODO(fengliuai): add the tf_export decrator
    class Composite(object):
      """A decorator to register a function as a composition for an TF operator.
    
      The argument to the decorator must be the name of a TF raw operator the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/go/internal/gccgoimporter/importer.go

    	if err == nil {
    		sec := ef.Section(".go_export")
    		if sec == nil {
    			err = fmt.Errorf("%s: .go_export section not found", fpath)
    			return
    		}
    		reader = sec.Open()
    		return
    	}
    
    	xf, err := xcoff.NewFile(objreader)
    	if err == nil {
    		sdat := xf.CSect(".go_export")
    		if sdat == nil {
    			err = fmt.Errorf("%s: .go_export section not found", fpath)
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 6.8K bytes
    - Viewed (0)
Back to top