You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
System descriptor is tt-mlir's means for capturing all relevant information about the target system needed for compile. This is the perfect place to store CPU information for executing operations on the host.
Update table SystemDesc with CPU device information, perhaps something like:
Where target triple can be scraped from the current machine via:
clang -dumpmachine
# OR
gcc -dumpmachine
We should collect this information during ttrt's setup.py script and pass this host's target triple information via preprocessor macro -DHOST_TARGET_TRIPLE=$($CC -dumpmachine).
The text was updated successfully, but these errors were encountered:
System descriptor is tt-mlir's means for capturing all relevant information about the target system needed for compile. This is the perfect place to store CPU information for executing operations on the host.
Update
table SystemDesc
with CPU device information, perhaps something like:Where target triple can be scraped from the current machine via:
clang -dumpmachine # OR gcc -dumpmachine
We should collect this information during ttrt's
setup.py
script and pass this host's target triple information via preprocessor macro-DHOST_TARGET_TRIPLE=$($CC -dumpmachine)
.The text was updated successfully, but these errors were encountered: