Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 328 for Extern (0.18 sec)

  1. tensorflow/c/kernels_experimental.h

    // corresponding to the indices provided with `input_index` and `output_index`
    TF_CAPI_EXPORT extern void TF_OpKernelContext_ForwardRefInputToRefOutput(
        TF_OpKernelContext* ctx, int32_t input_index, int32_t output_index);
    
    // The API releases the opaque lock handle returned with
    // `TF_MaybeLockVariableInputMutexesInOrder` API
    TF_CAPI_EXPORT extern void TF_ReleaseVariableInputLockHolder(
        TF_VariableInputLockHolder* lockHolder);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 07 14:44:39 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/public/signature_def_param.h

    #ifdef __cplusplus
    extern "C" {
    #endif  // __cplusplus
    
    // An opaque type that containing metadata of an input/output of a
    // TF_SignatureDefFunction loaded from a SavedModel.
    typedef struct TF_SignatureDefParam TF_SignatureDefParam;
    
    // Returns the name of the given parameter. The caller is not responsible for
    // freeing the returned char*.
    TF_CAPI_EXPORT extern const char* TF_SignatureDefParamName(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 17:58:21 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  3. tensorflow/c/tf_buffer.h

    // passing in read-only, input protobufs.
    TF_CAPI_EXPORT extern TF_Buffer* TF_NewBufferFromString(const void* proto,
                                                            size_t proto_len);
    
    // Useful for passing *out* a protobuf.
    TF_CAPI_EXPORT extern TF_Buffer* TF_NewBuffer(void);
    
    TF_CAPI_EXPORT extern void TF_DeleteBuffer(TF_Buffer*);
    
    TF_CAPI_EXPORT extern TF_Buffer TF_GetBuffer(TF_Buffer* buffer);
    
    #ifdef __cplusplus
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/internal/signature_def_param.cc

    extern "C" {
    
    extern const char* TF_SignatureDefParamName(const TF_SignatureDefParam* param) {
      return tensorflow::unwrap(param)->name().c_str();
    }
    
    extern const TF_TensorSpec* TF_SignatureDefParamTensorSpec(
        const TF_SignatureDefParam* param) {
      return tensorflow::wrap(&tensorflow::unwrap(param)->spec());
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 17:58:21 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/testlife/testdata/life.h

    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    extern void Step(int, int, int *, int *);
    extern void DoStep(int, int, int, int, int, int, int *, int *);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 292 bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/public/signature_def_function.h

    #ifdef __cplusplus
    extern "C" {
    #endif  // __cplusplus
    
    // An opaque type that corresponds to a SignatureDefFunction loaded from a
    // SavedModel.
    typedef struct TF_SignatureDefFunction TF_SignatureDefFunction;
    
    // Returns FunctionMetadata associated with `func`. Metadata's lifetime is
    // bound to `func`, which is bound to the TF_SavedModel it was loaded from.
    TF_CAPI_EXPORT extern TF_SignatureDefFunctionMetadata*
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/issue4029.go

    // as dynamic export is not supported.
    
    package cgotest
    
    /*
    #include <stdint.h>
    #include <dlfcn.h>
    #cgo linux LDFLAGS: -ldl
    
    extern uintptr_t dlopen4029(char*, int);
    extern uintptr_t dlsym4029(uintptr_t, char*);
    extern int dlclose4029(uintptr_t);
    
    extern void call4029(uintptr_t arg);
    */
    import "C"
    
    import (
    	"testing"
    )
    
    var callbacks int
    
    //export IMPIsOpaque
    func IMPIsOpaque() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 15:41:19 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

    @@ -114,7 +119,8 @@
     /* Define ALIASNAME as a strong alias for NAME.  */
     # define strong_alias(name, aliasname) _strong_alias(name, aliasname)
     # define _strong_alias(name, aliasname) \
    -  extern __typeof (name) aliasname __attribute__ ((alias (#name)));
    +  extern __typeof (name) aliasname __attribute__ ((alias (#name))) \
    +    __attribute_copy__ (name);
     
     /* This comes between the return type and function name in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. src/runtime/cgo/libcgo.h

     * calls _cgo_sys_thread_start(ts).
     */
    extern void (*_cgo_thread_start)(ThreadStart *ts);
    
    /*
     * Creates a new operating system thread without updating any Go state
     * (OS dependent).
     */
    extern void (*_cgo_sys_thread_create)(void* (*func)(void*), void* arg);
    
    /*
     * Indicates whether a dummy pthread per-thread variable is allocated.
     */
    extern uintptr_t *_cgo_pthread_key_created;
    
    /*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 20:50:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. tensorflow/c/logging.h

    // C API for tensorflow::Logging.
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    typedef enum TF_LogLevel {
      TF_INFO = 0,
      TF_WARNING = 1,
      TF_ERROR = 2,
      TF_FATAL = 3,
    } TF_LogLevel;
    
    TF_CAPI_EXPORT extern void TF_Log(TF_LogLevel level, const char* fmt, ...);
    TF_CAPI_EXPORT extern void TF_VLog(int level, const char* fmt, ...);
    TF_CAPI_EXPORT extern void TF_DVLog(int level, const char* fmt, ...);
    
    #ifdef __cplusplus
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 03 18:26:23 UTC 2020
    - 1.3K bytes
    - Viewed (0)
Back to top