| 81 | class RNGDnnOpManager final : public DnnOpManagerT<RNGDnnOpManager, Handle> { |
| 82 | public: |
| 83 | Handle new_handle(CompNode comp_node, uint64_t seed) { |
| 84 | MGB_LOCK_GUARD(sm_mtx); |
| 85 | return DnnOpManagerBase::new_handle(comp_node, seed); |
| 86 | } |
| 87 | |
| 88 | size_t delete_handle(Handle handle) { |
| 89 | MGB_LOCK_GUARD(sm_mtx); |
nothing calls this directly
no test coverage detected