Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 328 for Extern (0.14 sec)

  1. src/runtime/testdata/testprogcgo/tracebackctxt.go

    // Use fake context, traceback, and symbolizer functions.
    
    /*
    // Defined in tracebackctxt_c.c.
    extern void C1(void);
    extern void C2(void);
    extern void tcContext(void*);
    extern void tcContextSimple(void*);
    extern void tcTraceback(void*);
    extern void tcSymbolizer(void*);
    extern int getContextCount(void);
    extern void TracebackContextPreemptionCallGo(int);
    */
    import "C"
    
    import (
    	"fmt"
    	"runtime"
    	"sync"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 29 15:30:38 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  2. tensorflow/c/kernels.h

    // to change at any time.
    TF_CAPI_EXPORT extern SP_Stream TF_GetStream(TF_OpKernelContext* ctx,
                                                 TF_Status* status);
    
    // TF_NumInputs returns the number of inputs available in ctx.
    TF_CAPI_EXPORT extern int TF_NumInputs(TF_OpKernelContext* ctx);
    
    // TF_NumOutputs returns the number of outputs to be placed in *ctx by the
    // kernel.
    TF_CAPI_EXPORT extern int TF_NumOutputs(TF_OpKernelContext* ctx);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:46:22 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.h

    TF_CAPI_EXPORT extern int TF_OperationNumOutputs(TF_Operation* oper);
    TF_CAPI_EXPORT extern TF_DataType TF_OperationOutputType(TF_Output oper_out);
    TF_CAPI_EXPORT extern int TF_OperationOutputListLength(TF_Operation* oper,
                                                           const char* arg_name,
                                                           TF_Status* status);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/next_pluggable_device/c_api.h

    TF_CAPI_EXPORT extern TF_VariableInfo* TF_CreateVariableInfoFromContext(
        TF_OpKernelContext* ctx, int index, TF_Status* status);
    
    TF_CAPI_EXPORT extern void TF_LockVariableInfos(TF_VariableInfo** vars,
                                                    int num_vars,
                                                    TF_Status* status);
    
    TF_CAPI_EXPORT extern void TF_AllocateTempForVariableInfo(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 20:01:06 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. tensorflow/c/tf_tensor.h

    TF_CAPI_EXPORT extern void TF_DeleteTensor(TF_Tensor*);
    
    // Return the type of a tensor element.
    TF_CAPI_EXPORT extern TF_DataType TF_TensorType(const TF_Tensor*);
    
    // Set a new shape for the Tensor.
    TF_CAPI_EXPORT extern void TF_SetShape(TF_Tensor* tensor, const int64_t* dims,
                                           int num_dims);
    
    // Return the number of dimensions that the tensor has.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 06 16:40:30 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/internal/signature_def_function_metadata.cc

    #include "tensorflow/c/experimental/saved_model/internal/signature_def_param_list_type.h"
    
    extern "C" {
    
    extern const TF_SignatureDefParamList* TF_SignatureDefFunctionMetadataArgs(
        const TF_SignatureDefFunctionMetadata* list) {
      return tensorflow::wrap(&tensorflow::unwrap(list)->arguments());
    }
    
    extern const TF_SignatureDefParamList* TF_SignatureDefFunctionMetadataReturns(
        const TF_SignatureDefFunctionMetadata* list) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 17:58:21 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/internal/signature_def_param_list.cc

    extern "C" {
    
    extern size_t TF_SignatureDefParamListSize(
        const TF_SignatureDefParamList* list) {
      return tensorflow::unwrap(list)->size();
    }
    
    extern const TF_SignatureDefParam* TF_SignatureDefParamListGet(
        const TF_SignatureDefParamList* list, int i) {
      return tensorflow::wrap(&tensorflow::unwrap(list)->at(i));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 17:58:21 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  8. tensorflow/c/env.h

    TF_CAPI_EXPORT extern TF_StringStream* TF_GetLocalTempDirectories(void);
    
    // Creates a temporary file name with an extension.
    // The caller is responsible for freeing the returned pointer.
    TF_CAPI_EXPORT extern char* TF_GetTempFileName(const char* extension);
    
    // Returns the number of nanoseconds since the Unix epoch.
    TF_CAPI_EXPORT extern uint64_t TF_NowNanos(void);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jan 09 02:53:27 UTC 2021
    - 9.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_translate_flags.h

    // during the flatbuffer translation.
    extern bool emit_builtin_tflite_ops;
    extern bool emit_select_tf_ops;
    extern bool emit_custom_ops;
    // The flag to control whether to lower tensorlist ops into TF ops.
    extern bool lower_tensor_list_ops;
    // The flag to control whether debug info gets stripped on export.
    extern bool strip_debug_info;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 23 05:49:32 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/public/signature_def_function_metadata.h

    #ifdef __cplusplus
    extern "C" {
    #endif  // __cplusplus
    
    // An opaque type that corresponds to a SignatureDefFunction loaded from a
    // SavedModel.
    typedef struct TF_SignatureDefFunctionMetadata TF_SignatureDefFunctionMetadata;
    
    // Retrieves the arguments of the SignatureDefFunction. The caller is not
    // responsible for freeing the returned pointer.
    TF_CAPI_EXPORT extern const TF_SignatureDefParamList*
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 17:58:21 UTC 2020
    - 1.8K bytes
    - Viewed (0)
Back to top