MasterJH5574 commented on code in PR #14068:
URL: https://github.com/apache/tvm/pull/14068#discussion_r1113580742


##########
src/target/tag.cc:
##########
@@ -376,4 +376,19 @@ TVM_REGISTER_TAG_AWS_C5("aws/cpu/c5.24xlarge", 48, 
"cascadelake");
 
 #undef TVM_REGISTER_TAG_AWS_C5
 
+#define TVM_REGISTER_METAL_TAG(Name, ThreadsPerBlock, SharedMem, WarpSize)     
  \
+  TVM_REGISTER_TARGET_TAG(Name).set_config(                                    
  \
+      {{"kind", String("metal")},                                              
  \
+       {"max_threads_per_block", Integer(ThreadsPerBlock)},                    
  \
+       {"max_shared_memory_per_block", Integer(SharedMem)},                    
  \
+       {"thread_warp_size", Integer(WarpSize)},                                
  \
+       {"host", Map<String, ObjectRef>{{"kind", String("llvm")},               
  \
+                                       {"mtriple", 
String("arm64-apple-macos")}, \
+                                       {"mcpu", String("apple-latest")}}}});
+
+TVM_REGISTER_METAL_TAG("apple/m1", 1024, 32768, 32);

Review Comment:
   Thanks. I also updated the PR title and description.



-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to