Skip to content

Commit

Permalink
fix cpplint
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Brookhart committed Jul 2, 2020
1 parent dfbb78e commit 049ab22
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/relay/op/dyn/tensor/transform.cc
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ RELAY_REGISTER_OP("dyn.reshape")
.set_attr<TOpPattern>("TOpPattern", kInjective);

// tile operator
//TVM_REGISTER_NODE_TYPE(TileAttrs);
// TVM_REGISTER_NODE_TYPE(TileAttrs);

bool TileRel(const Array<Type>& types, int num_inputs, const Attrs& attrs,
const TypeReporter& reporter) {
Expand Down
3 changes: 2 additions & 1 deletion src/relay/transforms/dynamic_to_static.cc
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ namespace relay {

class DynamicToStaticMutator : public MixedModeMutator {
public:
DynamicToStaticMutator() : dyn_reshape_op_(Op::Get("dyn.reshape")), dyn_tile_op_(Op::Get("dyn.tile")) {}
DynamicToStaticMutator()
: dyn_reshape_op_(Op::Get("dyn.reshape")), dyn_tile_op_(Op::Get("dyn.tile")) {}

private:
Expr Rewrite_(const CallNode* pre, const Expr& post) override {
Expand Down

0 comments on commit 049ab22

Please sign in to comment.