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
Hi ,
Reporting a minor bug causing crash of the build process. Error Logs
third_party/cpu/runtime/cpu_runtime.cpp:95:77: error: return type ‘class std::tuple<int, int, bool>’ is incomplete
95 | std::tuple<int, int, bool> computeDigitStats(const MemRefDescriptor<T> &desc) {
| ^
third_party/cpu/runtime/cpu_runtime.cpp:119:15: error: ‘make_tuple’ is not a member of ‘std’
119 | return std::make_tuple(maxIntDigits, minIntDigits, hasNegative);
| ^~~~~~~~~~
third_party/cpu/runtime/cpu_runtime.cpp:11:1: note: ‘std::make_tuple’ is defined in header ‘<tuple>’; did you forget to ‘#include <tuple>’?
10 | #include <vector>
+++ | #include <tuple>
11 |
Suggested Fix
#include <tuple>
Steps to Reproduce:
Follow the build steps to pip install -e python
The text was updated successfully, but these errors were encountered:
Hi ,
Reporting a minor bug causing crash of the build process.
Error Logs
Suggested Fix
Steps to Reproduce:
Follow the build steps to
pip install -e python
The text was updated successfully, but these errors were encountered: