Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 207 for cc_status (0.12 sec)

  1. tensorflow/cc/experimental/base/public/status.h

      friend class TensorHandle;
    
      // Wraps a TF_Status*, and takes ownership of it.
      explicit Status(TF_Status* status) : status_(status) {}
    
      // Status is not copyable
      Status(const Status&) = delete;
      Status& operator=(const Status&) = delete;
    
      // Returns the TF_Status that this object wraps. This object
      // retains ownership of the pointer.
      TF_Status* GetTFStatus() const { return status_.get(); }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  2. tensorflow/c/python_api.cc

    }
    
    void SetAttr(TF_Graph* graph, TF_Operation* op, const char* attr_name,
                 TF_Buffer* attr_value_proto, TF_Status* status) {
      TF_SetAttr(graph, op, attr_name, attr_value_proto, status);
    }
    
    void ClearAttr(TF_Graph* graph, TF_Operation* op, const char* attr_name,
                   TF_Status* status) {
      TF_ClearAttr(graph, op, attr_name, status);
    }
    
    void SetFullType(TF_Graph* graph, TF_Operation* op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 12 18:48:56 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.h

        const TF_SessionOptions*, TF_Status* status);
    TF_CAPI_EXPORT extern void TF_CloseDeprecatedSession(TF_DeprecatedSession*,
                                                         TF_Status* status);
    TF_CAPI_EXPORT extern void TF_DeleteDeprecatedSession(TF_DeprecatedSession*,
                                                          TF_Status* status);
    TF_CAPI_EXPORT extern void TF_Reset(const TF_SessionOptions* opt,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 26 21:08:15 UTC 2023
    - 82.3K bytes
    - Viewed (0)
  4. tensorflow/c/c_test_util.cc

      ASSERT_NE(*op, nullptr);
    }
    
    TF_Operation* Placeholder(TF_Graph* graph, TF_Status* s, const char* name,
                              TF_DataType dtype, const std::vector<int64_t>& dims) {
      TF_Operation* op;
      PlaceholderHelper(graph, s, name, dtype, dims, &op);
      return op;
    }
    
    void ConstHelper(TF_Tensor* t, TF_Graph* graph, TF_Status* s, const char* name,
                     TF_Operation** op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 03:16:52 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  5. tensorflow/c/kernels/ops/bitcast.cc

    #include "tensorflow/c/tf_status.h"
    #include "tensorflow/core/framework/registration/registration.h"
    #include "tensorflow/core/platform/logging.h"
    #include "tensorflow/core/platform/macros.h"
    
    static void ComputeNewShape(TF_ShapeInferenceContext* ctx,
                                TF_ShapeHandle* shape, TF_DataType input_type,
                                TF_DataType output_type, TF_Status* status) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 07:51:50 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/grappler/grappler_test.cc

    namespace tensorflow {
    namespace grappler {
    namespace {
    
    void optimize_func(void* optimizer, const TF_Buffer* graph_buf,
                       const TF_GrapplerItem* item, TF_Buffer* optimized_graph_buf,
                       TF_Status* tf_status) {}
    
    void PopulateDefaultParam(TP_OptimizerRegistrationParams* params) {
      params->struct_size = TP_OPTIMIZER_REGISTRATION_PARAMS_STRUCT_SIZE;
      params->optimizer_configs->struct_size = TP_OPTIMIZER_CONFIGS_STRUCT_SIZE;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 22:30:58 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/grappler/grappler.h

        TF_Bool include_output_tensor_values, TF_Status* s);
    
    // Get the size of input OpInfo::TensorProperties given node name.
    TF_CAPI_EXPORT extern void TF_GetInputPropertiesListSize(
        TF_GraphProperties* graph_properties, const char* name, int* num_values,
        TF_Status* status);
    
    // Get the size of output OpInfo::TensorProperties given node name.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 03 18:08:43 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_unified_experimental.cc

    void TF_SetTracingImplementation(const char* name, TF_Status* s) {
      tsl::Set_TF_Status_from_Status(s, SetDefaultTracingEngine(name));
    }
    
    // Creates a new TensorFlow function, it is an execution context attached to a
    // given tracing context.
    TF_ExecutionContext* TF_CreateFunction(const char* fn_name, TF_Status* s) {
      return wrap(CreateTracingExecutionContext(fn_name, s));
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 10:15:17 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. tensorflow/c/c_api_experimental.h

                                                     TF_Tensor* tensor,
                                                     TF_Status* status);
    // Create a serialized tensorflow.ServerDef proto.
    TF_Buffer* TFE_GetServerDef(const char* text_proto, TF_Status* status);
    
    TF_CAPI_EXPORT extern void TF_MakeInternalErrorStatus(TF_Status* status,
                                                          const char* errMsg);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 27 21:07:00 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/python/mlir.h

        bool include_variables_in_initializers, bool upgrade_legacy,
        bool show_debug_info, TF_Status *status);
    
    std::string ExperimentalRunPassPipeline(const std::string &mlir_txt,
                                            const std::string &pass_pipeline,
                                            bool show_debug_info,
                                            TF_Status *status);
    
    // Writes the input textual MLIR as bytecode to output file.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 14 23:44:01 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top