Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 207 for cc_status (0.86 sec)

  1. tensorflow/c/kernels/ops/merge_summary.cc

    #include "tensorflow/c/ops.h"
    #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 merge_summary_shape_inference_fn(TF_ShapeInferenceContext* ctx,
                                                 TF_Status* status) {
      TF_SetStatus(status, TF_OK, "");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 21:04:53 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/saved_model/internal/saved_model_api.cc

    #include "tensorflow/c/experimental/saved_model/internal/saved_model_api_type.h"
    #include "tensorflow/c/experimental/saved_model/internal/signature_def_function_type.h"
    #include "tensorflow/c/tf_status.h"
    #include "tensorflow/c/tf_status_internal.h"
    #include "tensorflow/core/common_runtime/eager/context.h"
    #include "tensorflow/core/platform/casts.h"
    #include "tensorflow/core/platform/errors.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 04 00:45:47 UTC 2020
    - 4.7K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache_test.cc

    ==============================================================================*/
    
    #include "tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.h"
    
    #include <cstring>
    
    #include "tensorflow/c/tf_status.h"
    #include "tensorflow/c/tf_status_internal.h"
    #include "tensorflow/core/lib/core/status_test_util.h"
    #include "tensorflow/core/platform/blocking_counter.h"
    #include "tensorflow/core/platform/cloud/now_seconds_env.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 15 03:16:57 UTC 2021
    - 23.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/python/mlir.cc

    #include "mlir/Support/FileUtilities.h"  // from @llvm-project
    #include "stablehlo/dialect/Register.h"  // from @stablehlo
    #include "tensorflow/c/eager/c_api.h"
    #include "tensorflow/c/eager/tfe_context_internal.h"
    #include "tensorflow/c/tf_status.h"
    #include "tensorflow/c/tf_status_helper.h"
    #include "tensorflow/compiler/mlir/lite/flatbuffer_import.h"
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/filesystem_interface.h

      int64_t (*tell)(const TF_WritableFile* file, TF_Status* status);
    
      /// Flushes `*file` and syncs contents to filesystem.
      ///
      /// This call might not block, and when it returns the contents might not have
      /// been fully persisted.
      ///
      /// DEFAULT IMPLEMENTATION: No op.
      void (*flush)(const TF_WritableFile* file, TF_Status* status);
    
      /// Syncs contents of `*file` with the 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)
  6. tensorflow/c/kernels/ops/summary.cc

    #include "tensorflow/c/ops.h"
    #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 scalar_summary_shape_inference_fn(TF_ShapeInferenceContext* ctx,
                                                  TF_Status* status) {
      TF_SetStatus(status, TF_OK, "");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 21:04:53 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. tensorflow/c/c_api_experimental_test.cc

        tasks {
          key: 0
          value: "tpuserver:0"
        }
        tasks {
          key: 1
          value: "localhost:1"
        }
      }
    }
    job_name: "worker"
    task_index: 1
    protocol: "grpc"
    )");
    
      TF_Status* status = TF_NewStatus();
      TF_Buffer* result = TFE_GetServerDef(expected_text_proto.c_str(), status);
      EXPECT_EQ(TF_GetCode(status), TF_OK);
    
      ServerDef actual;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 17 22:27:52 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  8. tensorflow/c/eager/parallel_device/parallel_device_lib.h

                                                           TF_Status* status) const;
    
      // Construct a parallel tensor consisting of the scalar values from `values`.
      template <typename DataType>
      std::unique_ptr<ParallelTensor> ScalarsFromSequence(
          absl::Span<const DataType> values, TFE_Context* context,
          TF_Status* status) const;
    
      // A parallel tensor with scalar integers numbering component devices.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 25 15:21:13 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. tensorflow/c/c_api_function.cc

    void TF_FunctionToFunctionDef(TF_Function* func, TF_Buffer* output_func_def,
                                  TF_Status* status) {
      status->status = MessageToBuffer(func->record->fdef(), output_func_def);
    }
    
    TF_Function* TF_FunctionImportFunctionDef(const void* proto, size_t proto_len,
                                              TF_Status* status) {
      tensorflow::FunctionDef fdef;
      bool success = fdef.ParseFromArray(proto, proto_len);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. tensorflow/c/eager/unified_api_testutil.cc

    #include "tensorflow/c/tf_status.h"
    #include "tensorflow/c/tf_status_helper.h"
    #include "tensorflow/core/framework/tensor_shape.h"
    #include "tensorflow/core/lib/llvm_rtti/llvm_rtti.h"
    #include "tensorflow/core/platform/errors.h"
    
    namespace tensorflow {
    
    AbstractContext* BuildFunction(const char* fn_name) {
      std::unique_ptr<TF_Status, decltype(&TF_DeleteStatus)> status(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 13:57:45 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top