Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 216 for Extern (0.15 sec)

  1. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.h

    // TODO(jpienaar): Revise the command line option parsing here.
    extern llvm::cl::opt<std::string> input_file_name;
    extern llvm::cl::opt<std::string> output_file_name;
    extern llvm::cl::opt<bool> use_splatted_constant;
    extern llvm::cl::opt<bool> input_mlir;
    extern llvm::cl::opt<bool> output_mlir;
    extern llvm::cl::list<std::string> custom_opdefs;
    extern llvm::cl::opt<bool> emit_quant_adaptor_ops;
    extern llvm::cl::opt<std::string> quant_stats_file_name;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_cl.h

    // Import options.
    extern llvm::cl::opt<std::string> input_arrays;
    extern llvm::cl::opt<std::string> input_dtypes;
    extern llvm::cl::opt<std::string> input_shapes;
    extern llvm::cl::opt<std::string> output_arrays;
    extern llvm::cl::opt<std::string> control_output_arrays;
    extern llvm::cl::opt<std::string> inference_type;
    extern llvm::cl::opt<std::string> min_values;
    extern llvm::cl::opt<std::string> max_values;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 10 20:59:50 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/callback_c.c

    }
    
    void
    callGoFoo(void)
    {
    	extern void goFoo(void);
    	goFoo();
    }
    
    void
    IntoC(void)
    {
    	BackIntoGo();
    }
    
    void
    Issue1560InC(void)
    {
    	Issue1560FromC();
    }
    
    void
    callGoStackCheck(void)
    {
    	extern void goStackCheck(void);
    	goStackCheck();
    }
    
    int
    returnAfterGrow(void)
    {
    	extern int goReturnVal(void);
    	goReturnVal();
    	return 123456;
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 933 bytes
    - Viewed (0)
  4. tensorflow/c/tf_tstring.h

    TF_CAPI_EXPORT extern const char *TF_StringGetDataPointer(
        const TF_TString *tstr);
    
    TF_CAPI_EXPORT extern TF_TString_Type TF_StringGetType(const TF_TString *str);
    
    TF_CAPI_EXPORT extern size_t TF_StringGetSize(const TF_TString *tstr);
    
    TF_CAPI_EXPORT extern size_t TF_StringGetCapacity(const TF_TString *str);
    
    TF_CAPI_EXPORT extern void TF_StringDealloc(TF_TString *tstr);
    
    #ifdef __cplusplus
    } /* end extern "C" */
    #endif
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. tensorflow/c/tf_shape.h

    TF_CAPI_EXPORT extern int TF_ShapeDims(const TF_Shape* shape);
    
    // Returns the `d`th dimension of `shape`. If `shape` has unknown rank,
    // invoking this function is undefined behavior. Returns -1 if dimension is
    // unknown.
    TF_CAPI_EXPORT extern int64_t TF_ShapeDimSize(const TF_Shape* shape, int d);
    
    // Deletes `shape`.
    TF_CAPI_EXPORT extern void TF_DeleteShape(TF_Shape* shape);
    
    #ifdef __cplusplus
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 00:25:41 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top