You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ju...@apache.org on 2023/06/21 16:40:37 UTC

[tvm] branch unity updated: [Unity] Hotfix webgpu runtime (#15135)

This is an automated email from the ASF dual-hosted git repository.

junrushao pushed a commit to branch unity
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/unity by this push:
     new cbdee2ff34 [Unity] Hotfix webgpu runtime (#15135)
cbdee2ff34 is described below

commit cbdee2ff34d321e4318ee15fc65a2c4f35e2b315
Author: Tianqi Chen <tq...@users.noreply.github.com>
AuthorDate: Wed Jun 21 12:40:31 2023 -0400

    [Unity] Hotfix webgpu runtime (#15135)
    
    This PR hotfixes webgpu runtime after merging with main
---
 web/emcc/webgpu_runtime.cc | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/web/emcc/webgpu_runtime.cc b/web/emcc/webgpu_runtime.cc
index d0ec39efa1..957c8752ff 100644
--- a/web/emcc/webgpu_runtime.cc
+++ b/web/emcc/webgpu_runtime.cc
@@ -203,10 +203,6 @@ class WebGPUModuleNode final : public runtime::ModuleNode {
 
   int GetPropertyMask() const final { return ModulePropertyMask::kBinarySerializable; };
 
-  void SaveToFile(const String& file_name, const std::string& format) final {
-    LOG(FATAL) << "Not implemented";
-  }
-
   void SaveToBinary(dmlc::Stream* stream) final { LOG(FATAL) << "Not implemented"; }
 
   String GetSource(const String& format) final {