icemelon9 commented on a change in pull request #5324:
[Runtime][Relay][Cleanup] Clean up for memory pass to enable heterogenous
execution support.
URL: https://github.com/apache/incubator-tvm/pull/5324#discussion_r408504560
##########
File path: include/tvm/relay/attrs/memory.h
##########
@@ -27,10 +27,37 @@
#include <tvm/ir/attrs.h>
#include <tvm/relay/expr.h>
#include <string>
+#include <vector>
namespace tvm {
namespace relay {
+std::vector<TensorType> FlattenTupleType(const Type& type);
+std::vector<Expr> FromTupleType(const Type& type, const Expr& expr);
+Expr ToTupleType(const Type& t, const Array<Expr>& exprs);
+
+/*!
+ * \brief Options for allocating storage.
+ */
+struct AllocStorageAttrs : public tvm::AttrsNode<AllocStorageAttrs> {
+ DataType dtype;
Review comment:
ah, I realized that it's because the device api AllocDataSpace requires type
hint for openGL.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services