From c79666a2b55053d164a740ec9186fa7c506234a9 Mon Sep 17 00:00:00 2001 From: pytorchbot Date: Mon, 22 Apr 2024 17:42:47 -0700 Subject: [PATCH] Remove unused extension/aot_util directory (#3216) (#3226) Summary: The AOT util extension was removed a while back, but the directory and README still exist. This PR cleans them up. Note that the aot_util sources were deleted previously, so this is not a functional change. Pull Request resolved: https://github.com/pytorch/executorch/pull/3216 Test Plan: CI. This is not a functional change, as it changes only a README file. Reviewed By: metascroy Differential Revision: D56436216 Pulled By: GregoryComer fbshipit-source-id: 2f8b8cee20b7a3efb25a1ef1df3ebd69f3b512c9 (cherry picked from commit 67f337677d22c1c60f8236e77abf9c981a55eaf4) Co-authored-by: Gregory Comer --- extension/aot_util/README.md | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 extension/aot_util/README.md diff --git a/extension/aot_util/README.md b/extension/aot_util/README.md deleted file mode 100644 index dbb3866bec..0000000000 --- a/extension/aot_util/README.md +++ /dev/null @@ -1,9 +0,0 @@ -# AOT Util - -Ahead-of-time (AOT) utility library. Contains native code used by the AOT lowering and delegation logic. Note -that this library should build independently of the runtime code, and as such, should not have dependencies -on runtime targets. - -This library is intended to be built and distributed as part of the Python pip package, such that it can be -loaded by AOT Python code. -