Skip to content

Commit

Permalink
[TensorOp] Fix lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
ZihengJiang committed Aug 6, 2018
1 parent 2ba4a67 commit f892571
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/schedule/schedule_dataflow_rewrite.cc
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ Array<Tensor> CacheWriteWithReLayout(Schedule sch,
sch->InvalidateCache();
Tensor tensor = tensor_array[0];
Stage orig_stage = sch[tensor->op];
if (!strcmp(orig_stage->op->type_key(),"TensorOp")) {
if (!strcmp(orig_stage->op->type_key(), "TensorOp")) {
return CacheWriteWithReLayoutForTensorOp(sch, tensor_array, scope);
}
const ComputeOpNode* compute = orig_stage->op.as<ComputeOpNode>();
Expand Down

0 comments on commit f892571

Please sign in to comment.