-
Notifications
You must be signed in to change notification settings - Fork 38
Create TT client via plugin for TensTorrent devices #1860
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
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
59aae94
Create TT client via plugin for TensTorrent devices
giordano 2da68a4
Automatically download wheel for TT PJRT plugin
giordano 45de3aa
Remove self-qualified accesses
giordano e78b887
[tt plugin] Implement logic to detect Tenstorrent devices
giordano 55d339f
[tt plugin] More comments
giordano bad1618
Update URL of TT PJRT plugin
giordano ca3d3ce
[docs] Mention Tenstorrent as experimental backend
giordano File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,5 +2,6 @@ module Accelerators | |
|
|
||
| include("TPU.jl") | ||
| include("Metal.jl") | ||
| include("TT.jl") | ||
|
|
||
| end | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,82 @@ | ||
| module TT | ||
|
|
||
| using Reactant: Reactant | ||
| using Scratch: @get_scratch! | ||
| using Downloads: Downloads | ||
| using p7zip_jll: p7zip | ||
|
|
||
| const tt_pjrt_plugin_dir = Ref{Union{Nothing,String}}(nothing) | ||
| const tt_pjrt_plugin_name = Ref{String}("pjrt_plugin_tt.so") | ||
|
|
||
| function __init__() | ||
| @static if Sys.islinux() | ||
| if !Reactant.precompiling() && has_tt() | ||
| setup_tt_pjrt_plugin!() | ||
| end | ||
| end | ||
| end | ||
|
|
||
| force_tt_init() = haskey(ENV, "REACTANT_FORCE_TT_INIT") | ||
|
|
||
| function has_tt() | ||
| if force_tt_init() | ||
| return true | ||
| end | ||
|
|
||
| # To find whether we have Tenstorrent devices, we can either | ||
| # | ||
| # * look for devices in `/dev/tenstorrent`, or | ||
| # * look for devices in `/sys/bus/pci/devices` with `vendor` equal to `0x1e52`, something like | ||
| # any(readchomp(joinpath(dir, "vendor")) == "0x1e52" for dir in readdir("/sys/bus/pci/devices"; join=true)) | ||
| # | ||
| # The former is simpler for our current purposes, so we can go that way. | ||
| dev_tt = "/dev/tenstorrent" | ||
| return isdir(dev_tt) && length(readdir(dev_tt)) > 0 | ||
| end | ||
|
|
||
| function setup_tt_pjrt_plugin!() | ||
| plugin_dir_from_env = get(ENV, "TT_PJRT_PLUGIN_DIR", nothing) | ||
| if plugin_dir_from_env !== nothing && ispath(plugin_dir_from_env) | ||
| tt_pjrt_plugin_dir[] = plugin_dir_from_env | ||
| else | ||
| tt_pjrt_plugin_dir[] = @get_scratch!("pjrt_plugin_tt") | ||
| end | ||
| download_tt_pjrt_plugin_if_needed(tt_pjrt_plugin_dir[]) | ||
| return nothing | ||
| end | ||
|
|
||
| get_tt_pjrt_plugin_dir() = tt_pjrt_plugin_dir[] | ||
|
|
||
| function get_tt_pjrt_plugin_path() | ||
| return joinpath(get_tt_pjrt_plugin_dir(), tt_pjrt_plugin_name[]) | ||
| end | ||
|
|
||
| function download_tt_pjrt_plugin_if_needed(dir=nothing) | ||
| dir === nothing && (dir = get_tt_pjrt_plugin_dir()) | ||
| @assert dir !== nothing "tt_pjrt_plugin_dir is not set!" | ||
|
|
||
| tt_pjrt_plugin_path = joinpath(dir, tt_pjrt_plugin_name[]) | ||
| if isfile(tt_pjrt_plugin_path) | ||
| @debug "TT PJRT plugin already found in '$(tt_pjrt_plugin_path)', nothing to do" | ||
| else | ||
| @debug "Will install the TT PJRT plugin to '$(tt_pjrt_plugin_path)'" | ||
| mktempdir() do tmp_dir | ||
| # Index at https://pypi.eng.aws.tenstorrent.com/pjrt-plugin-tt/ | ||
| zip_file_path = joinpath(tmp_dir, "pjrt-plugin-tt.zip") | ||
| wheel_url = if Sys.ARCH === :x86_64 | ||
| "https://pypi.eng.aws.tenstorrent.com/pjrt-plugin-tt/pjrt_plugin_tt-0.6.0.dev20251202-cp311-cp311-linux_x86_64.whl" | ||
| else | ||
| error("Unsupported architecture for TT PJRT plugin: $(Sys.ARCH)") | ||
| end | ||
| @debug "Downloading TT PJRT plugin from '$(wheel_url)'" | ||
| Downloads.download(wheel_url, zip_file_path) | ||
| run(pipeline(`$(p7zip()) x -tzip -o$(tmp_dir) -- $(zip_file_path)`, devnull)) | ||
| data_dir = only(filter!(endswith(".data"), readdir(tmp_dir; join=true))) | ||
| # We need to move the entire `pjrt_plugin_tt` directory to the destination. | ||
| mv(joinpath(data_dir, "purelib", "pjrt_plugin_tt"), dir; force=true) | ||
| end | ||
| @assert isfile(tt_pjrt_plugin_path) | ||
| end | ||
| end | ||
|
|
||
| end # module TT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
while updating this do we want to mention AMD gpus
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How do you set the backend? Is it just
gpulike for Nvidia? Also, does it actually work? At least this backend can do a matmul 😛There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In principle it should just also be GPU