diff --git a/torch/csrc/jit/runtime/graph_executor.cpp b/torch/csrc/jit/runtime/graph_executor.cpp index ecf009d111dc0..3c019c8dd0f4d 100644 --- a/torch/csrc/jit/runtime/graph_executor.cpp +++ b/torch/csrc/jit/runtime/graph_executor.cpp @@ -780,8 +780,7 @@ void runNondiffOptimization( // otherwise fallback to the legacy executor and legacy fuser if (strict_fuser_check) { FuseTensorExprs(graph); - } - else { + } else { FuseGraph(graph, strict_fuser_check); } diff --git a/torch/csrc/jit/tensorexpr/kernel.cpp b/torch/csrc/jit/tensorexpr/kernel.cpp index be6dcc94d1811..ba0c430e3ae5d 100644 --- a/torch/csrc/jit/tensorexpr/kernel.cpp +++ b/torch/csrc/jit/tensorexpr/kernel.cpp @@ -313,7 +313,7 @@ Tensor* TensorExprKernel::computeTwoOperandWithAlpha( promoteInputs(inputs); ExprHandle compute = innerExpr(inputs[0], inputs[2] * inputs[1]); - //ExprHandle compute = innerExpr(inputs[0], inputs[1]); + // ExprHandle compute = innerExpr(inputs[0], inputs[1]); return demoteOutput(compute, n->output()); }); }