Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for itself (0.18 sec)

  1. tensorflow/c/eager/parallel_device/parallel_device_testlib.cc

      if (TF_GetCode(status) != TF_OK) return;
      int num_retvals = 0;
      TFE_Execute(op.get(), nullptr, &num_retvals, status);
      if (TF_GetCode(status) != TF_OK) return;
      // Delete the variable handle itself.
      TFE_DeleteTensorHandle(handle_);
    }
    
    TensorHandlePtr Variable::Read(TFE_Context* context, TF_Status* status) {
      std::unique_ptr<TFE_Op, decltype(&TFE_DeleteOp)> op(
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Jun 15 15:44:44 GMT 2021
    - 12.5K bytes
    - Viewed (0)
  2. tensorflow/c/eager/parallel_device/parallel_device_lib.cc

      }
    };
    
    using ExecutorPtr = std::unique_ptr<TFE_Executor, ExecutorDeleter>;
    
    }  // namespace
    
    // Allows a single op at a time to be launched without blocking.
    //
    // DeviceThread itself is thread-safe, in that StartExecute will block if there
    // is a pending execution. Since StartExecute is equivalent to grabbing a lock,
    // multiple DeviceThreads should always be accessed in the same order to avoid
    // deadlocks.
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Feb 09 07:47:20 GMT 2024
    - 25.4K bytes
    - Viewed (1)
  3. tensorflow/c/experimental/filesystem/plugins/gcs/gcs_filesystem.cc

        return false;
      }
      return true;
    }
    
    static std::vector<std::string> GetChildrenBounded(
        GCSFile* gcs_file, std::string dir, uint64_t max_results, bool recursive,
        bool include_self_directory_marker, TF_Status* status) {
      std::string bucket, prefix;
      MaybeAppendSlash(&dir);
      ParseGCSPath(dir, true, &bucket, &prefix, status);
    
      std::vector<std::string> result;
      uint64_t count = 0;
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Wed Aug 23 06:55:53 GMT 2023
    - 46.9K bytes
    - Viewed (0)
Back to top