Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Final (0.2 sec)

  1. tensorflow/c/c_api.h

    //
    // This does not overwrite the existing shape associated with `output`,
    // but merges the input shape with the existing shape.  For example,
    // setting a shape of [-1, 2] with an existing shape [2, -1] would set
    // a final shape of [2, 2] based on shape merging semantics.
    //
    // Returns an error into `status` if:
    //   * `output` is not in `graph`.
    //   * An invalid shape is being set (e.g., the shape being set
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 26 21:08:15 GMT 2023
    - 82.3K bytes
    - Viewed (3)
  2. tensorflow/c/eager/tape.h

            grad_it->second.clear();
            grad_it->second.push_back(grad);
          }
          result[i] = grad_it->second[0];
          used_gradient_ids.insert(tensor_id);
        }
      }
      VLOG(1) << "Final gradients size: "
              << gradients.size() - used_gradient_ids.size();
      for (const auto& grad_pair : gradients) {
        if (used_gradient_ids.find(grad_pair.first) == used_gradient_ids.end()) {
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Tue Apr 02 12:40:29 GMT 2024
    - 47.2K bytes
    - Viewed (1)
  3. tensorflow/c/experimental/filesystem/modular_filesystem.h

    // will need tables to hold for each scheme the function tables that implement
    // the needed functionality instead of the current `FileSystemRegistry` code in
    // `core/platform/env.cc`.
    class ModularFileSystem final : public FileSystem {
     public:
      ModularFileSystem(
          std::unique_ptr<TF_Filesystem> filesystem,
          std::unique_ptr<const TF_FilesystemOps> filesystem_ops,
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Oct 12 08:49:52 GMT 2023
    - 8.9K bytes
    - Viewed (0)
Back to top