From e673d38ede941216e5e492cf8ec9164fccd57514 Mon Sep 17 00:00:00 2001 From: name Date: Wed, 22 Nov 2023 23:46:10 +0800 Subject: [PATCH] init --- csrc/core/device/memory.cpp | 5 +++++ .../high_performance_operators}/README.md | 0 .../high_performance_operators}/all_operators.h | 0 .../high_performance_operators}/gemm/base.cpp | 0 .../high_performance_operators}/gemm/test_sy.cpp | 0 .../high_performance_operators}/gemm/version1.cpp | 0 .../high_performance_operators}/gemm/version2.cpp | 0 7 files changed, 5 insertions(+) create mode 100644 csrc/core/device/memory.cpp rename {high_performance_operators => csrc/high_performance_operators}/README.md (100%) rename {high_performance_operators => csrc/high_performance_operators}/all_operators.h (100%) rename {high_performance_operators => csrc/high_performance_operators}/gemm/base.cpp (100%) rename {high_performance_operators => csrc/high_performance_operators}/gemm/test_sy.cpp (100%) rename {high_performance_operators => csrc/high_performance_operators}/gemm/version1.cpp (100%) rename {high_performance_operators => csrc/high_performance_operators}/gemm/version2.cpp (100%) diff --git a/csrc/core/device/memory.cpp b/csrc/core/device/memory.cpp new file mode 100644 index 0000000..eb72fc3 --- /dev/null +++ b/csrc/core/device/memory.cpp @@ -0,0 +1,5 @@ +#include + + +class LFU { +} diff --git a/high_performance_operators/README.md b/csrc/high_performance_operators/README.md similarity index 100% rename from high_performance_operators/README.md rename to csrc/high_performance_operators/README.md diff --git a/high_performance_operators/all_operators.h b/csrc/high_performance_operators/all_operators.h similarity index 100% rename from high_performance_operators/all_operators.h rename to csrc/high_performance_operators/all_operators.h diff --git a/high_performance_operators/gemm/base.cpp b/csrc/high_performance_operators/gemm/base.cpp similarity index 100% rename from high_performance_operators/gemm/base.cpp rename to csrc/high_performance_operators/gemm/base.cpp diff --git a/high_performance_operators/gemm/test_sy.cpp b/csrc/high_performance_operators/gemm/test_sy.cpp similarity index 100% rename from high_performance_operators/gemm/test_sy.cpp rename to csrc/high_performance_operators/gemm/test_sy.cpp diff --git a/high_performance_operators/gemm/version1.cpp b/csrc/high_performance_operators/gemm/version1.cpp similarity index 100% rename from high_performance_operators/gemm/version1.cpp rename to csrc/high_performance_operators/gemm/version1.cpp diff --git a/high_performance_operators/gemm/version2.cpp b/csrc/high_performance_operators/gemm/version2.cpp similarity index 100% rename from high_performance_operators/gemm/version2.cpp rename to csrc/high_performance_operators/gemm/version2.cpp