Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 231 for dotypedef (0.21 sec)

  1. tensorflow/c/experimental/saved_model/public/tensor_spec.h

    #include "tensorflow/c/c_api_macros.h"
    #include "tensorflow/c/tf_datatype.h"
    #include "tensorflow/c/tf_shape.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif  // __cplusplus
    
    // An opaque type corresponding to TensorSpec
    typedef struct TF_TensorSpec TF_TensorSpec;
    
    // Returns the dtype associated with the TensorSpec.
    TF_CAPI_EXPORT extern TF_DataType TF_TensorSpecDataType(
        const TF_TensorSpec* spec);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 17:58:21 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  2. tensorflow/c/eager/c_api.h

    // stable and can change without notice.
    
    #include "tensorflow/c/c_api.h"
    #include "tensorflow/c/c_api_macros.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    typedef struct TFE_ContextOptions TFE_ContextOptions;
    
    // Return a new options object.
    TF_CAPI_EXPORT extern TFE_ContextOptions* TFE_NewContextOptions(void);
    
    // Set the config in TF_ContextOptions.options.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 22.8K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/internal/saved_model_api_type.h

    #include "tensorflow/c/experimental/saved_model/core/saved_model_api.h"
    
    // Internal structures used by the SavedModel C API. These are likely to change
    // and should not be depended on.
    
    typedef struct TF_SavedModel TF_SavedModel;
    
    namespace tensorflow {
    
    DEFINE_CONVERSION_FUNCTIONS(tensorflow::SavedModelAPI, TF_SavedModel)
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 20 22:52:04 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  4. tensorflow/c/eager/tfe_op_internal.h

    // interface cannot destruct the underlying operation object. Instead, call
    // TFE_DeleteOp who calls Release() on the operation pointer and deletes
    // the TFE_Op structure.
    typedef struct TFE_Op TFE_Op;
    
    namespace tensorflow {
    
    DEFINE_CONVERSION_FUNCTIONS(tensorflow::ImmediateExecutionOperation, TFE_Op);
    DEFINE_CONVERSION_FUNCTIONS(tensorflow::ImmediateExecutionOperation*, TFE_Op*);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 17 19:39:13 UTC 2020
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/c/tf_file_statistics.h

    limitations under the License.
    ==============================================================================*/
    
    #ifndef TENSORFLOW_C_TF_FILE_STATISTICS_H_
    #define TENSORFLOW_C_TF_FILE_STATISTICS_H_
    
    #include <stdint.h>
    
    typedef struct TF_FileStatistics {
      // The length of the file in bytes.
      int64_t length;
      // The last modified time in nanoseconds.
      int64_t mtime_nsec;
      // Whether the name refers to a directory.
      bool is_directory;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 20:21:15 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  6. tensorflow/c/tf_shape.h

    #define TENSORFLOW_C_TF_SHAPE_H_
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    // An opaque type corresponding to a shape in tensorflow. In the future,
    // we may expose the ABI of TF_Shape for performance reasons.
    typedef struct TF_Shape TF_Shape;
    
    // Return a new, unknown rank shape object. The caller is responsible for
    // calling TF_DeleteShape to deallocate and destroy the returned shape.
    TF_CAPI_EXPORT extern TF_Shape* TF_NewShape();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 00:25:41 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testerrors/testdata/issue42580.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 42580: cmd/cgo: shifting identifier position in ast
    
    package cgotest
    
    // typedef int (*intFunc) ();
    //
    // char* strarg = "";
    //
    // int func_with_char(char* arg, void* dummy)
    // {return 5;}
    //
    // int* get_arr(char* arg, void* dummy)
    // {return NULL;}
    import "C"
    import "unsafe"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. ci/official/containers/linux_arm64/builder.devtoolset/gcc9-fixups.patch

        (almost) opaque type for the user level programs.  The file and
        this data structure is not standardized.  Don't rely on it.  It can
    @@ -41,4 +44,6 @@ typedef struct __locale_struct
     /* POSIX 2008 makes locale_t official.  */
     typedef __locale_t locale_t;
     
    +#endif /* bits/types/__locale_t.h */
    +
     #endif /* xlocale.h */
    diff --git a/misc/sys/cdefs.h b/misc/sys/cdefs.h
    index d1cb3dd..30482a1 100644
    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. tensorflow/c/experimental/filesystem/filesystem_interface.h

    /// to initialize it as `nullptr`.
    
    typedef struct TF_RandomAccessFile {
      void* plugin_file;
    } TF_RandomAccessFile;
    
    typedef struct TF_WritableFile {
      void* plugin_file;
    } TF_WritableFile;
    
    typedef struct TF_ReadOnlyMemoryRegion {
      void* plugin_memory_region;
    } TF_ReadOnlyMemoryRegion;
    
    typedef struct TF_Filesystem {
      void* plugin_filesystem;
    } TF_Filesystem;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/public/concrete_function_list.h

    #include "tensorflow/c/experimental/saved_model/public/concrete_function.h"
    
    #ifdef __cplusplus
    extern "C" {
    #endif  // __cplusplus
    
    // An opaque type that is acts like a list of TF_ConcreteFunction pointers.
    typedef struct TF_ConcreteFunctionList TF_ConcreteFunctionList;
    
    // Returns the size of `list`.
    TF_CAPI_EXPORT extern size_t TF_ConcreteFunctionListSize(
        TF_ConcreteFunctionList* list);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 13 17:52:37 UTC 2020
    - 1.7K bytes
    - Viewed (0)
Back to top