Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 231 for dotypedef (0.14 sec)

  1. tensorflow/c/eager/tfe_tensorhandle_internal.h

    // interface cannot destruct the underlying handle object. Instead, call
    // TFE_DeleteTensorHandle who calls Release() on the handle pointer and deletes
    // the TFE_TensorHandle structure.
    typedef struct TFE_TensorHandle TFE_TensorHandle;
    
    namespace tensorflow {
    
    DEFINE_CONVERSION_FUNCTIONS(tensorflow::ImmediateExecutionTensorHandle,
                                TFE_TensorHandle);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 17 19:39:13 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/internal/function_metadata_type.h

    #define TENSORFLOW_C_EXPERIMENTAL_SAVED_MODEL_INTERNAL_FUNCTION_METADATA_TYPE_H_
    
    #include "tensorflow/c/conversion_macros.h"
    #include "tensorflow/c/experimental/saved_model/core/function_metadata.h"
    
    typedef struct TF_FunctionMetadata TF_FunctionMetadata;
    
    namespace tensorflow {
    
    DEFINE_CONVERSION_FUNCTIONS(tensorflow::FunctionMetadata, TF_FunctionMetadata)
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 29 01:58:17 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/internal/signature_def_param_type.h

    #define TENSORFLOW_C_EXPERIMENTAL_SAVED_MODEL_INTERNAL_SIGNATURE_DEF_PARAM_TYPE_H_
    
    #include "tensorflow/c/conversion_macros.h"
    #include "tensorflow/c/experimental/saved_model/core/signature_def_function_metadata.h"
    
    typedef struct TF_SignatureDefParam TF_SignatureDefParam;
    
    namespace tensorflow {
    
    DEFINE_CONVERSION_FUNCTIONS(tensorflow::SignatureDefParam, TF_SignatureDefParam)
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 17:58:21 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/internal/tensor_spec_type.h

    #define TENSORFLOW_C_EXPERIMENTAL_SAVED_MODEL_INTERNAL_TENSOR_SPEC_TYPE_H_
    
    #include "tensorflow/c/conversion_macros.h"
    #include "tensorflow/c/experimental/saved_model/core/tensor_spec.h"
    
    typedef struct TF_TensorSpec TF_TensorSpec;
    
    namespace tensorflow {
    
    DEFINE_CONVERSION_FUNCTIONS(tensorflow::TensorSpec, TF_TensorSpec)
    
    }  // namespace tensorflow
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 17:58:21 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.h

    uint64_t Length(const TF_ReadOnlyMemoryRegion* region);
    }  // namespace tf_read_only_memory_region
    
    namespace tf_gcs_filesystem {
    typedef struct GcsFileStat {
      TF_FileStatistics base;
      int64_t generation_number;
    } GcsFileStat;
    
    typedef struct GCSFile {
      google::cloud::storage::Client gcs_client;  // owned
      bool compose;
      absl::Mutex block_cache_lock;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 31 04:37:41 UTC 2020
    - 5.2K bytes
    - Viewed (0)
  6. tensorflow/c/tf_attrtype.h

    #ifndef TENSORFLOW_C_TF_ATTRTYPE_H_
    #define TENSORFLOW_C_TF_ATTRTYPE_H_
    
    #ifdef __cplusplus
    extern "C" {
    #endif
    
    // TF_AttrType describes the type of the value of an attribute on an operation.
    typedef enum TF_AttrType {
      TF_ATTR_STRING = 0,
      TF_ATTR_INT = 1,
      TF_ATTR_FLOAT = 2,
      TF_ATTR_BOOL = 3,
      TF_ATTR_TYPE = 4,
      TF_ATTR_SHAPE = 5,
      TF_ATTR_TENSOR = 6,
      TF_ATTR_PLACEHOLDER = 7,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 23:25:05 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  7. tensorflow/cc/experimental/libtf/tests/runtime_test.h

    #include "tensorflow/core/platform/status_matchers.h"
    #include "tensorflow/core/platform/statusor.h"
    #include "tensorflow/core/platform/test.h"
    
    namespace tf {
    namespace libtf {
    namespace runtime {
    
    typedef Runtime (*RuntimeFn)();
    
    class RuntimeTest : public ::testing::TestWithParam<RuntimeFn> {};
    
    }  // namespace runtime
    }  // namespace libtf
    }  // namespace tf
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jul 20 15:05:14 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  8. tensorflow/c/experimental/saved_model/internal/signature_def_param_list_type.h

    #include <vector>
    
    #include "tensorflow/c/conversion_macros.h"
    #include "tensorflow/c/experimental/saved_model/core/signature_def_function_metadata.h"
    
    typedef struct TF_SignatureDefParamList TF_SignatureDefParamList;
    
    namespace tensorflow {
    
    DEFINE_CONVERSION_FUNCTIONS(std::vector<SignatureDefParam>,
                                TF_SignatureDefParamList)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 17:58:21 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  9. tensorflow/c/eager/tfe_cancellation_manager_internal.h

    #define TENSORFLOW_C_EAGER_TFE_CANCELLATION_MANAGER_INTERNAL_H_
    
    #include "tensorflow/c/conversion_macros.h"
    #include "tensorflow/core/framework/cancellation.h"
    
    struct TFE_CancellationManager;
    typedef struct TFE_CancellationManager TFE_CancellationManager;
    
    namespace tensorflow {
    DEFINE_CONVERSION_FUNCTIONS(tensorflow::CancellationManager,
                                TFE_CancellationManager);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 02 18:56:02 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testerrors/ptr_test.go

    var ptrTests = []ptrTest{
    	{
    		// Passing a pointer to a struct that contains a Go pointer.
    		name: "ptr1",
    		c:    `typedef struct s1 { int *p; } s1; void f1(s1 *ps) {}`,
    		body: `C.f1(&C.s1{new(C.int)})`,
    		fail: true,
    	},
    	{
    		// Passing a pointer to a struct that contains a Go pointer.
    		name: "ptr2",
    		c:    `typedef struct s2 { int *p; } s2; void f2(s2 *ps) {}`,
    		body: `p := &C.s2{new(C.int)}; C.f2(p)`,
    		fail: true,
    	},
    	{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
Back to top