mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Summary: As GoogleTest `TEST` macro is non-compliant with it as well as `DEFINE_DISPATCH` All changes but the ones to `.clang-tidy` are generated using following script: ``` for i in `find . -type f -iname "*.c*" -or -iname "*.h"|xargs grep cppcoreguidelines-avoid-non-const-global-variables|cut -f1 -d:|sort|uniq`; do sed -i "/\/\/ NOLINTNEXTLINE(cppcoreguidelines-avoid-non-const-global-variables)/d" $i; done ``` Pull Request resolved: https://github.com/pytorch/pytorch/pull/62008 Reviewed By: driazati, r-barnes Differential Revision: D29838584 Pulled By: malfet fbshipit-source-id: 1b2f8602c945bd4ce50a9bfdd204755556e31d13
21 lines
734 B
C++
21 lines
734 B
C++
#include "caffe2/operators/if_op.h"
|
|
|
|
namespace caffe2 {
|
|
|
|
REGISTER_CPU_OPERATOR(If, IfOp<CPUContext>);
|
|
|
|
OPERATOR_SCHEMA(If)
|
|
.NumInputs(1, INT_MAX)
|
|
.NumOutputs(0, INT_MAX)
|
|
.SetDoc(R"DOC(
|
|
'If' control operator, first input is a scalar boolean blob that stores condition
|
|
value. Accepts 'then_net' (required) and 'else_net' (optional) arguments for 'then' and
|
|
'else' subnets respectively. Subnets are executed in the same workspace as 'If'.
|
|
)DOC")
|
|
.Arg("then_net", "Net executed when condition is true")
|
|
.Arg("else_net", "Net executed when condition is false (optional)")
|
|
.Input(0, "condition", "Scalar boolean condition")
|
|
.AllowInplace([](int in, int out) -> bool { return true; });
|
|
|
|
} // namespace caffe2
|