mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-07-18 09:38:17 +00:00
add print statement in CMake and use values instead of max / min / step in json input file
This commit is contained in:
@@ -158,6 +158,13 @@ function(build_individual_gemm_targets datatype layout)
|
||||
# Create working directory first
|
||||
file(MAKE_DIRECTORY ${working_path})
|
||||
|
||||
message(STATUS "COMMAND: ${Python3_EXECUTABLE} -u ${CMAKE_CURRENT_LIST_DIR}/gemm_instance_builder.py
|
||||
--working_path ${working_path}
|
||||
--datatype ${datatype}
|
||||
--layout ${layout}
|
||||
--config_json ${json_blob}
|
||||
--list_kernels")
|
||||
|
||||
# First, just list the kernels (fast operation)
|
||||
message(STATUS " Listing kernel configurations...")
|
||||
execute_process(
|
||||
|
||||
@@ -3,9 +3,10 @@
|
||||
},
|
||||
"tile_config": {
|
||||
"tile_m": {
|
||||
"max": 256,
|
||||
"min": 64,
|
||||
"step": 64
|
||||
"values": [
|
||||
256,
|
||||
128
|
||||
]
|
||||
},
|
||||
"tile_n": {
|
||||
"max": 256,
|
||||
|
||||
Reference in New Issue
Block a user