Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 231 for dotypedef (0.15 sec)

  1. tensorflow/cc/ops/while_loop.h

    // 'output' need not be set if an error is returned.
    typedef std::function<Status(const Scope&, const std::vector<Output>& inputs,
                                 Output* output)>
        CondGraphBuilderFn;
    
    // Function that takes body graph inputs and returns body graph outputs.
    // 'outputs' need not be populated if an error is returned.
    typedef std::function<Status(const Scope&, const std::vector<Output>& inputs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 24 08:24:58 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  2. src/runtime/testdata/testprogcgo/bigstack_windows.c

    // (compiled into a DLL).
    
    #include <windows.h>
    #include <stdio.h>
    
    #ifndef STACK_SIZE_PARAM_IS_A_RESERVATION
    #define STACK_SIZE_PARAM_IS_A_RESERVATION 0x00010000
    #endif
    
    typedef void callback(char*);
    
    // Allocate a stack that's much larger than the default.
    static const int STACK_SIZE = 16<<20;
    
    static callback *bigStackCallback;
    
    static void useStack(int bytes) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 02 15:18:26 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/issue24161e1/main.go

    #include <TargetConditionals.h>
    #include <CoreFoundation/CoreFoundation.h>
    #include <Security/Security.h>
    #if TARGET_OS_IPHONE == 0 && __MAC_OS_X_VERSION_MAX_ALLOWED < 101200
      typedef CFStringRef SecKeyAlgorithm;
      static CFDataRef SecKeyCreateSignature(SecKeyRef key, SecKeyAlgorithm algorithm, CFDataRef dataToSign, CFErrorRef *error){return NULL;}
      #define kSecKeyAlgorithmECDSASignatureDigestX962SHA1 foo()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. tensorflow/c/tf_status_internal.h

    ==============================================================================*/
    
    #ifndef TENSORFLOW_C_TF_STATUS_INTERNAL_H_
    #define TENSORFLOW_C_TF_STATUS_INTERNAL_H_
    
    #include "xla/tsl/c/tsl_status_internal.h"
    
    typedef struct TSL_Status TF_Status;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 20:00:09 UTC 2024
    - 885 bytes
    - Viewed (0)
  5. tensorflow/c/experimental/saved_model/public/function_metadata.h

    #include "tensorflow/c/c_api_macros.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif  // __cplusplus
    
    // An opaque type used to store any metadata associated with a function.
    typedef struct TF_FunctionMetadata TF_FunctionMetadata;
    
    // TODO(bmzhao): Add getters for fields as we determine what metadata
    // we want to expose.
    
    #ifdef __cplusplus
    }  // end extern "C"
    #endif  // __cplusplus
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 20 17:00:01 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/internal/signature_def_function_metadata_type.h

    #define TENSORFLOW_C_EXPERIMENTAL_SAVED_MODEL_INTERNAL_SIGNATURE_DEF_FUNCTION_METADATA_TYPE_H_
    
    #include "tensorflow/c/conversion_macros.h"
    #include "tensorflow/c/experimental/saved_model/core/signature_def_function_metadata.h"
    
    typedef struct TF_SignatureDefFunctionMetadata TF_SignatureDefFunctionMetadata;
    
    namespace tensorflow {
    
    DEFINE_CONVERSION_FUNCTIONS(tensorflow::SignatureDefFunctionMetadata,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/saved_model/internal/signature_def_function_type.h

    #define TENSORFLOW_C_EXPERIMENTAL_SAVED_MODEL_INTERNAL_SIGNATURE_DEF_FUNCTION_TYPE_H_
    
    #include "tensorflow/c/conversion_macros.h"
    #include "tensorflow/c/experimental/saved_model/core/signature_def_function.h"
    
    typedef struct TF_SignatureDefFunction TF_SignatureDefFunction;
    
    namespace tensorflow {
    
    DEFINE_CONVERSION_FUNCTIONS(tensorflow::SignatureDefFunction,
                                TF_SignatureDefFunction)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 17 23:03:48 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/testsanitizers/testdata/msan7.go

    #include <stdlib.h>
    
    // T is a C struct with alignment padding after b.
    // The padding bytes are not considered initialized by MSAN.
    // It is big enough to be passed on stack in C ABI (and least
    // on AMD64).
    typedef struct { char b; uintptr_t x, y; } T;
    
    extern void F(T);
    
    // Use weak as a hack to permit defining a function even though we use export.
    void CF(int x) __attribute__ ((weak));
    void CF(int x) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 834 bytes
    - Viewed (0)
  9. tensorflow/c/logging.h

    #include "tensorflow/c/c_api_macros.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, ...);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 03 18:26:23 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  10. tensorflow/c/eager/tfe_context_internal.h

    // interface cannot destruct the underlying context object. Instead, call
    // TFE_DeleteContext who calls Release() on the context pointer and deletes
    // the TFE_Context structure.
    typedef struct TFE_Context TFE_Context;
    
    namespace tensorflow {
    
    DEFINE_CONVERSION_FUNCTIONS(tensorflow::ImmediateExecutionContext, TFE_Context);
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 17 19:39:13 UTC 2020
    - 1.4K bytes
    - Viewed (0)
Back to top