Commit e5a2ef47 by hlu1 Committed by Tianqi Chen

[Bugfix] Fix a memory leak in OpManager (#3263)

parent 584a32ae
...@@ -6,9 +6,9 @@ ...@@ -6,9 +6,9 @@
* to you under the Apache License, Version 2.0 (the * to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance * "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at * with the License. You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, * Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an * software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
...@@ -54,8 +54,8 @@ struct OpManager { ...@@ -54,8 +54,8 @@ struct OpManager {
std::vector<PackedFunc*> frontend_funcs; std::vector<PackedFunc*> frontend_funcs;
// get singleton of the op manager // get singleton of the op manager
static OpManager* Global() { static OpManager* Global() {
static OpManager inst; static OpManager* inst = new OpManager();
return &inst; return inst;
} }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment