Commit 6c4268f9 authored by Po-Yen, Chen's avatar Po-Yen, Chen
Browse files

Remove 'elementwise' from file paths

parent 18781f56
add_custom_target(example_elementwise_permute)
add_example_executable(example_elementwise_permute_fp16 elementwise_permute_fp16.cpp)
add_dependencies(example_elementwise_permute example_elementwise_permute_fp16)
add_custom_target(example_permute)
add_example_executable(example_permute_fp16 permute_fp16.cpp)
add_dependencies(example_permute example_permute_fp16)
...@@ -9,6 +9,6 @@ using BDataType = F16; ...@@ -9,6 +9,6 @@ using BDataType = F16;
using DevicePermuteInstance = ck::tensor_operation::device:: using DevicePermuteInstance = ck::tensor_operation::device::
DevicePermute<ck::Tuple<ADataType>, ck::Tuple<BDataType>, PassThrough, 4, 8, S<8>, S<1>>; DevicePermute<ck::Tuple<ADataType>, ck::Tuple<BDataType>, PassThrough, 4, 8, S<8>, S<1>>;
#include "run_elementwise_permute_example.inc" #include "run_permute_example.inc"
int main(int argc, char* argv[]) { return !run_permute_example(argc, argv); } int main(int argc, char* argv[]) { return !run_permute_example(argc, argv); }
...@@ -51,5 +51,5 @@ add_subdirectory(32_batched_gemm_scale_softmax_gemm) ...@@ -51,5 +51,5 @@ add_subdirectory(32_batched_gemm_scale_softmax_gemm)
add_subdirectory(33_multiple_reduce) add_subdirectory(33_multiple_reduce)
add_subdirectory(34_batchnorm) add_subdirectory(34_batchnorm)
add_subdirectory(35_splitK_gemm) add_subdirectory(35_splitK_gemm)
add_subdirectory(36_elementwise_permute) add_subdirectory(36_permute)
add_subdirectory(41_grouped_conv_conv_fwd) add_subdirectory(41_grouped_conv_conv_fwd)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment