-
Notifications
You must be signed in to change notification settings - Fork 37
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
Draft
giordano
wants to merge
3
commits into
main
Choose a base branch
from
mg/tt-plugin
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+130
−0
Draft
Changes from all commits
Commits
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
| 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,65 @@ | ||
| 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 | ||
|
|
||
| has_tt() = true | ||
|
|
||
| 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 | ||
| 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.dev20251113-cp311-cp311-linux_x86_64.whl" | ||
| else | ||
| error("Unsupported architecture: $(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.
I need to figure out how to detect the devices automatically, but apart from that this should be good from my side as an experimental plugin. I'm not sure about the "TT" name everywhere though, bit too short and obscure, but that's how all the TensTorrent tools are called.