From e7d34badfbfcfe8b047627d703eaae1606f2950c Mon Sep 17 00:00:00 2001 From: OdinaryWord Date: Fri, 26 Jan 2024 16:11:30 +0800 Subject: [PATCH] fix format --- include/ascend/ascend_kernel_without_config.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/include/ascend/ascend_kernel_without_config.h b/include/ascend/ascend_kernel_without_config.h index 00be08ed..e47d150d 100644 --- a/include/ascend/ascend_kernel_without_config.h +++ b/include/ascend/ascend_kernel_without_config.h @@ -4,7 +4,6 @@ namespace infini { - class ASCENDKernelWithoutConfig : public Kernel { public: virtual void compute(const Operator &op, const PerfRecord &record, @@ -21,7 +20,7 @@ class ASCENDKernelWithoutConfig : public Kernel { [&]() { context->sync(); })); } // transform vector to vector - std::vector MycastTo64(std::vector const & v32) const { + std::vector MycastTo64(std::vector const &v32) const { std::vector v64(v32.size(), 1); for (size_t i = 0; i < v32.size(); ++i) { v64[i] = int64_t(v32[i]);