CoolFace
Apppublic

gofeco/support

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
0likes
api.get_nets.txt21 linesDownload Raw Back to src_en
1<h3 id='___get_nets'>get_nets</h3>2<pre>Get nets that matching pattern (LLM: matched nets)3<b>Usage:</b> @nets = get_nets($pattern, @options);4$pattern: The net naming pattern, "*" or empty for all nets5@options:;6   -const0: Get all constant zero nets7   -const1: Get all constant one nets8@nets: returned net array.9 10<b>Examples:</b>11 121#. Get all nets.13@nets = get_nets("*"); 14 152#. All nets with 'dbuffer' as prefix 16@nets = get_nets("dbuffer_*"); 17 183#. Get constant nets19@nets = get_nets("-const0"); 20 21</pre>