From 01d4c32e194079489423c5aa332b6eaa5ddb4bb4 Mon Sep 17 00:00:00 2001 From: Finlay Date: Thu, 9 Jan 2025 14:12:26 +0000 Subject: [PATCH] Fix examples after file rename (#179) common.h was moved to common.hpp with commit f14d683769d74a7311c560ce3a1dbbf3e58a0b31 --- examples/sycl/pvc/pvc_gemm_streamk.cpp | 2 +- examples/sycl/pvc/pvc_gemm_with_epilogue_gelu.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/sycl/pvc/pvc_gemm_streamk.cpp b/examples/sycl/pvc/pvc_gemm_streamk.cpp index 5eb48e15f..f728aecbc 100644 --- a/examples/sycl/pvc/pvc_gemm_streamk.cpp +++ b/examples/sycl/pvc/pvc_gemm_streamk.cpp @@ -45,7 +45,7 @@ #include "cutlass/util/packed_stride.hpp" #include "cutlass/util/reference/device/gemm_complex.h" #include "cutlass/util/reference/device/tensor_compare.h" -#include "common.h" +#include "common.hpp" #include "cutlass/gemm/kernel/xe_persistent_tile_scheduler_params_streamk.hpp" using namespace cute; diff --git a/examples/sycl/pvc/pvc_gemm_with_epilogue_gelu.cpp b/examples/sycl/pvc/pvc_gemm_with_epilogue_gelu.cpp index 9a0b81430..f56f45e55 100644 --- a/examples/sycl/pvc/pvc_gemm_with_epilogue_gelu.cpp +++ b/examples/sycl/pvc/pvc_gemm_with_epilogue_gelu.cpp @@ -49,7 +49,7 @@ #include "cutlass/tensor_view.h" #include "cutlass/coord.h" -#include "common.h" +#include "common.hpp" using namespace cute;