Skip to content

Commit 746bf6f

Browse files
committed
Linter
1 parent 1897166 commit 746bf6f

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

extension/android/jni/jni_layer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ class ExecuTorchJni : public facebook::jni::HybridClass<ExecuTorchJni> {
357357
auto&& load_result = module_->load_method("forward");
358358
auto&& buf = prepare_input_tensors(*(module_->methods_["forward"].method));
359359
auto&& result = module_->methods_["forward"].method->execute();
360-
return (jint) result;
360+
return (jint)result;
361361
}
362362

363363
static void registerNatives() {

extension/android/src/main/java/org/pytorch/executorch/NativePeer.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ public void resetNative() {
3939
@DoNotStrip
4040
public native EValue[] forward(EValue... inputs);
4141

42-
/** Run a "forward" call with the sample inputs (ones) to test a module
42+
/**
43+
* Run a "forward" call with the sample inputs (ones) to test a module
44+
*
4345
* @return the outputs of the forward call
4446
* @apiNote This is experimental and test-only API
4547
*/

0 commit comments

Comments
 (0)