Add instances for grouped conv fwd 3d with ConvScale for fp8@bf8->fp8 (#1325)

* Add fp8 bf8 conv example

* Add instances

* Add client example

* Add random scale values

* Format
This commit is contained in:
Rostyslav Geyyer
2024-06-12 14:41:56 -05:00
committed by GitHub
parent 5fc1bee4c5
commit acda4c5a3c
9 changed files with 275 additions and 4 deletions

View File

@@ -5,6 +5,8 @@ foreach(gpu IN LISTS GPU_TARGETS)
add_custom_target(example_convnd_activ_xdl_convscale)
add_example_executable(example_convnd_fwd_xdl_convscale_fp8 convnd_fwd_xdl_convscale_fp8.cpp)
add_example_dependencies(example_convnd_activ_xdl_convscale example_convnd_fwd_xdl_convscale_fp8)
add_example_executable(example_convnd_fwd_xdl_convscale_fp8_bf8 convnd_fwd_xdl_convscale_fp8_bf8.cpp)
add_example_dependencies(example_convnd_activ_xdl_convscale example_convnd_fwd_xdl_convscale_fp8_bf8)
set(target 1)
endif()
endforeach()