Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update host_api.hpp #15385

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions tt_metal/host_api.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ std::unique_ptr<GlobalSemaphore> CreateGlobalSemaphore(

// clang-format off
/**
* Creates a pre-allocated interleaved DRAM or L1 buffer with the global allocator on device
* Creates a pre-allocated interleaved DRAM or L1 buffer with the global allocator on the device. For more information about buffers visit the Tenstorrent GitHub: [Buffers info on GitHub](https://github.com/tenstorrent/tt-metal/tree/main/tt_metal/impl/buffers).
*
* Return value: std::shared_ptr<Buffer>
*
Expand All @@ -327,7 +327,7 @@ std::shared_ptr<Buffer> CreateBuffer(const InterleavedBufferConfig& config);

// clang-format off
/**
* Creates a pre-allocated interleaved DRAM or L1 buffer with the global allocator on device
* Creates a pre-allocated interleaved DRAM or L1 buffer with the global allocator on the device. For more information about buffers visit the Tenstorrent GitHub: [Buffers info on GitHub](https://github.com/tenstorrent/tt-metal/tree/main/tt_metal/impl/buffers).
*
* Return value: std::shared_ptr<Buffer>
*
Expand All @@ -341,7 +341,7 @@ std::shared_ptr<Buffer> CreateBuffer(const InterleavedBufferConfig& config, Devi

// clang-format off
/**
* Creates a pre-allocated interleaved DRAM or L1 buffer on device
* Creates a pre-allocated interleaved DRAM or L1 buffer with the global allocator on the device. IFor more information about buffers visit the Tenstorrent GitHub: [Buffers info on GitHub](https://github.com/tenstorrent/tt-metal/tree/main/tt_metal/impl/buffers).
*
* Return value: std::shared_ptr<Buffer>
*
Expand All @@ -355,7 +355,7 @@ std::shared_ptr<Buffer> CreateBuffer(const InterleavedBufferConfig& config, SubD

// clang-format off
/**
* Creates a pre-allocated sharded DRAM or L1 buffer with the global allocator on device
* Creates a pre-allocated sharded DRAM or L1 buffer with the global allocator on the device. For more information about buffers visit the Tenstorrent GitHub: [Buffers info on GitHub](https://github.com/tenstorrent/tt-metal/tree/main/tt_metal/impl/buffers).
*
* Return value: std::shared_ptr<Buffer>
*
Expand All @@ -368,7 +368,7 @@ std::shared_ptr<Buffer> CreateBuffer(const ShardedBufferConfig& config);

// clang-format off
/**
* Creates a pre-allocated sharded DRAM or L1 buffer with the global allocator on device
* Creates a pre-allocated sharded DRAM or L1 buffer with the global allocator on the device. For more information about buffers visit the Tenstorrent GitHub: [Buffers info on GitHub](https://github.com/tenstorrent/tt-metal/tree/main/tt_metal/impl/buffers).
*
* Return value: std::shared_ptr<Buffer>
*
Expand All @@ -382,7 +382,7 @@ std::shared_ptr<Buffer> CreateBuffer(const ShardedBufferConfig& config, DeviceAd

// clang-format off
/**
* Creates a pre-allocated sharded DRAM or L1 buffer on device
* Creates a pre-allocated sharded DRAM or L1 buffer with the global allocator on the device. For more information about buffers visit the Tenstorrent GitHub: [Buffers info on GitHub](https://github.com/tenstorrent/tt-metal/tree/main/tt_metal/impl/buffers).
*
* Return value: std::shared_ptr<Buffer>
*
Expand Down
Loading