Skip to content

Commit d9716b9

Browse files
Varun Purifacebook-github-bot
authored andcommitted
Move sdk executor_runner to sdk/fb/runners folder to hide from OSS with hg mv
Summary: Move sdk executor_runner to sdk/fb/runners folder to hide from OSS. [1/n] in a series of diffs to consoldate/organize the various copies of executor_runner in the OSS executorch repo Very simple change: 1. move `sdk/runners` folder under `sdk/fb/runners` using `hg mv` 2. biggrep for `executorch/sdk/runners`, replace with `executorch/sdk/fb/runners` Differential Revision: D49929099
1 parent dfd947a commit d9716b9

File tree

5 files changed

+4
-10
lines changed

5 files changed

+4
-10
lines changed

docs/website/docs/tutorials/bundled_program.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ __ET_NODISCARD Error VerifyResultWithBundledExpectedOutput(
128128

129129
### Example
130130

131-
Here we provide an example about how to run the bundled program step by step. Most of the code are borrowed from "fbcode/executorch/sdk/runners/executor_runner.cpp" and please review that file if you need more info and context:
131+
Here we provide an example about how to run the bundled program step by step. Most of the code are borrowed from "fbcode/executorch/sdk/fb/runners/executor_runner.cpp" and please review that file if you need more info and context:
132132

133133
```c++
134134
// method_name is the name for the method we want to test

runtime/executor/test/targets.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def define_common_targets(is_fbcode = False):
1818
"//executorch/exir/backend/test/...",
1919
"//executorch/runtime/backend/...",
2020
"//executorch/extension/pybindings/...",
21-
"//executorch/sdk/runners/...",
21+
"//executorch/sdk/fb/runners/...",
2222
"//executorch/test/...",
2323
"//executorch/examples/...",
2424
],
@@ -42,7 +42,7 @@ def define_common_targets(is_fbcode = False):
4242
"//executorch/exir/backend/test/...",
4343
"//executorch/runtime/backend/...",
4444
"//executorch/extension/pybindings/...",
45-
"//executorch/sdk/runners/...",
45+
"//executorch/sdk/fb/runners/...",
4646
"//executorch/test/...",
4747
"//executorch/examples/...",
4848
],
File renamed without changes.

sdk/runners/executor_runner.cpp renamed to sdk/fb/runners/executor_runner.cpp

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
1-
/*
2-
* Copyright (c) Meta Platforms, Inc. and affiliates.
3-
* All rights reserved.
4-
*
5-
* This source code is licensed under the BSD-style license found in the
6-
* LICENSE file in the root directory of this source tree.
7-
*/
1+
// (c) Meta Platforms, Inc. and affiliates. Confidential and proprietary.
82

93
#include <gflags/gflags.h>
104

File renamed without changes.

0 commit comments

Comments
 (0)