Function: dump_unreg_callback
Applicability
Product |
Supported (√/x) |
|---|---|
√ |
|
√ |
|
√ |
|
√ |
|
√ |
Function Usage
Deregisters the dump data callback function.
- Execute a model and obtain dump data through callback.
Function: init -- > Function: dump_reg_callback -- > Function: init_dump --> Model loading --> Model execution -- > Function: finalize_dump -- > Function: dump_unreg_callback --> Model unloading -- > Function: finalize
- Execute two different models and obtain dump data through callback. In this context, as long as the callback function is not deregistered by calling Function: dump_unreg_callback, you can obtain the dump data of both models through the callback function.
Function: init -- > Function: dump_reg_callback -- > Function: init_dump --> Model 1 loading --> Model 1 execution -->--> Model 2 loading --> Model 2 execution -- > Function: finalize_dump --> Model unloading -- > Function: dump_unreg_callback -- > Function: finalize
Prototype
- C Prototype
1void acldumpUnregCallback()
- Python Function
1acl.mdl.dump_unreg_callback()
Parameter Description
None.
Return Value
None
Restrictions
acl.mdl.dump_unreg_callback must work with acl.mdl.dump_reg_callback and is valid only after acl.mdl.dump_reg_callback is called.