ttsds
/
amphion_valle
The VALL-E models by Amphion.
Prediction
ttsds/amphion_valle:ea4a4a593f9692b7c796e23f1a4b4cbdd64b346bb67e2185688719ebe5b3a8e2IDhxzs946h5drmc0cmjdy9mrkq10StatusSucceededSourceWebHardwareL40STotal durationCreatedInput
- text
- The quick brown fox jumped over the lazy dog.
- model
- valle_v1_small
- speaker_reference
- Video Player is loading.Current Time 00:00:000/Duration 00:00:000Loaded: 0%Stream Type LIVERemaining Time -00:00:0001x
- Chapters
- descriptions off, selected
- captions settings, opens captions settings dialog
- captions off, selected
This is a modal window.
Beginning of dialog window. Escape will cancel and close the window.
End of dialog window.
{ "text": "The quick brown fox jumped over the lazy dog.", "model": "valle_v1_small", "speaker_reference": "https://replicate.delivery/pbxt/MN7xAi6gE38grU2jIsRpzx43qsVuzPChncdGx6viarnNSXIh/example%281%29.wav" }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run ttsds/amphion_valle using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "ttsds/amphion_valle:ea4a4a593f9692b7c796e23f1a4b4cbdd64b346bb67e2185688719ebe5b3a8e2", { input: { text: "The quick brown fox jumped over the lazy dog.", model: "valle_v1_small", speaker_reference: "https://replicate.delivery/pbxt/MN7xAi6gE38grU2jIsRpzx43qsVuzPChncdGx6viarnNSXIh/example%281%29.wav" } } ); // To access the file URL: console.log(output.url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run ttsds/amphion_valle using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "ttsds/amphion_valle:ea4a4a593f9692b7c796e23f1a4b4cbdd64b346bb67e2185688719ebe5b3a8e2", input={ "text": "The quick brown fox jumped over the lazy dog.", "model": "valle_v1_small", "speaker_reference": "https://replicate.delivery/pbxt/MN7xAi6gE38grU2jIsRpzx43qsVuzPChncdGx6viarnNSXIh/example%281%29.wav" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run ttsds/amphion_valle using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "ttsds/amphion_valle:ea4a4a593f9692b7c796e23f1a4b4cbdd64b346bb67e2185688719ebe5b3a8e2", "input": { "text": "The quick brown fox jumped over the lazy dog.", "model": "valle_v1_small", "speaker_reference": "https://replicate.delivery/pbxt/MN7xAi6gE38grU2jIsRpzx43qsVuzPChncdGx6viarnNSXIh/example%281%29.wav" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
Video Player is loading.Current Time 00:00:000/Duration 00:00:000Loaded: 0%Stream Type LIVERemaining Time -00:00:0001x- Chapters
- descriptions off, selected
- captions settings, opens captions settings dialog
- captions off, selected
This is a modal window.
Beginning of dialog window. Escape will cancel and close the window.
End of dialog window.
{ "completed_at": "2025-01-23T14:07:31.701266Z", "created_at": "2025-01-23T14:06:58.347000Z", "data_removed": false, "error": null, "id": "hxzs946h5drmc0cmjdy9mrkq10", "input": { "text": "The quick brown fox jumped over the lazy dog.", "model": "valle_v1_small", "speaker_reference": "https://replicate.delivery/pbxt/MN7xAi6gE38grU2jIsRpzx43qsVuzPChncdGx6viarnNSXIh/example%281%29.wav" }, "logs": "Due to a bug fix in https://github.com/huggingface/transformers/pull/28687 transcription using a multilingual Whisper will default to language detection followed by transcription instead of translation to English.This might be a breaking change for your use case. If you want to instead always translate your audio to English, make sure to pass `language='en'`.\n2025-01-23 14:07:29 | WARNING | phonemizer | words count mismatch on 100.0% of the lines (1/1)\n2025-01-23 14:07:29 | WARNING | phonemizer | words count mismatch on 100.0% of the lines (1/1)\nSaved to: /results/cec60fce6376f548b305ab4a0ae800b23c3dcbae7d5355c6f2cfb31043e0a386/single", "metrics": { "predict_time": 3.521645611, "total_time": 33.354266 }, "output": "https://replicate.delivery/xezq/HdJCfGR4tmVveEWIE945GHDXZlokskfqh9Px5LBk12aH5ffgC/test_pred.wav", "started_at": "2025-01-23T14:07:28.179620Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-3nrjqoybc7vpdewzgr75mj4nhimkbbct5otvzxm7kqljfyc2sehq", "get": "https://api.replicate.com/v1/predictions/hxzs946h5drmc0cmjdy9mrkq10", "cancel": "https://api.replicate.com/v1/predictions/hxzs946h5drmc0cmjdy9mrkq10/cancel" }, "version": "ea4a4a593f9692b7c796e23f1a4b4cbdd64b346bb67e2185688719ebe5b3a8e2" }
Generated inDue to a bug fix in https://github.com/huggingface/transformers/pull/28687 transcription using a multilingual Whisper will default to language detection followed by transcription instead of translation to English.This might be a breaking change for your use case. If you want to instead always translate your audio to English, make sure to pass `language='en'`. 2025-01-23 14:07:29 | WARNING | phonemizer | words count mismatch on 100.0% of the lines (1/1) 2025-01-23 14:07:29 | WARNING | phonemizer | words count mismatch on 100.0% of the lines (1/1) Saved to: /results/cec60fce6376f548b305ab4a0ae800b23c3dcbae7d5355c6f2cfb31043e0a386/single
Prediction
ttsds/amphion_valle:b533d19a628be53af05ebbc596b8fb84bf9ba0aec1e873162e56a0457d87e8c4ID6hzb76cpg9rm80cmjkhsh1ppt4StatusSucceededSourceWebHardwareL40STotal durationCreatedInput
- text
- With tenure, Suzie'd have all the more leisure for yachting, but her publications are no good.
- model
- valle_v2
- speaker_reference
- Video Player is loading.Current Time 00:00:000/Duration 00:00:000Loaded: 0%Stream Type LIVERemaining Time -00:00:0001x
- Chapters
- descriptions off, selected
- captions settings, opens captions settings dialog
- captions off, selected
This is a modal window.
Beginning of dialog window. Escape will cancel and close the window.
End of dialog window.
{ "text": "With tenure, Suzie'd have all the more leisure for yachting, but her publications are no good.", "model": "valle_v2", "speaker_reference": "https://replicate.delivery/pbxt/MN7xAi6gE38grU2jIsRpzx43qsVuzPChncdGx6viarnNSXIh/example%281%29.wav" }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run ttsds/amphion_valle using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "ttsds/amphion_valle:b533d19a628be53af05ebbc596b8fb84bf9ba0aec1e873162e56a0457d87e8c4", { input: { text: "With tenure, Suzie'd have all the more leisure for yachting, but her publications are no good.", model: "valle_v2", speaker_reference: "https://replicate.delivery/pbxt/MN7xAi6gE38grU2jIsRpzx43qsVuzPChncdGx6viarnNSXIh/example%281%29.wav" } } ); // To access the file URL: console.log(output.url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run ttsds/amphion_valle using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "ttsds/amphion_valle:b533d19a628be53af05ebbc596b8fb84bf9ba0aec1e873162e56a0457d87e8c4", input={ "text": "With tenure, Suzie'd have all the more leisure for yachting, but her publications are no good.", "model": "valle_v2", "speaker_reference": "https://replicate.delivery/pbxt/MN7xAi6gE38grU2jIsRpzx43qsVuzPChncdGx6viarnNSXIh/example%281%29.wav" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run ttsds/amphion_valle using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "ttsds/amphion_valle:b533d19a628be53af05ebbc596b8fb84bf9ba0aec1e873162e56a0457d87e8c4", "input": { "text": "With tenure, Suzie\'d have all the more leisure for yachting, but her publications are no good.", "model": "valle_v2", "speaker_reference": "https://replicate.delivery/pbxt/MN7xAi6gE38grU2jIsRpzx43qsVuzPChncdGx6viarnNSXIh/example%281%29.wav" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
Video Player is loading.Current Time 00:00:000/Duration 00:00:000Loaded: 0%Stream Type LIVERemaining Time -00:00:0001x- Chapters
- descriptions off, selected
- captions settings, opens captions settings dialog
- captions off, selected
This is a modal window.
Beginning of dialog window. Escape will cancel and close the window.
End of dialog window.
{ "completed_at": "2025-01-23T20:40:57.037270Z", "created_at": "2025-01-23T20:38:50.754000Z", "data_removed": false, "error": null, "id": "6hzb76cpg9rm80cmjkhsh1ppt4", "input": { "text": "With tenure, Suzie'd have all the more leisure for yachting, but her publications are no good.", "model": "valle_v2", "speaker_reference": "https://replicate.delivery/pbxt/MN7xAi6gE38grU2jIsRpzx43qsVuzPChncdGx6viarnNSXIh/example%281%29.wav" }, "logs": "2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | bytecode dump:\n> 0\tNOP(arg=None, lineno=1144)\n2\tLOAD_FAST(arg=0, lineno=1147)\n4\tLOAD_CONST(arg=1, lineno=1147)\n6\tBINARY_SUBSCR(arg=None, lineno=1147)\n8\tSTORE_FAST(arg=3, lineno=1147)\n10\tLOAD_FAST(arg=1, lineno=1148)\n12\tUNARY_NEGATIVE(arg=None, lineno=1148)\n14\tLOAD_FAST(arg=3, lineno=1148)\n16\tDUP_TOP(arg=None, lineno=1148)\n18\tROT_THREE(arg=None, lineno=1148)\n20\tCOMPARE_OP(arg=1, lineno=1148)\n22\tPOP_JUMP_IF_FALSE(arg=32, lineno=1148)\n24\tLOAD_FAST(arg=1, lineno=1148)\n26\tCOMPARE_OP(arg=1, lineno=1148)\n28\tPOP_JUMP_IF_FALSE(arg=40, lineno=1148)\n30\tJUMP_FORWARD(arg=4, lineno=1148)\n> 32\tPOP_TOP(arg=None, lineno=1148)\n34\tJUMP_FORWARD(arg=4, lineno=1148)\n> 36\tLOAD_CONST(arg=1, lineno=1149)\n38\tSTORE_FAST(arg=3, lineno=1149)\n> 40\tLOAD_FAST(arg=0, lineno=1151)\n42\tLOAD_CONST(arg=2, lineno=1151)\n44\tBINARY_SUBSCR(arg=None, lineno=1151)\n46\tSTORE_FAST(arg=4, lineno=1151)\n48\tLOAD_FAST(arg=1, lineno=1152)\n50\tUNARY_NEGATIVE(arg=None, lineno=1152)\n52\tLOAD_FAST(arg=4, lineno=1152)\n54\tDUP_TOP(arg=None, lineno=1152)\n56\tROT_THREE(arg=None, lineno=1152)\n58\tCOMPARE_OP(arg=1, lineno=1152)\n60\tPOP_JUMP_IF_FALSE(arg=70, lineno=1152)\n62\tLOAD_FAST(arg=1, lineno=1152)\n64\tCOMPARE_OP(arg=1, lineno=1152)\n66\tPOP_JUMP_IF_FALSE(arg=78, lineno=1152)\n68\tJUMP_FORWARD(arg=4, lineno=1152)\n> 70\tPOP_TOP(arg=None, lineno=1152)\n72\tJUMP_FORWARD(arg=4, lineno=1152)\n> 74\tLOAD_CONST(arg=1, lineno=1153)\n76\tSTORE_FAST(arg=4, lineno=1153)\n> 78\tLOAD_FAST(arg=2, lineno=1155)\n80\tPOP_JUMP_IF_FALSE(arg=102, lineno=1155)\n82\tLOAD_GLOBAL(arg=0, lineno=1156)\n84\tLOAD_METHOD(arg=1, lineno=1156)\n86\tLOAD_FAST(arg=3, lineno=1156)\n88\tCALL_METHOD(arg=1, lineno=1156)\n90\tLOAD_GLOBAL(arg=0, lineno=1156)\n92\tLOAD_METHOD(arg=1, lineno=1156)\n94\tLOAD_FAST(arg=4, lineno=1156)\n96\tCALL_METHOD(arg=1, lineno=1156)\n98\tCOMPARE_OP(arg=3, lineno=1156)\n100\tRETURN_VALUE(arg=None, lineno=1156)\n> 102\tLOAD_GLOBAL(arg=0, lineno=1158)\n104\tLOAD_METHOD(arg=2, lineno=1158)\n106\tLOAD_FAST(arg=3, lineno=1158)\n108\tCALL_METHOD(arg=1, lineno=1158)\n110\tLOAD_GLOBAL(arg=0, lineno=1158)\n112\tLOAD_METHOD(arg=2, lineno=1158)\n114\tLOAD_FAST(arg=4, lineno=1158)\n116\tCALL_METHOD(arg=1, lineno=1158)\n118\tCOMPARE_OP(arg=3, lineno=1158)\n120\tRETURN_VALUE(arg=None, lineno=1158)\n122\tLOAD_CONST(arg=3, lineno=1158)\n124\tRETURN_VALUE(arg=None, lineno=1158)\n2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=0 nstack_initial=0)])\n2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | stack: []\n2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=0 nstack_initial=0)\n2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | dispatch pc=0, inst=NOP(arg=None, lineno=1144)\n2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | dispatch pc=2, inst=LOAD_FAST(arg=0, lineno=1147)\n2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | dispatch pc=4, inst=LOAD_CONST(arg=1, lineno=1147)\n2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | stack ['$x2.0']\n2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | dispatch pc=6, inst=BINARY_SUBSCR(arg=None, lineno=1147)\n2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | stack ['$x2.0', '$const4.1']\n2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | dispatch pc=8, inst=STORE_FAST(arg=3, lineno=1147)\n2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | stack ['$6binary_subscr.2']\n2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | dispatch pc=10, inst=LOAD_FAST(arg=1, lineno=1148)\n2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | dispatch pc=12, inst=UNARY_NEGATIVE(arg=None, lineno=1148)\n2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | stack ['$threshold10.3']\n2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | dispatch pc=14, inst=LOAD_FAST(arg=3, lineno=1148)\n2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | stack ['$12unary_negative.4']\n2025-01-23 20:40:51 | DEBUG | \n[...] log volume exceeds 256KiB size limit: truncating logs [...]\n-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const42.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: stencil_index.1 = $const42.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>,\n{90: [<numba.core.ir.Assign object at 0x7526c51a1a30>],\n127: [<numba.core.ir.Assign object at 0x7526c51a15e0>]})\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='stencil_index' stmt=x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='stencil_index' stmt=x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Fix SSA violator on var x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | first assign: x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: x0.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>,\n{90: [<numba.core.ir.Assign object at 0x7526c51a1f70>],\n121: [<numba.core.ir.Assign object at 0x7526c51a1be0>]})\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$phi24.0 = x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$26compare_op.2 = x0 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 91\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 90 from label 91\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 169\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 165 from label 169\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 127 from label 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | insert phi node x0.2 = phi(incoming_values=[], incoming_blocks=[]) at 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 90 from label 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x0.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 91\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 91\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 90 from label 91\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 165 from label 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 127 from label 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Fix SSA violator on var x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0.2 = phi(incoming_values=[Var(x0, audio.py:1147), Var(x0.1, audio.py:1149), Var(x0, audio.py:1147)], incoming_blocks=[123, 121, 91])\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | first assign: x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: x1.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>,\n{127: [<numba.core.ir.Assign object at 0x7526c51a1e80>],\n159: [<numba.core.ir.Assign object at 0x7526c5187610>]})\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0.2 = phi(incoming_values=[Var(x0, audio.py:1147), Var(x0.1, audio.py:1149), Var(x0, audio.py:1147)], incoming_blocks=[123, 121, 91])\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$phi62.0 = x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$64compare_op.2 = x1 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 127 from label 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 169\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 165 from label 169\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | insert phi node x1.2 = phi(incoming_values=[], incoming_blocks=[]) at 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 127 from label 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 127 from label 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x1.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: $96call_method.7 = call $92load_method.5(x1.2, func=$92load_method.5, args=[Var(x1.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 165 from label 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: $116call_method.7 = call $112load_method.5(x1.2, func=$112load_method.5, args=[Var(x1.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | bytecode dump:\n> 0\tNOP(arg=None, lineno=1161)\n2\tLOAD_GLOBAL(arg=0, lineno=1177)\n4\tLOAD_FAST(arg=0, lineno=1177)\n6\tLOAD_FAST(arg=1, lineno=1177)\n8\tLOAD_FAST(arg=2, lineno=1177)\n10\tCALL_FUNCTION(arg=3, lineno=1177)\n12\tLOAD_FAST(arg=3, lineno=1177)\n14\tLOAD_CONST(arg=1, lineno=1177)\n16\tLOAD_CONST(arg=1, lineno=1177)\n18\tBUILD_SLICE(arg=2, lineno=1177)\n20\tSTORE_SUBSCR(arg=None, lineno=1177)\n22\tLOAD_CONST(arg=1, lineno=1177)\n24\tRETURN_VALUE(arg=None, lineno=1177)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=0 nstack_initial=0)])\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack: []\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=0 nstack_initial=0)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=0, inst=NOP(arg=None, lineno=1161)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=2, inst=LOAD_GLOBAL(arg=0, lineno=1177)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=4, inst=LOAD_FAST(arg=0, lineno=1177)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$2load_global.0']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=6, inst=LOAD_FAST(arg=1, lineno=1177)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$2load_global.0', '$x4.1']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=8, inst=LOAD_FAST(arg=2, lineno=1177)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$2load_global.0', '$x4.1', '$threshold6.2']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=10, inst=CALL_FUNCTION(arg=3, lineno=1177)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$2load_global.0', '$x4.1', '$threshold6.2', '$zero_pos8.3']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=12, inst=LOAD_FAST(arg=3, lineno=1177)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$10call_function.4']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=14, inst=LOAD_CONST(arg=1, lineno=1177)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$10call_function.4', '$y12.5']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=16, inst=LOAD_CONST(arg=1, lineno=1177)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$10call_function.4', '$y12.5', '$const14.6']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=18, inst=BUILD_SLICE(arg=2, lineno=1177)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$10call_function.4', '$y12.5', '$const14.6', '$const16.7']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=20, inst=STORE_SUBSCR(arg=None, lineno=1177)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$10call_function.4', '$y12.5', '$18build_slice.9']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=22, inst=LOAD_CONST(arg=1, lineno=1177)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=24, inst=RETURN_VALUE(arg=None, lineno=1177)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$const22.10']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | end state. edges=[]\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | -------------------------Prune PHIs-------------------------\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | Used_phis: defaultdict(<class 'set'>, {State(pc_initial=0 nstack_initial=0): set()})\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | defmap: {}\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | phismap: defaultdict(<class 'set'>, {})\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | changing phismap: defaultdict(<class 'set'>, {})\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | keep phismap: {}\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | new_out: defaultdict(<class 'dict'>, {})\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | ----------------------DONE Prune PHIs-----------------------\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | block_infos State(pc_initial=0 nstack_initial=0):\nAdaptBlockInfo(insts=((0, {}), (2, {'res': '$2load_global.0'}), (4, {'res': '$x4.1'}), (6, {'res': '$threshold6.2'}), (8, {'res': '$zero_pos8.3'}), (10, {'func': '$2load_global.0', 'args': ['$x4.1', '$threshold6.2', '$zero_pos8.3'], 'res': '$10call_function.4'}), (12, {'res': '$y12.5'}), (14, {'res': '$const14.6'}), (16, {'res': '$const16.7'}), (18, {'start': '$const14.6', 'stop': '$const16.7', 'step': None, 'res': '$18build_slice.9', 'slicevar': '$18build_slice.8'}), (20, {'target': '$y12.5', 'index': '$18build_slice.9', 'value': '$10call_function.4'}), (22, {'res': '$const22.10'}), (24, {'retval': '$const22.10', 'castval': '$24return_value.11'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={})\n2025-01-23 20:40:52 | DEBUG | numba.core.interpreter | label 0:\nx = arg(0, name=x) ['x']\nthreshold = arg(1, name=threshold) ['threshold']\nzero_pos = arg(2, name=zero_pos) ['zero_pos']\ny = arg(3, name=y) ['y']\n$2load_global.0 = global(_zc_stencil: <numba.stencils.stencil.StencilFunc object at 0x7526c52ff040>) ['$2load_global.0']\n$10call_function.4 = call $2load_global.0(x, threshold, zero_pos, func=$2load_global.0, args=[Var(x, audio.py:1161), Var(threshold, audio.py:1161), Var(zero_pos, audio.py:1161)], kws=(), vararg=None, varkwarg=None, target=None) ['$10call_function.4', '$2load_global.0', 'threshold', 'x', 'zero_pos']\n$const14.6 = const(NoneType, None) ['$const14.6']\n$const16.7 = const(NoneType, None) ['$const16.7']\n$18build_slice.8 = global(slice: <class 'slice'>) ['$18build_slice.8']\n$18build_slice.9 = call $18build_slice.8($const14.6, $const16.7, func=$18build_slice.8, args=(Var($const14.6, audio.py:1177), Var($const16.7, audio.py:1177)), kws=(), vararg=None, varkwarg=None, target=None) ['$18build_slice.8', '$18build_slice.9', '$const14.6', '$const16.7']\ny[$18build_slice.9] = $10call_function.4 ['$10call_function.4', '$18build_slice.9', 'y']\n$const22.10 = const(NoneType, None) ['$const22.10']\n$24return_value.11 = cast(value=$const22.10) ['$24return_value.11', '$const22.10']\nreturn $24return_value.11 ['$24return_value.11']\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c5368250>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: y = arg(3, name=y)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $2load_global.0 = global(_zc_stencil: <numba.stencils.stencil.StencilFunc object at 0x7526c52ff040>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10call_function.4 = call $2load_global.0(x, threshold, zero_pos, func=$2load_global.0, args=[Var(x, audio.py:1161), Var(threshold, audio.py:1161), Var(zero_pos, audio.py:1161)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const14.6 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const16.7 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $18build_slice.8 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $18build_slice.9 = call $18build_slice.8($const14.6, $const16.7, func=$18build_slice.8, args=(Var($const14.6, audio.py:1177), Var($const16.7, audio.py:1177)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: y[slice(None, None, None)] = $10call_function.4\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const22.10 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $24return_value.11 = cast(value=$const22.10)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $24return_value.11\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | defs defaultdict(<class 'list'>,\n{'$10call_function.4': [(<numba.core.ir.Assign object at 0x7526c502a490>,\n0)],\n'$18build_slice.8': [(<numba.core.ir.Assign object at 0x7526c502a9d0>,\n0)],\n'$18build_slice.9': [(<numba.core.ir.Assign object at 0x7526c502aaf0>,\n0)],\n'$24return_value.11': [(<numba.core.ir.Assign object at 0x7526c502aeb0>,\n0)],\n'$2load_global.0': [(<numba.core.ir.Assign object at 0x7526c5011f10>,\n0)],\n'$const14.6': [(<numba.core.ir.Assign object at 0x7526c502a6d0>,\n0)],\n'$const16.7': [(<numba.core.ir.Assign object at 0x7526c502a850>,\n0)],\n'$const22.10': [(<numba.core.ir.Assign object at 0x7526c502ad30>,\n0)],\n'threshold': [(<numba.core.ir.Assign object at 0x7526c50111f0>,\n0)],\n'x': [(<numba.core.ir.Assign object at 0x7526c5011460>, 0)],\n'y': [(<numba.core.ir.Assign object at 0x7526c5011d90>, 0)],\n'zero_pos': [(<numba.core.ir.Assign object at 0x7526c5011c70>,\n0)]})\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | SSA violators <numba.core.utils.OrderedSet object at 0x7526c5368250>\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | bytecode dump:\n> 0\tNOP(arg=None, lineno=1)\n2\tLOAD_FAST(arg=0, lineno=2)\n4\tLOAD_ATTR(arg=0, lineno=2)\n6\tSTORE_FAST(arg=3, lineno=2)\n8\tLOAD_GLOBAL(arg=1, lineno=3)\n10\tLOAD_ATTR(arg=2, lineno=3)\n12\tLOAD_FAST(arg=3, lineno=3)\n14\tLOAD_GLOBAL(arg=1, lineno=3)\n16\tLOAD_ATTR(arg=3, lineno=3)\n18\tLOAD_CONST(arg=1, lineno=3)\n20\tCALL_FUNCTION_KW(arg=2, lineno=3)\n22\tSTORE_FAST(arg=4, lineno=3)\n24\tLOAD_CONST(arg=2, lineno=4)\n26\tLOAD_FAST(arg=4, lineno=4)\n28\tLOAD_CONST(arg=0, lineno=4)\n30\tLOAD_CONST(arg=3, lineno=4)\n32\tBUILD_SLICE(arg=2, lineno=4)\n34\tSTORE_SUBSCR(arg=None, lineno=4)\n36\tLOAD_CONST(arg=2, lineno=5)\n38\tLOAD_FAST(arg=4, lineno=5)\n40\tLOAD_CONST(arg=2, lineno=5)\n42\tLOAD_CONST(arg=0, lineno=5)\n44\tBUILD_SLICE(arg=2, lineno=5)\n46\tSTORE_SUBSCR(arg=None, lineno=5)\n48\tLOAD_GLOBAL(arg=4, lineno=6)\n50\tLOAD_GLOBAL(arg=5, lineno=6)\n52\tLOAD_CONST(arg=2, lineno=6)\n54\tLOAD_CONST(arg=4, lineno=6)\n56\tCALL_FUNCTION(arg=2, lineno=6)\n58\tUNARY_NEGATIVE(arg=None, lineno=6)\n60\tLOAD_FAST(arg=3, lineno=6)\n62\tLOAD_CONST(arg=2, lineno=6)\n64\tBINARY_SUBSCR(arg=None, lineno=6)\n66\tLOAD_GLOBAL(arg=6, lineno=6)\n68\tLOAD_CONST(arg=2, lineno=6)\n70\tLOAD_CONST(arg=2, lineno=6)\n72\tCALL_FUNCTION(arg=2, lineno=6)\n74\tBINARY_SUBTRACT(arg=None, lineno=6)\n76\tCALL_FUNCTION(arg=2, lineno=6)\n78\tGET_ITER(arg=None, lineno=6)\n> 80\tFOR_ITER(arg=8, lineno=6)\n82\tSTORE_FAST(arg=5, lineno=6)\n84\tLOAD_CONST(arg=2, lineno=7)\n86\tSTORE_FAST(arg=6, lineno=7)\n88\tJUMP_ABSOLUTE(arg=80, lineno=7)\n> 90\tLOAD_FAST(arg=4, lineno=8)\n92\tRETURN_VALUE(arg=None, lineno=8)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=0 nstack_initial=0)])\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack: []\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=0 nstack_initial=0)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=0, inst=NOP(arg=None, lineno=1)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=2, inst=LOAD_FAST(arg=0, lineno=2)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=4, inst=LOAD_ATTR(arg=0, lineno=2)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$x2.0']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=6, inst=STORE_FAST(arg=3, lineno=2)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$4load_attr.1']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=8, inst=LOAD_GLOBAL(arg=1, lineno=3)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=10, inst=LOAD_ATTR(arg=2, lineno=3)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$8load_global.2']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=12, inst=LOAD_FAST(arg=3, lineno=3)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$10load_attr.3']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=14, inst=LOAD_GLOBAL(arg=1, lineno=3)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$10load_attr.3', '$full_shape012.4']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=16, inst=LOAD_ATTR(arg=3, lineno=3)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$10load_attr.3', '$full_shape012.4', '$14load_global.5']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=18, inst=LOAD_CONST(arg=1, lineno=3)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$10load_attr.3', '$full_shape012.4', '$16load_attr.6']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=20, inst=CALL_FUNCTION_KW(arg=2, lineno=3)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$10load_attr.3', '$full_shape012.4', '$16load_attr.6', '$const18.7']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=22, inst=STORE_FAST(arg=4, lineno=3)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$20call_function_kw.8']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=24, inst=LOAD_CONST(arg=2, lineno=4)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=26, inst=LOAD_FAST(arg=4, lineno=4)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$const24.9']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=28, inst=LOAD_CONST(arg=0, lineno=4)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$const24.9', '$out026.10']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=30, inst=LOAD_CONST(arg=3, lineno=4)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$const24.9', '$out026.10', '$const28.11']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=32, inst=BUILD_SLICE(arg=2, lineno=4)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$const24.9', '$out026.10', '$const28.11', '$const30.12']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=34, inst=STORE_SUBSCR(arg=None, lineno=4)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$const24.9', '$out026.10', '$32build_slice.14']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=36, inst=LOAD_CONST(arg=2, lineno=5)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=38, inst=LOAD_FAST(arg=4, lineno=5)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$const36.15']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=40, inst=LOAD_CONST(arg=2, lineno=5)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$const36.15', '$out038.16']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=42, inst=LOAD_CONST(arg=0, lineno=5)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$const36.15', '$out038.16', '$const40.17']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=44, inst=BUILD_SLICE(arg=2, lineno=5)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$const36.15', '$out038.16', '$const40.17', '$const42.18']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=46, inst=STORE_SUBSCR(arg=None, lineno=5)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$const36.15', '$out038.16', '$44build_slice.20']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=48, inst=LOAD_GLOBAL(arg=4, lineno=6)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=50, inst=LOAD_GLOBAL(arg=5, lineno=6)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=52, inst=LOAD_CONST(arg=2, lineno=6)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$50load_global.22']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=54, inst=LOAD_CONST(arg=4, lineno=6)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$50load_global.22', '$const52.23']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=56, inst=CALL_FUNCTION(arg=2, lineno=6)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$50load_global.22', '$const52.23', '$const54.24']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=58, inst=UNARY_NEGATIVE(arg=None, lineno=6)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$56call_function.25']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=60, inst=LOAD_FAST(arg=3, lineno=6)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=62, inst=LOAD_CONST(arg=2, lineno=6)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$full_shape060.27']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=64, inst=BINARY_SUBSCR(arg=None, lineno=6)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$full_shape060.27', '$const62.28']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=66, inst=LOAD_GLOBAL(arg=6, lineno=6)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$64binary_subscr.29']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=68, inst=LOAD_CONST(arg=2, lineno=6)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$64binary_subscr.29', '$66load_global.30']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=70, inst=LOAD_CONST(arg=2, lineno=6)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$64binary_subscr.29', '$66load_global.30', '$const68.31']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=72, inst=CALL_FUNCTION(arg=2, lineno=6)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$64binary_subscr.29', '$66load_global.30', '$const68.31', '$const70.32']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=74, inst=BINARY_SUBTRACT(arg=None, lineno=6)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$64binary_subscr.29', '$72call_function.33']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=76, inst=CALL_FUNCTION(arg=2, lineno=6)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$74binary_subtract.34']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=78, inst=GET_ITER(arg=None, lineno=6)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$76call_function.35']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | end state. edges=[Edge(pc=80, stack=('$78get_iter.36',), blockstack=(), npush=0)]\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=80 nstack_initial=1)])\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack: ['$phi80.0']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=80 nstack_initial=1)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=80, inst=FOR_ITER(arg=8, lineno=6)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$phi80.0']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | end state. edges=[Edge(pc=90, stack=(), blockstack=(), npush=0), Edge(pc=82, stack=('$phi80.0', '$80for_iter.2'), blockstack=(), npush=0)]\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=90 nstack_initial=0), State(pc_initial=82 nstack_initial=2)])\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack: []\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=90 nstack_initial=0)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=90, inst=LOAD_FAST(arg=4, lineno=8)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=92, inst=RETURN_VALUE(arg=None, lineno=8)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$out090.0']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | end state. edges=[]\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=82 nstack_initial=2)])\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack: ['$phi82.0', '$phi82.1']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=82 nstack_initial=2)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=82, inst=STORE_FAST(arg=5, lineno=6)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$phi82.0', '$phi82.1']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=84, inst=LOAD_CONST(arg=2, lineno=7)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$phi82.0']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=86, inst=STORE_FAST(arg=6, lineno=7)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$phi82.0', '$const84.2']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=88, inst=JUMP_ABSOLUTE(arg=80, lineno=7)\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$phi82.0']\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | end state. edges=[Edge(pc=80, stack=('$phi82.0',), blockstack=(), npush=0)]\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=80 nstack_initial=1)])\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | -------------------------Prune PHIs-------------------------\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | Used_phis: defaultdict(<class 'set'>,\n{State(pc_initial=0 nstack_initial=0): set(),\nState(pc_initial=80 nstack_initial=1): {'$phi80.0'},\nState(pc_initial=82 nstack_initial=2): {'$phi82.1'},\nState(pc_initial=90 nstack_initial=0): set()})\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | defmap: {'$phi80.0': State(pc_initial=0 nstack_initial=0),\n'$phi82.1': State(pc_initial=80 nstack_initial=1)}\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | phismap: defaultdict(<class 'set'>,\n{'$phi80.0': {('$78get_iter.36',\nState(pc_initial=0 nstack_initial=0)),\n('$phi82.0', State(pc_initial=82 nstack_initial=2))},\n'$phi82.0': {('$phi80.0', State(pc_initial=80 nstack_initial=1))},\n'$phi82.1': {('$80for_iter.2',\nState(pc_initial=80 nstack_initial=1))}})\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | changing phismap: defaultdict(<class 'set'>,\n{'$phi80.0': {('$78get_iter.36',\nState(pc_initial=0 nstack_initial=0)),\n('$phi80.0', State(pc_initial=80 nstack_initial=1))},\n'$phi82.0': {('$78get_iter.36',\nState(pc_initial=0 nstack_initial=0))},\n'$phi82.1': {('$80for_iter.2',\nState(pc_initial=80 nstack_initial=1))}})\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | changing phismap: defaultdict(<class 'set'>,\n{'$phi80.0': {('$78get_iter.36',\nState(pc_initial=0 nstack_initial=0))},\n'$phi82.0': {('$78get_iter.36',\nState(pc_initial=0 nstack_initial=0))},\n'$phi82.1': {('$80for_iter.2',\nState(pc_initial=80 nstack_initial=1))}})\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | changing phismap: defaultdict(<class 'set'>,\n{'$phi80.0': {('$78get_iter.36',\nState(pc_initial=0 nstack_initial=0))},\n'$phi82.0': {('$78get_iter.36',\nState(pc_initial=0 nstack_initial=0))},\n'$phi82.1': {('$80for_iter.2',\nState(pc_initial=80 nstack_initial=1))}})\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | keep phismap: {'$phi80.0': {('$78get_iter.36', State(pc_initial=0 nstack_initial=0))},\n'$phi82.1': {('$80for_iter.2', State(pc_initial=80 nstack_initial=1))}}\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | new_out: defaultdict(<class 'dict'>,\n{State(pc_initial=0 nstack_initial=0): {'$phi80.0': '$78get_iter.36'},\nState(pc_initial=80 nstack_initial=1): {'$phi82.1': '$80for_iter.2'}})\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | ----------------------DONE Prune PHIs-----------------------\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | block_infos State(pc_initial=0 nstack_initial=0):\nAdaptBlockInfo(insts=((0, {}), (2, {'res': '$x2.0'}), (4, {'item': '$x2.0', 'res': '$4load_attr.1'}), (6, {'value': '$4load_attr.1'}), (8, {'res': '$8load_global.2'}), (10, {'item': '$8load_global.2', 'res': '$10load_attr.3'}), (12, {'res': '$full_shape012.4'}), (14, {'res': '$14load_global.5'}), (16, {'item': '$14load_global.5', 'res': '$16load_attr.6'}), (18, {'res': '$const18.7'}), (20, {'func': '$10load_attr.3', 'args': ['$full_shape012.4', '$16load_attr.6'], 'names': '$const18.7', 'res': '$20call_function_kw.8'}), (22, {'value': '$20call_function_kw.8'}), (24, {'res': '$const24.9'}), (26, {'res': '$out026.10'}), (28, {'res': '$const28.11'}), (30, {'res': '$const30.12'}), (32, {'start': '$const28.11', 'stop': '$const30.12', 'step': None, 'res': '$32build_slice.14', 'slicevar': '$32build_slice.13'}), (34, {'target': '$out026.10', 'index': '$32build_slice.14', 'value': '$const24.9'}), (36, {'res': '$const36.15'}), (38, {'res': '$out038.16'}), (40, {'res': '$const40.17'}), (42, {'res': '$const42.18'}), (44, {'start': '$const40.17', 'stop': '$const42.18', 'step': None, 'res': '$44build_slice.20', 'slicevar': '$44build_slice.19'}), (46, {'target': '$out038.16', 'index': '$44build_slice.20', 'value': '$const36.15'}), (48, {'res': '$48load_global.21'}), (50, {'res': '$50load_global.22'}), (52, {'res': '$const52.23'}), (54, {'res': '$const54.24'}), (56, {'func': '$50load_global.22', 'args': ['$const52.23', '$const54.24'], 'res': '$56call_function.25'}), (58, {'value': '$56call_function.25', 'res': '$58unary_negative.26'}), (60, {'res': '$full_shape060.27'}), (62, {'res': '$const62.28'}), (64, {'index': '$const62.28', 'target': '$full_shape060.27', 'res': '$64binary_subscr.29'}), (66, {'res': '$66load_global.30'}), (68, {'res': '$const68.31'}), (70, {'res': '$const70.32'}), (72, {'func': '$66load_global.30', 'args': ['$const68.31', '$const70.32'], 'res': '$72call_function.33'}), (74, {'lhs': '$64binary_subscr.29', 'rhs': '$72call_function.33', 'res': '$74binary_subtract.34'}), (76, {'func': '$48load_global.21', 'args': ['$58unary_negative.26', '$74binary_subtract.34'], 'res': '$76call_function.35'}), (78, {'value': '$76call_function.35', 'res': '$78get_iter.36'})), outgoing_phis={'$phi80.0': '$78get_iter.36'}, blockstack=(), active_try_block=None, outgoing_edgepushed={80: ('$78get_iter.36',)})\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | block_infos State(pc_initial=80 nstack_initial=1):\nAdaptBlockInfo(insts=((80, {'iterator': '$phi80.0', 'pair': '$80for_iter.1', 'indval': '$80for_iter.2', 'pred': '$80for_iter.3'}),), outgoing_phis={'$phi82.1': '$80for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={90: (), 82: ('$phi80.0', '$80for_iter.2')})\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | block_infos State(pc_initial=82 nstack_initial=2):\nAdaptBlockInfo(insts=((82, {'value': '$phi82.1'}), (84, {'res': '$const84.2'}), (86, {'value': '$const84.2'}), (88, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={80: ('$phi82.0',)})\n2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | block_infos State(pc_initial=90 nstack_initial=0):\nAdaptBlockInfo(insts=((90, {'res': '$out090.0'}), (92, {'retval': '$out090.0', 'castval': '$92return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={})\n2025-01-23 20:40:52 | DEBUG | numba.core.interpreter | label 0:\nx = arg(0, name=x) ['x']\nthreshold = arg(1, name=threshold) ['threshold']\nzero_pos = arg(2, name=zero_pos) ['zero_pos']\nfull_shape0 = getattr(value=x, attr=shape) ['full_shape0', 'x']\n$8load_global.2 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) ['$8load_global.2']\n$10load_attr.3 = getattr(value=$8load_global.2, attr=empty) ['$10load_attr.3', '$8load_global.2']\n$14load_global.5 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) ['$14load_global.5']\n$16load_attr.6 = getattr(value=$14load_global.5, attr=bool_) ['$14load_global.5', '$16load_attr.6']\nout0 = call $10load_attr.3(full_shape0, func=$10load_attr.3, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6, <string>:3))], vararg=None, varkwarg=None, target=None) ['$10load_attr.3', '$16load_attr.6', 'full_shape0', 'out0']\n$const24.9 = const(int, 0) ['$const24.9']\n$const28.11 = const(NoneType, None) ['$const28.11']\n$const30.12 = const(int, 1) ['$const30.12']\n$32build_slice.13 = global(slice: <class 'slice'>) ['$32build_slice.13']\n$32build_slice.14 = call $32build_slice.13($const28.11, $const30.12, func=$32build_slice.13, args=(Var($const28.11, <string>:4), Var($const30.12, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) ['$32build_slice.13', '$32build_slice.14', '$const28.11', '$const30.12']\nout0[$32build_slice.14] = $const24.9 ['$32build_slice.14', '$const24.9', 'out0']\n$const36.15 = const(int, 0) ['$const36.15']\n$const40.17 = const(int, 0) ['$const40.17']\n$const42.18 = const(NoneType, None) ['$const42.18']\n$44build_slice.19 = global(slice: <class 'slice'>) ['$44build_slice.19']\n$44build_slice.20 = call $44build_slice.19($const40.17, $const42.18, func=$44build_slice.19, args=(Var($const40.17, <string>:5), Var($const42.18, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) ['$44build_slice.19', '$44build_slice.20', '$const40.17', '$const42.18']\nout0[$44build_slice.20] = $const36.15 ['$44build_slice.20', '$const36.15', 'out0']\n$48load_global.21 = global(range: <class 'range'>) ['$48load_global.21']\n$50load_global.22 = global(min: <built-in function min>) ['$50load_global.22']\n$const52.23 = const(int, 0) ['$const52.23']\n$const54.24 = const(int, -1) ['$const54.24']\n$56call_function.25 = call $50load_global.22($const52.23, $const54.24, func=$50load_global.22, args=[Var($const52.23, <string>:6), Var($const54.24, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) ['$50load_global.22', '$56call_function.25', '$const52.23', '$const54.24']\n$58unary_negative.26 = unary(fn=<built-in function neg>, value=$56call_function.25) ['$56call_function.25', '$58unary_negative.26']\n$const62.28 = const(int, 0) ['$const62.28']\n$64binary_subscr.29 = getitem(value=full_shape0, index=$const62.28, fn=<built-in function getitem>) ['$64binary_subscr.29', '$const62.28', 'full_shape0']\n$66load_global.30 = global(max: <built-in function max>) ['$66load_global.30']\n$const68.31 = const(int, 0) ['$const68.31']\n$const70.32 = const(int, 0) ['$const70.32']\n$72call_function.33 = call $66load_global.30($const68.31, $const70.32, func=$66load_global.30, args=[Var($const68.31, <string>:6), Var($const70.32, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) ['$66load_global.30', '$72call_function.33', '$const68.31', '$const70.32']\n$74binary_subtract.34 = $64binary_subscr.29 - $72call_function.33 ['$64binary_subscr.29', '$72call_function.33', '$74binary_subtract.34']\n$76call_function.35 = call $48load_global.21($58unary_negative.26, $74binary_subtract.34, func=$48load_global.21, args=[Var($58unary_negative.26, <string>:6), Var($74binary_subtract.34, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) ['$48load_global.21', '$58unary_negative.26', '$74binary_subtract.34', '$76call_function.35']\n$78get_iter.36 = getiter(value=$76call_function.35) ['$76call_function.35', '$78get_iter.36']\n$phi80.0 = $78get_iter.36 ['$78get_iter.36', '$phi80.0']\njump 80 []\nlabel 80:\n$80for_iter.1 = iternext(value=$phi80.0) ['$80for_iter.1', '$phi80.0']\n$80for_iter.2 = pair_first(value=$80for_iter.1) ['$80for_iter.1', '$80for_iter.2']\n$80for_iter.3 = pair_second(value=$80for_iter.1) ['$80for_iter.1', '$80for_iter.3']\n$phi82.1 = $80for_iter.2 ['$80for_iter.2', '$phi82.1']\nbranch $80for_iter.3, 82, 90 ['$80for_iter.3']\nlabel 82:\nindex00 = $phi82.1 ['$phi82.1', 'index00']\n__sentinel__0 = const(int, 0) ['__sentinel__0']\njump 80 []\nlabel 90:\n$92return_value.1 = cast(value=out0) ['$92return_value.1', 'out0']\nreturn $92return_value.1 ['$92return_value.1']\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 82\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 91\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 115\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const42.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 153\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 169\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | defs defaultdict(<class 'list'>,\n{'$100return_value.9': [(<numba.core.ir.Assign object at 0x7526c4f16700>,\n169)],\n'$102load_global.0': [(<numba.core.ir.Assign object at 0x7526c4f20b50>,\n173)],\n'$104load_method.1': [(<numba.core.ir.Assign object at 0x7526c4f24d30>,\n173)],\n'$108call_method.3': [(<numba.core.ir.Assign object at 0x7526c4f289d0>,\n173)],\n'$10load_attr.3.1': [(<numba.core.ir.Assign object at 0x7526c4f3db80>,\n0)],\n'$110load_global.4': [(<numba.core.ir.Assign object at 0x7526c4f2a670>,\n173)],\n'$112load_method.5': [(<numba.core.ir.Assign object at 0x7526c4f2d370>,\n173)],\n'$116call_method.7': [(<numba.core.ir.Assign object at 0x7526c4f2ffd0>,\n173)],\n'$118compare_op.8': [(<numba.core.ir.Assign object at 0x7526c4f32c70>,\n173)],\n'$120return_value.9': [(<numba.core.ir.Assign object at 0x7526c4f37910>,\n173)],\n'$12unary_negative.4': [(<numba.core.ir.Assign object at 0x7526c4fa7760>,\n90)],\n'$14load_global.5.1': [(<numba.core.ir.Assign object at 0x7526c4f3ddf0>,\n0)],\n'$16load_attr.6.1': [(<numba.core.ir.Assign object at 0x7526c4f3dc70>,\n0)],\n'$20compare_op.7': [(<numba.core.ir.Assign object at 0x7526c4faa400>,\n90)],\n'$22pred': [(<numba.core.ir.Assign object at 0x7526c4fafd90>, 90)],\n'$26compare_op.2': [(<numba.core.ir.Assign object at 0x7526c4fbbe20>,\n91)],\n'$28pred': [(<numba.core.ir.Assign object at 0x7526c4fc1970>, 91)],\n'$32build_slice.13.1': [(<numba.core.ir.Assign object at 0x7526c4ecb550>,\n0)],\n'$32build_slice.14.1': [(<numba.core.ir.Assign object at 0x7526c4ecb670>,\n0)],\n'$44build_slice.19.1': [(<numba.core.ir.Assign object at 0x7526c4ecbe50>,\n0)],\n'$44build_slice.20.1': [(<numba.core.ir.Assign object at 0x7526c4ecbf70>,\n0)],\n'$48load_global.21.1': [(<numba.core.ir.Assign object at 0x7526c4ecc1f0>,\n0)],\n'$50load_global.22.1': [(<numba.core.ir.Assign object at 0x7526c4ecc370>,\n0)],\n'$50unary_negative.4': [(<numba.core.ir.Assign object at 0x7526c5029c70>,\n127)],\n'$56call_function.25.1': [(<numba.core.ir.Assign object at 0x7526c4ecc850>,\n0)],\n'$58compare_op.7': [(<numba.core.ir.Assign object at 0x7526c4f4b910>,\n127)],\n'$58unary_negative.26.1': [(<numba.core.ir.Assign object at 0x7526c4ecc970>,\n0)],\n'$60pred': [(<numba.core.ir.Assign object at 0x7526c4f4e2e0>,\n127)],\n'$64binary_subscr.29.1': [(<numba.core.ir.Assign object at 0x7526c4eccdc0>,\n0)],\n'$64compare_op.2': [(<numba.core.ir.Assign object at 0x7526c4f58310>,\n131)],\n'$66load_global.30.1': [(<numba.core.ir.Assign object at 0x7526c4eccf10>,\n0)],\n'$66pred': [(<numba.core.ir.Assign object at 0x7526c4f5ee80>,\n131)],\n'$72call_function.33.1': [(<numba.core.ir.Assign object at 0x7526c4ece430>,\n0)],\n'$74binary_subtract.34.1': [(<numba.core.ir.Assign object at 0x7526c4ece580>,\n0)],\n'$76call_function.35.1': [(<numba.core.ir.Assign object at 0x7526c4ece730>,\n0)],\n'$78get_iter.36.1': [(<numba.core.ir.Assign object at 0x7526c4ece850>,\n0)],\n'$80for_iter.1.1': [(<numba.core.ir.Assign object at 0x7526c4ece940>,\n80)],\n'$80for_iter.2.1': [(<numba.core.ir.Assign object at 0x7526c4ecea60>,\n80)],\n'$80for_iter.3.1': [(<numba.core.ir.Assign object at 0x7526c4eceb80>,\n80)],\n'$80pred': [(<numba.core.ir.Assign object at 0x7526c4f78520>,\n165)],\n'$82load_global.0': [(<numba.core.ir.Assign object at 0x7526c4f81940>,\n169)],\n'$84load_method.1': [(<numba.core.ir.Assign object at 0x7526c4f05b20>,\n169)],\n'$88call_method.3': [(<numba.core.ir.Assign object at 0x7526c4f097c0>,\n169)],\n'$8load_global.2.1': [(<numba.core.ir.Assign object at 0x7526c4f3e040>,\n0)],\n'$90load_global.4': [(<numba.core.ir.Assign object at 0x7526c4f0a460>,\n169)],\n'$92load_method.5': [(<numba.core.ir.Assign object at 0x7526c4f0e160>,\n169)],\n'$92return_value.1.1': [(<numba.core.ir.Assign object at 0x7526c4ed04f0>,\n194)],\n'$96call_method.7': [(<numba.core.ir.Assign object at 0x7526c4f10dc0>,\n169)],\n'$98compare_op.8': [(<numba.core.ir.Assign object at 0x7526c4f14a60>,\n169)],\n'$const24.9.1': [(<numba.core.ir.Assign object at 0x7526c4f39700>,\n0)],\n'$const28.11.1': [(<numba.core.ir.Assign object at 0x7526c4ecb250>,\n0)],\n'$const30.12.1': [(<numba.core.ir.Assign object at 0x7526c4ecb3d0>,\n0)],\n'$const36.15.1': [(<numba.core.ir.Assign object at 0x7526c4ecb8b0>,\n0)],\n'$const4.1': [(<numba.core.ir.Assign object at 0x7526c4fa0e50>,\n90)],\n'$const40.17.1': [(<numba.core.ir.Assign object at 0x7526c4ecbb50>,\n0)],\n'$const42.1': [(<numba.core.ir.Assign object at 0x7526c4f48f40>,\n127)],\n'$const42.18.1': [(<numba.core.ir.Assign object at 0x7526c4ecbcd0>,\n0)],\n'$const52.23.1': [(<numba.core.ir.Assign object at 0x7526c4ecc4f0>,\n0)],\n'$const54.24.1': [(<numba.core.ir.Assign object at 0x7526c4ecc670>,\n0)],\n'$const62.28.1': [(<numba.core.ir.Assign object at 0x7526c4eccc10>,\n0)],\n'$const68.31.1': [(<numba.core.ir.Assign object at 0x7526c4ece0d0>,\n0)],\n'$const70.32.1': [(<numba.core.ir.Assign object at 0x7526c4ece250>,\n0)],\n'$phi24.0': [(<numba.core.ir.Assign object at 0x7526c4fb3a30>,\n90)],\n'$phi62.0': [(<numba.core.ir.Assign object at 0x7526c4f4ff40>,\n127)],\n'$phi80.0.1': [(<numba.core.ir.Assign object at 0x7526c4f3dee0>,\n0)],\n'$phi82.1.1': [(<numba.core.ir.Assign object at 0x7526c4f3e130>,\n80)],\n'bool22': [(<numba.core.ir.Assign object at 0x7526c4fad0a0>, 90)],\n'bool28': [(<numba.core.ir.Assign object at 0x7526c4fbdc40>, 91)],\n'bool60': [(<numba.core.ir.Assign object at 0x7526c4f4c5b0>, 127)],\n'bool66': [(<numba.core.ir.Assign object at 0x7526c4f5c190>, 131)],\n'bool80': [(<numba.core.ir.Assign object at 0x7526c4f747f0>, 165)],\n'full_shape0': [(<numba.core.ir.Assign object at 0x7526c4f3e430>,\n0)],\n'index00': [(<numba.core.ir.Assign object at 0x7526c4ecee50>, 82)],\n'out0': [(<numba.core.ir.Assign object at 0x7526c4f3d640>, 0)],\n'stencil_index': [(<numba.core.ir.Assign object at 0x7526c4f3d250>,\n90),\n(<numba.core.ir.Assign object at 0x7526c4f3d370>,\n127)],\n'threshold': [(<numba.core.ir.Assign object at 0x7526c4f3e7f0>,\n0)],\n'x': [(<numba.core.ir.Assign object at 0x7526c4f3e910>, 0)],\n'x0': [(<numba.core.ir.Assign object at 0x7526c4f3d310>, 90),\n(<numba.core.ir.Assign object at 0x7526c5023580>, 121)],\n'x1': [(<numba.core.ir.Assign object at 0x7526c4f3d430>, 127),\n(<numba.core.ir.Assign object at 0x7526c4f6dd60>, 159)],\n'zero_pos': [(<numba.core.ir.Assign object at 0x7526c4f3e6d0>,\n0)]})\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | SSA violators <numba.core.utils.OrderedSet object at 0x7526c4ed4d90>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Fix SSA violator on var stencil_index\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | first assign: stencil_index\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: stencil_index = $const4.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const42.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: stencil_index.1 = $const42.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>,\n{90: [<numba.core.ir.Assign object at 0x7526c4ee9f40>],\n127: [<numba.core.ir.Assign object at 0x7526c4ee9130>]})\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='stencil_index' stmt=x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='stencil_index' stmt=x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Fix SSA violator on var x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | first assign: x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: x0.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>,\n{90: [<numba.core.ir.Assign object at 0x7526c4ee9640>],\n121: [<numba.core.ir.Assign object at 0x7526c4ee99d0>]})\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$phi24.0 = x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$26compare_op.2 = x0 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 91\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 90 from label 91\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 169\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 165 from label 169\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 127 from label 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | insert phi node x0.2 = phi(incoming_values=[], incoming_blocks=[]) at 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 90 from label 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x0.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 91\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 91\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 90 from label 91\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 165 from label 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 127 from label 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Fix SSA violator on var x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0.2 = phi(incoming_values=[Var(x0, audio.py:1147), Var(x0.1, audio.py:1149), Var(x0, audio.py:1147)], incoming_blocks=[123, 121, 91])\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | first assign: x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: x1.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>,\n{127: [<numba.core.ir.Assign object at 0x7526c4ee9490>],\n159: [<numba.core.ir.Assign object at 0x7526c4ee9970>]})\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0.2 = phi(incoming_values=[Var(x0, audio.py:1147), Var(x0.1, audio.py:1149), Var(x0, audio.py:1147)], incoming_blocks=[123, 121, 91])\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$phi62.0 = x1\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$64compare_op.2 = x1 <= threshold\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 127 from label 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 169\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 165 from label 169\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | insert phi node x1.2 = phi(incoming_values=[], incoming_blocks=[]) at 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 127 from label 161\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 127 from label 131\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 127\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 159\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x1.1 = const(int, 0)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: $96call_method.7 = call $92load_method.5(x1.2, func=$92load_method.5, args=[Var(x1.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 165 from label 173\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 165\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: $116call_method.7 = call $112load_method.5(x1.2, func=$112load_method.5, args=[Var(x1.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80>\n2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80\nDue to a bug fix in https://github.com/huggingface/transformers/pull/28687 transcription using a multilingual Whisper will default to language detection followed by transcription instead of translation to English.This might be a breaking change for your use case. If you want to instead always translate your audio to English, make sure to pass `language='en'`.", "metrics": { "predict_time": 5.46087, "total_time": 126.28327 }, "output": "https://replicate.delivery/xezq/Y2LZ5p9WlJ7zChakPyE0qBQf7WV6eIeS6Vj3k1WJw8uzaLQoA/test_pred.wav", "started_at": "2025-01-23T20:40:51.576400Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bsvm-7briop4pjdxx3czw53czpltre5uebcbpztb2gor5jttmnfm3rhxa", "get": "https://api.replicate.com/v1/predictions/6hzb76cpg9rm80cmjkhsh1ppt4", "cancel": "https://api.replicate.com/v1/predictions/6hzb76cpg9rm80cmjkhsh1ppt4/cancel" }, "version": "b533d19a628be53af05ebbc596b8fb84bf9ba0aec1e873162e56a0457d87e8c4" }
Generated in2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | bytecode dump: > 0 NOP(arg=None, lineno=1144) 2 LOAD_FAST(arg=0, lineno=1147) 4 LOAD_CONST(arg=1, lineno=1147) 6 BINARY_SUBSCR(arg=None, lineno=1147) 8 STORE_FAST(arg=3, lineno=1147) 10 LOAD_FAST(arg=1, lineno=1148) 12 UNARY_NEGATIVE(arg=None, lineno=1148) 14 LOAD_FAST(arg=3, lineno=1148) 16 DUP_TOP(arg=None, lineno=1148) 18 ROT_THREE(arg=None, lineno=1148) 20 COMPARE_OP(arg=1, lineno=1148) 22 POP_JUMP_IF_FALSE(arg=32, lineno=1148) 24 LOAD_FAST(arg=1, lineno=1148) 26 COMPARE_OP(arg=1, lineno=1148) 28 POP_JUMP_IF_FALSE(arg=40, lineno=1148) 30 JUMP_FORWARD(arg=4, lineno=1148) > 32 POP_TOP(arg=None, lineno=1148) 34 JUMP_FORWARD(arg=4, lineno=1148) > 36 LOAD_CONST(arg=1, lineno=1149) 38 STORE_FAST(arg=3, lineno=1149) > 40 LOAD_FAST(arg=0, lineno=1151) 42 LOAD_CONST(arg=2, lineno=1151) 44 BINARY_SUBSCR(arg=None, lineno=1151) 46 STORE_FAST(arg=4, lineno=1151) 48 LOAD_FAST(arg=1, lineno=1152) 50 UNARY_NEGATIVE(arg=None, lineno=1152) 52 LOAD_FAST(arg=4, lineno=1152) 54 DUP_TOP(arg=None, lineno=1152) 56 ROT_THREE(arg=None, lineno=1152) 58 COMPARE_OP(arg=1, lineno=1152) 60 POP_JUMP_IF_FALSE(arg=70, lineno=1152) 62 LOAD_FAST(arg=1, lineno=1152) 64 COMPARE_OP(arg=1, lineno=1152) 66 POP_JUMP_IF_FALSE(arg=78, lineno=1152) 68 JUMP_FORWARD(arg=4, lineno=1152) > 70 POP_TOP(arg=None, lineno=1152) 72 JUMP_FORWARD(arg=4, lineno=1152) > 74 LOAD_CONST(arg=1, lineno=1153) 76 STORE_FAST(arg=4, lineno=1153) > 78 LOAD_FAST(arg=2, lineno=1155) 80 POP_JUMP_IF_FALSE(arg=102, lineno=1155) 82 LOAD_GLOBAL(arg=0, lineno=1156) 84 LOAD_METHOD(arg=1, lineno=1156) 86 LOAD_FAST(arg=3, lineno=1156) 88 CALL_METHOD(arg=1, lineno=1156) 90 LOAD_GLOBAL(arg=0, lineno=1156) 92 LOAD_METHOD(arg=1, lineno=1156) 94 LOAD_FAST(arg=4, lineno=1156) 96 CALL_METHOD(arg=1, lineno=1156) 98 COMPARE_OP(arg=3, lineno=1156) 100 RETURN_VALUE(arg=None, lineno=1156) > 102 LOAD_GLOBAL(arg=0, lineno=1158) 104 LOAD_METHOD(arg=2, lineno=1158) 106 LOAD_FAST(arg=3, lineno=1158) 108 CALL_METHOD(arg=1, lineno=1158) 110 LOAD_GLOBAL(arg=0, lineno=1158) 112 LOAD_METHOD(arg=2, lineno=1158) 114 LOAD_FAST(arg=4, lineno=1158) 116 CALL_METHOD(arg=1, lineno=1158) 118 COMPARE_OP(arg=3, lineno=1158) 120 RETURN_VALUE(arg=None, lineno=1158) 122 LOAD_CONST(arg=3, lineno=1158) 124 RETURN_VALUE(arg=None, lineno=1158) 2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=0 nstack_initial=0)]) 2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | stack: [] 2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=0 nstack_initial=0) 2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | dispatch pc=0, inst=NOP(arg=None, lineno=1144) 2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | dispatch pc=2, inst=LOAD_FAST(arg=0, lineno=1147) 2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | dispatch pc=4, inst=LOAD_CONST(arg=1, lineno=1147) 2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | stack ['$x2.0'] 2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | dispatch pc=6, inst=BINARY_SUBSCR(arg=None, lineno=1147) 2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | stack ['$x2.0', '$const4.1'] 2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | dispatch pc=8, inst=STORE_FAST(arg=3, lineno=1147) 2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | stack ['$6binary_subscr.2'] 2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | dispatch pc=10, inst=LOAD_FAST(arg=1, lineno=1148) 2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | dispatch pc=12, inst=UNARY_NEGATIVE(arg=None, lineno=1148) 2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | stack ['$threshold10.3'] 2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | dispatch pc=14, inst=LOAD_FAST(arg=3, lineno=1148) 2025-01-23 20:40:51 | DEBUG | numba.core.byteflow | stack ['$12unary_negative.4'] 2025-01-23 20:40:51 | DEBUG | [...] log volume exceeds 256KiB size limit: truncating logs [...] -23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const42.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: stencil_index.1 = $const42.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>, {90: [<numba.core.ir.Assign object at 0x7526c51a1a30>], 127: [<numba.core.ir.Assign object at 0x7526c51a15e0>]}) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='stencil_index' stmt=x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='stencil_index' stmt=x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1550> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Fix SSA violator on var x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | first assign: x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: x0.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a1850> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>, {90: [<numba.core.ir.Assign object at 0x7526c51a1f70>], 121: [<numba.core.ir.Assign object at 0x7526c51a1be0>]}) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$phi24.0 = x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$26compare_op.2 = x0 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 91 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 90 from label 91 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 169 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 165 from label 169 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 127 from label 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | insert phi node x0.2 = phi(incoming_values=[], incoming_blocks=[]) at 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 90 from label 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x0.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 91 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 91 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 90 from label 91 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 165 from label 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 127 from label 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1460> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Fix SSA violator on var x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0.2 = phi(incoming_values=[Var(x0, audio.py:1147), Var(x0.1, audio.py:1149), Var(x0, audio.py:1147)], incoming_blocks=[123, 121, 91]) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | first assign: x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: x1.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c51a16d0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>, {127: [<numba.core.ir.Assign object at 0x7526c51a1e80>], 159: [<numba.core.ir.Assign object at 0x7526c5187610>]}) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0.2 = phi(incoming_values=[Var(x0, audio.py:1147), Var(x0.1, audio.py:1149), Var(x0, audio.py:1147)], incoming_blocks=[123, 121, 91]) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$phi62.0 = x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$64compare_op.2 = x1 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 127 from label 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 169 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 165 from label 169 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | insert phi node x1.2 = phi(incoming_values=[], incoming_blocks=[]) at 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 127 from label 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 127 from label 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x1.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: $96call_method.7 = call $92load_method.5(x1.2, func=$92load_method.5, args=[Var(x1.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 165 from label 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: $116call_method.7 = call $112load_method.5(x1.2, func=$112load_method.5, args=[Var(x1.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c51a1280> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | bytecode dump: > 0 NOP(arg=None, lineno=1161) 2 LOAD_GLOBAL(arg=0, lineno=1177) 4 LOAD_FAST(arg=0, lineno=1177) 6 LOAD_FAST(arg=1, lineno=1177) 8 LOAD_FAST(arg=2, lineno=1177) 10 CALL_FUNCTION(arg=3, lineno=1177) 12 LOAD_FAST(arg=3, lineno=1177) 14 LOAD_CONST(arg=1, lineno=1177) 16 LOAD_CONST(arg=1, lineno=1177) 18 BUILD_SLICE(arg=2, lineno=1177) 20 STORE_SUBSCR(arg=None, lineno=1177) 22 LOAD_CONST(arg=1, lineno=1177) 24 RETURN_VALUE(arg=None, lineno=1177) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=0 nstack_initial=0)]) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack: [] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=0 nstack_initial=0) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=0, inst=NOP(arg=None, lineno=1161) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=2, inst=LOAD_GLOBAL(arg=0, lineno=1177) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=4, inst=LOAD_FAST(arg=0, lineno=1177) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$2load_global.0'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=6, inst=LOAD_FAST(arg=1, lineno=1177) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$2load_global.0', '$x4.1'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=8, inst=LOAD_FAST(arg=2, lineno=1177) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$2load_global.0', '$x4.1', '$threshold6.2'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=10, inst=CALL_FUNCTION(arg=3, lineno=1177) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$2load_global.0', '$x4.1', '$threshold6.2', '$zero_pos8.3'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=12, inst=LOAD_FAST(arg=3, lineno=1177) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$10call_function.4'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=14, inst=LOAD_CONST(arg=1, lineno=1177) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$10call_function.4', '$y12.5'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=16, inst=LOAD_CONST(arg=1, lineno=1177) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$10call_function.4', '$y12.5', '$const14.6'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=18, inst=BUILD_SLICE(arg=2, lineno=1177) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$10call_function.4', '$y12.5', '$const14.6', '$const16.7'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=20, inst=STORE_SUBSCR(arg=None, lineno=1177) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$10call_function.4', '$y12.5', '$18build_slice.9'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=22, inst=LOAD_CONST(arg=1, lineno=1177) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=24, inst=RETURN_VALUE(arg=None, lineno=1177) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$const22.10'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | end state. edges=[] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | -------------------------Prune PHIs------------------------- 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | Used_phis: defaultdict(<class 'set'>, {State(pc_initial=0 nstack_initial=0): set()}) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | defmap: {} 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | phismap: defaultdict(<class 'set'>, {}) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | changing phismap: defaultdict(<class 'set'>, {}) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | keep phismap: {} 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | new_out: defaultdict(<class 'dict'>, {}) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | ----------------------DONE Prune PHIs----------------------- 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | block_infos State(pc_initial=0 nstack_initial=0): AdaptBlockInfo(insts=((0, {}), (2, {'res': '$2load_global.0'}), (4, {'res': '$x4.1'}), (6, {'res': '$threshold6.2'}), (8, {'res': '$zero_pos8.3'}), (10, {'func': '$2load_global.0', 'args': ['$x4.1', '$threshold6.2', '$zero_pos8.3'], 'res': '$10call_function.4'}), (12, {'res': '$y12.5'}), (14, {'res': '$const14.6'}), (16, {'res': '$const16.7'}), (18, {'start': '$const14.6', 'stop': '$const16.7', 'step': None, 'res': '$18build_slice.9', 'slicevar': '$18build_slice.8'}), (20, {'target': '$y12.5', 'index': '$18build_slice.9', 'value': '$10call_function.4'}), (22, {'res': '$const22.10'}), (24, {'retval': '$const22.10', 'castval': '$24return_value.11'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) 2025-01-23 20:40:52 | DEBUG | numba.core.interpreter | label 0: x = arg(0, name=x) ['x'] threshold = arg(1, name=threshold) ['threshold'] zero_pos = arg(2, name=zero_pos) ['zero_pos'] y = arg(3, name=y) ['y'] $2load_global.0 = global(_zc_stencil: <numba.stencils.stencil.StencilFunc object at 0x7526c52ff040>) ['$2load_global.0'] $10call_function.4 = call $2load_global.0(x, threshold, zero_pos, func=$2load_global.0, args=[Var(x, audio.py:1161), Var(threshold, audio.py:1161), Var(zero_pos, audio.py:1161)], kws=(), vararg=None, varkwarg=None, target=None) ['$10call_function.4', '$2load_global.0', 'threshold', 'x', 'zero_pos'] $const14.6 = const(NoneType, None) ['$const14.6'] $const16.7 = const(NoneType, None) ['$const16.7'] $18build_slice.8 = global(slice: <class 'slice'>) ['$18build_slice.8'] $18build_slice.9 = call $18build_slice.8($const14.6, $const16.7, func=$18build_slice.8, args=(Var($const14.6, audio.py:1177), Var($const16.7, audio.py:1177)), kws=(), vararg=None, varkwarg=None, target=None) ['$18build_slice.8', '$18build_slice.9', '$const14.6', '$const16.7'] y[$18build_slice.9] = $10call_function.4 ['$10call_function.4', '$18build_slice.9', 'y'] $const22.10 = const(NoneType, None) ['$const22.10'] $24return_value.11 = cast(value=$const22.10) ['$24return_value.11', '$const22.10'] return $24return_value.11 ['$24return_value.11'] 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c5368250> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: y = arg(3, name=y) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $2load_global.0 = global(_zc_stencil: <numba.stencils.stencil.StencilFunc object at 0x7526c52ff040>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10call_function.4 = call $2load_global.0(x, threshold, zero_pos, func=$2load_global.0, args=[Var(x, audio.py:1161), Var(threshold, audio.py:1161), Var(zero_pos, audio.py:1161)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const14.6 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const16.7 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $18build_slice.8 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $18build_slice.9 = call $18build_slice.8($const14.6, $const16.7, func=$18build_slice.8, args=(Var($const14.6, audio.py:1177), Var($const16.7, audio.py:1177)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: y[slice(None, None, None)] = $10call_function.4 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const22.10 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $24return_value.11 = cast(value=$const22.10) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $24return_value.11 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | defs defaultdict(<class 'list'>, {'$10call_function.4': [(<numba.core.ir.Assign object at 0x7526c502a490>, 0)], '$18build_slice.8': [(<numba.core.ir.Assign object at 0x7526c502a9d0>, 0)], '$18build_slice.9': [(<numba.core.ir.Assign object at 0x7526c502aaf0>, 0)], '$24return_value.11': [(<numba.core.ir.Assign object at 0x7526c502aeb0>, 0)], '$2load_global.0': [(<numba.core.ir.Assign object at 0x7526c5011f10>, 0)], '$const14.6': [(<numba.core.ir.Assign object at 0x7526c502a6d0>, 0)], '$const16.7': [(<numba.core.ir.Assign object at 0x7526c502a850>, 0)], '$const22.10': [(<numba.core.ir.Assign object at 0x7526c502ad30>, 0)], 'threshold': [(<numba.core.ir.Assign object at 0x7526c50111f0>, 0)], 'x': [(<numba.core.ir.Assign object at 0x7526c5011460>, 0)], 'y': [(<numba.core.ir.Assign object at 0x7526c5011d90>, 0)], 'zero_pos': [(<numba.core.ir.Assign object at 0x7526c5011c70>, 0)]}) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | SSA violators <numba.core.utils.OrderedSet object at 0x7526c5368250> 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | bytecode dump: > 0 NOP(arg=None, lineno=1) 2 LOAD_FAST(arg=0, lineno=2) 4 LOAD_ATTR(arg=0, lineno=2) 6 STORE_FAST(arg=3, lineno=2) 8 LOAD_GLOBAL(arg=1, lineno=3) 10 LOAD_ATTR(arg=2, lineno=3) 12 LOAD_FAST(arg=3, lineno=3) 14 LOAD_GLOBAL(arg=1, lineno=3) 16 LOAD_ATTR(arg=3, lineno=3) 18 LOAD_CONST(arg=1, lineno=3) 20 CALL_FUNCTION_KW(arg=2, lineno=3) 22 STORE_FAST(arg=4, lineno=3) 24 LOAD_CONST(arg=2, lineno=4) 26 LOAD_FAST(arg=4, lineno=4) 28 LOAD_CONST(arg=0, lineno=4) 30 LOAD_CONST(arg=3, lineno=4) 32 BUILD_SLICE(arg=2, lineno=4) 34 STORE_SUBSCR(arg=None, lineno=4) 36 LOAD_CONST(arg=2, lineno=5) 38 LOAD_FAST(arg=4, lineno=5) 40 LOAD_CONST(arg=2, lineno=5) 42 LOAD_CONST(arg=0, lineno=5) 44 BUILD_SLICE(arg=2, lineno=5) 46 STORE_SUBSCR(arg=None, lineno=5) 48 LOAD_GLOBAL(arg=4, lineno=6) 50 LOAD_GLOBAL(arg=5, lineno=6) 52 LOAD_CONST(arg=2, lineno=6) 54 LOAD_CONST(arg=4, lineno=6) 56 CALL_FUNCTION(arg=2, lineno=6) 58 UNARY_NEGATIVE(arg=None, lineno=6) 60 LOAD_FAST(arg=3, lineno=6) 62 LOAD_CONST(arg=2, lineno=6) 64 BINARY_SUBSCR(arg=None, lineno=6) 66 LOAD_GLOBAL(arg=6, lineno=6) 68 LOAD_CONST(arg=2, lineno=6) 70 LOAD_CONST(arg=2, lineno=6) 72 CALL_FUNCTION(arg=2, lineno=6) 74 BINARY_SUBTRACT(arg=None, lineno=6) 76 CALL_FUNCTION(arg=2, lineno=6) 78 GET_ITER(arg=None, lineno=6) > 80 FOR_ITER(arg=8, lineno=6) 82 STORE_FAST(arg=5, lineno=6) 84 LOAD_CONST(arg=2, lineno=7) 86 STORE_FAST(arg=6, lineno=7) 88 JUMP_ABSOLUTE(arg=80, lineno=7) > 90 LOAD_FAST(arg=4, lineno=8) 92 RETURN_VALUE(arg=None, lineno=8) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=0 nstack_initial=0)]) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack: [] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=0 nstack_initial=0) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=0, inst=NOP(arg=None, lineno=1) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=2, inst=LOAD_FAST(arg=0, lineno=2) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=4, inst=LOAD_ATTR(arg=0, lineno=2) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$x2.0'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=6, inst=STORE_FAST(arg=3, lineno=2) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$4load_attr.1'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=8, inst=LOAD_GLOBAL(arg=1, lineno=3) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=10, inst=LOAD_ATTR(arg=2, lineno=3) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$8load_global.2'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=12, inst=LOAD_FAST(arg=3, lineno=3) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$10load_attr.3'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=14, inst=LOAD_GLOBAL(arg=1, lineno=3) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$10load_attr.3', '$full_shape012.4'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=16, inst=LOAD_ATTR(arg=3, lineno=3) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$10load_attr.3', '$full_shape012.4', '$14load_global.5'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=18, inst=LOAD_CONST(arg=1, lineno=3) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$10load_attr.3', '$full_shape012.4', '$16load_attr.6'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=20, inst=CALL_FUNCTION_KW(arg=2, lineno=3) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$10load_attr.3', '$full_shape012.4', '$16load_attr.6', '$const18.7'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=22, inst=STORE_FAST(arg=4, lineno=3) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$20call_function_kw.8'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=24, inst=LOAD_CONST(arg=2, lineno=4) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=26, inst=LOAD_FAST(arg=4, lineno=4) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$const24.9'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=28, inst=LOAD_CONST(arg=0, lineno=4) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$const24.9', '$out026.10'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=30, inst=LOAD_CONST(arg=3, lineno=4) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$const24.9', '$out026.10', '$const28.11'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=32, inst=BUILD_SLICE(arg=2, lineno=4) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$const24.9', '$out026.10', '$const28.11', '$const30.12'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=34, inst=STORE_SUBSCR(arg=None, lineno=4) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$const24.9', '$out026.10', '$32build_slice.14'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=36, inst=LOAD_CONST(arg=2, lineno=5) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=38, inst=LOAD_FAST(arg=4, lineno=5) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$const36.15'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=40, inst=LOAD_CONST(arg=2, lineno=5) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$const36.15', '$out038.16'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=42, inst=LOAD_CONST(arg=0, lineno=5) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$const36.15', '$out038.16', '$const40.17'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=44, inst=BUILD_SLICE(arg=2, lineno=5) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$const36.15', '$out038.16', '$const40.17', '$const42.18'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=46, inst=STORE_SUBSCR(arg=None, lineno=5) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$const36.15', '$out038.16', '$44build_slice.20'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=48, inst=LOAD_GLOBAL(arg=4, lineno=6) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=50, inst=LOAD_GLOBAL(arg=5, lineno=6) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=52, inst=LOAD_CONST(arg=2, lineno=6) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$50load_global.22'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=54, inst=LOAD_CONST(arg=4, lineno=6) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$50load_global.22', '$const52.23'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=56, inst=CALL_FUNCTION(arg=2, lineno=6) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$50load_global.22', '$const52.23', '$const54.24'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=58, inst=UNARY_NEGATIVE(arg=None, lineno=6) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$56call_function.25'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=60, inst=LOAD_FAST(arg=3, lineno=6) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=62, inst=LOAD_CONST(arg=2, lineno=6) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$full_shape060.27'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=64, inst=BINARY_SUBSCR(arg=None, lineno=6) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$full_shape060.27', '$const62.28'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=66, inst=LOAD_GLOBAL(arg=6, lineno=6) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$64binary_subscr.29'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=68, inst=LOAD_CONST(arg=2, lineno=6) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$64binary_subscr.29', '$66load_global.30'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=70, inst=LOAD_CONST(arg=2, lineno=6) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$64binary_subscr.29', '$66load_global.30', '$const68.31'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=72, inst=CALL_FUNCTION(arg=2, lineno=6) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$64binary_subscr.29', '$66load_global.30', '$const68.31', '$const70.32'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=74, inst=BINARY_SUBTRACT(arg=None, lineno=6) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$64binary_subscr.29', '$72call_function.33'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=76, inst=CALL_FUNCTION(arg=2, lineno=6) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$74binary_subtract.34'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=78, inst=GET_ITER(arg=None, lineno=6) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$76call_function.35'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | end state. edges=[Edge(pc=80, stack=('$78get_iter.36',), blockstack=(), npush=0)] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=80 nstack_initial=1)]) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack: ['$phi80.0'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=80 nstack_initial=1) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=80, inst=FOR_ITER(arg=8, lineno=6) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$phi80.0'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | end state. edges=[Edge(pc=90, stack=(), blockstack=(), npush=0), Edge(pc=82, stack=('$phi80.0', '$80for_iter.2'), blockstack=(), npush=0)] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=90 nstack_initial=0), State(pc_initial=82 nstack_initial=2)]) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack: [] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=90 nstack_initial=0) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=90, inst=LOAD_FAST(arg=4, lineno=8) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=92, inst=RETURN_VALUE(arg=None, lineno=8) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$out090.0'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | end state. edges=[] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=82 nstack_initial=2)]) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack: ['$phi82.0', '$phi82.1'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=82 nstack_initial=2) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=82, inst=STORE_FAST(arg=5, lineno=6) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$phi82.0', '$phi82.1'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=84, inst=LOAD_CONST(arg=2, lineno=7) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$phi82.0'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=86, inst=STORE_FAST(arg=6, lineno=7) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$phi82.0', '$const84.2'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | dispatch pc=88, inst=JUMP_ABSOLUTE(arg=80, lineno=7) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | stack ['$phi82.0'] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | end state. edges=[Edge(pc=80, stack=('$phi82.0',), blockstack=(), npush=0)] 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=80 nstack_initial=1)]) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | -------------------------Prune PHIs------------------------- 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | Used_phis: defaultdict(<class 'set'>, {State(pc_initial=0 nstack_initial=0): set(), State(pc_initial=80 nstack_initial=1): {'$phi80.0'}, State(pc_initial=82 nstack_initial=2): {'$phi82.1'}, State(pc_initial=90 nstack_initial=0): set()}) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | defmap: {'$phi80.0': State(pc_initial=0 nstack_initial=0), '$phi82.1': State(pc_initial=80 nstack_initial=1)} 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | phismap: defaultdict(<class 'set'>, {'$phi80.0': {('$78get_iter.36', State(pc_initial=0 nstack_initial=0)), ('$phi82.0', State(pc_initial=82 nstack_initial=2))}, '$phi82.0': {('$phi80.0', State(pc_initial=80 nstack_initial=1))}, '$phi82.1': {('$80for_iter.2', State(pc_initial=80 nstack_initial=1))}}) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | changing phismap: defaultdict(<class 'set'>, {'$phi80.0': {('$78get_iter.36', State(pc_initial=0 nstack_initial=0)), ('$phi80.0', State(pc_initial=80 nstack_initial=1))}, '$phi82.0': {('$78get_iter.36', State(pc_initial=0 nstack_initial=0))}, '$phi82.1': {('$80for_iter.2', State(pc_initial=80 nstack_initial=1))}}) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | changing phismap: defaultdict(<class 'set'>, {'$phi80.0': {('$78get_iter.36', State(pc_initial=0 nstack_initial=0))}, '$phi82.0': {('$78get_iter.36', State(pc_initial=0 nstack_initial=0))}, '$phi82.1': {('$80for_iter.2', State(pc_initial=80 nstack_initial=1))}}) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | changing phismap: defaultdict(<class 'set'>, {'$phi80.0': {('$78get_iter.36', State(pc_initial=0 nstack_initial=0))}, '$phi82.0': {('$78get_iter.36', State(pc_initial=0 nstack_initial=0))}, '$phi82.1': {('$80for_iter.2', State(pc_initial=80 nstack_initial=1))}}) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | keep phismap: {'$phi80.0': {('$78get_iter.36', State(pc_initial=0 nstack_initial=0))}, '$phi82.1': {('$80for_iter.2', State(pc_initial=80 nstack_initial=1))}} 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | new_out: defaultdict(<class 'dict'>, {State(pc_initial=0 nstack_initial=0): {'$phi80.0': '$78get_iter.36'}, State(pc_initial=80 nstack_initial=1): {'$phi82.1': '$80for_iter.2'}}) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | ----------------------DONE Prune PHIs----------------------- 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | block_infos State(pc_initial=0 nstack_initial=0): AdaptBlockInfo(insts=((0, {}), (2, {'res': '$x2.0'}), (4, {'item': '$x2.0', 'res': '$4load_attr.1'}), (6, {'value': '$4load_attr.1'}), (8, {'res': '$8load_global.2'}), (10, {'item': '$8load_global.2', 'res': '$10load_attr.3'}), (12, {'res': '$full_shape012.4'}), (14, {'res': '$14load_global.5'}), (16, {'item': '$14load_global.5', 'res': '$16load_attr.6'}), (18, {'res': '$const18.7'}), (20, {'func': '$10load_attr.3', 'args': ['$full_shape012.4', '$16load_attr.6'], 'names': '$const18.7', 'res': '$20call_function_kw.8'}), (22, {'value': '$20call_function_kw.8'}), (24, {'res': '$const24.9'}), (26, {'res': '$out026.10'}), (28, {'res': '$const28.11'}), (30, {'res': '$const30.12'}), (32, {'start': '$const28.11', 'stop': '$const30.12', 'step': None, 'res': '$32build_slice.14', 'slicevar': '$32build_slice.13'}), (34, {'target': '$out026.10', 'index': '$32build_slice.14', 'value': '$const24.9'}), (36, {'res': '$const36.15'}), (38, {'res': '$out038.16'}), (40, {'res': '$const40.17'}), (42, {'res': '$const42.18'}), (44, {'start': '$const40.17', 'stop': '$const42.18', 'step': None, 'res': '$44build_slice.20', 'slicevar': '$44build_slice.19'}), (46, {'target': '$out038.16', 'index': '$44build_slice.20', 'value': '$const36.15'}), (48, {'res': '$48load_global.21'}), (50, {'res': '$50load_global.22'}), (52, {'res': '$const52.23'}), (54, {'res': '$const54.24'}), (56, {'func': '$50load_global.22', 'args': ['$const52.23', '$const54.24'], 'res': '$56call_function.25'}), (58, {'value': '$56call_function.25', 'res': '$58unary_negative.26'}), (60, {'res': '$full_shape060.27'}), (62, {'res': '$const62.28'}), (64, {'index': '$const62.28', 'target': '$full_shape060.27', 'res': '$64binary_subscr.29'}), (66, {'res': '$66load_global.30'}), (68, {'res': '$const68.31'}), (70, {'res': '$const70.32'}), (72, {'func': '$66load_global.30', 'args': ['$const68.31', '$const70.32'], 'res': '$72call_function.33'}), (74, {'lhs': '$64binary_subscr.29', 'rhs': '$72call_function.33', 'res': '$74binary_subtract.34'}), (76, {'func': '$48load_global.21', 'args': ['$58unary_negative.26', '$74binary_subtract.34'], 'res': '$76call_function.35'}), (78, {'value': '$76call_function.35', 'res': '$78get_iter.36'})), outgoing_phis={'$phi80.0': '$78get_iter.36'}, blockstack=(), active_try_block=None, outgoing_edgepushed={80: ('$78get_iter.36',)}) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | block_infos State(pc_initial=80 nstack_initial=1): AdaptBlockInfo(insts=((80, {'iterator': '$phi80.0', 'pair': '$80for_iter.1', 'indval': '$80for_iter.2', 'pred': '$80for_iter.3'}),), outgoing_phis={'$phi82.1': '$80for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={90: (), 82: ('$phi80.0', '$80for_iter.2')}) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | block_infos State(pc_initial=82 nstack_initial=2): AdaptBlockInfo(insts=((82, {'value': '$phi82.1'}), (84, {'res': '$const84.2'}), (86, {'value': '$const84.2'}), (88, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={80: ('$phi82.0',)}) 2025-01-23 20:40:52 | DEBUG | numba.core.byteflow | block_infos State(pc_initial=90 nstack_initial=0): AdaptBlockInfo(insts=((90, {'res': '$out090.0'}), (92, {'retval': '$out090.0', 'castval': '$92return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) 2025-01-23 20:40:52 | DEBUG | numba.core.interpreter | label 0: x = arg(0, name=x) ['x'] threshold = arg(1, name=threshold) ['threshold'] zero_pos = arg(2, name=zero_pos) ['zero_pos'] full_shape0 = getattr(value=x, attr=shape) ['full_shape0', 'x'] $8load_global.2 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) ['$8load_global.2'] $10load_attr.3 = getattr(value=$8load_global.2, attr=empty) ['$10load_attr.3', '$8load_global.2'] $14load_global.5 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) ['$14load_global.5'] $16load_attr.6 = getattr(value=$14load_global.5, attr=bool_) ['$14load_global.5', '$16load_attr.6'] out0 = call $10load_attr.3(full_shape0, func=$10load_attr.3, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6, <string>:3))], vararg=None, varkwarg=None, target=None) ['$10load_attr.3', '$16load_attr.6', 'full_shape0', 'out0'] $const24.9 = const(int, 0) ['$const24.9'] $const28.11 = const(NoneType, None) ['$const28.11'] $const30.12 = const(int, 1) ['$const30.12'] $32build_slice.13 = global(slice: <class 'slice'>) ['$32build_slice.13'] $32build_slice.14 = call $32build_slice.13($const28.11, $const30.12, func=$32build_slice.13, args=(Var($const28.11, <string>:4), Var($const30.12, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) ['$32build_slice.13', '$32build_slice.14', '$const28.11', '$const30.12'] out0[$32build_slice.14] = $const24.9 ['$32build_slice.14', '$const24.9', 'out0'] $const36.15 = const(int, 0) ['$const36.15'] $const40.17 = const(int, 0) ['$const40.17'] $const42.18 = const(NoneType, None) ['$const42.18'] $44build_slice.19 = global(slice: <class 'slice'>) ['$44build_slice.19'] $44build_slice.20 = call $44build_slice.19($const40.17, $const42.18, func=$44build_slice.19, args=(Var($const40.17, <string>:5), Var($const42.18, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) ['$44build_slice.19', '$44build_slice.20', '$const40.17', '$const42.18'] out0[$44build_slice.20] = $const36.15 ['$44build_slice.20', '$const36.15', 'out0'] $48load_global.21 = global(range: <class 'range'>) ['$48load_global.21'] $50load_global.22 = global(min: <built-in function min>) ['$50load_global.22'] $const52.23 = const(int, 0) ['$const52.23'] $const54.24 = const(int, -1) ['$const54.24'] $56call_function.25 = call $50load_global.22($const52.23, $const54.24, func=$50load_global.22, args=[Var($const52.23, <string>:6), Var($const54.24, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) ['$50load_global.22', '$56call_function.25', '$const52.23', '$const54.24'] $58unary_negative.26 = unary(fn=<built-in function neg>, value=$56call_function.25) ['$56call_function.25', '$58unary_negative.26'] $const62.28 = const(int, 0) ['$const62.28'] $64binary_subscr.29 = getitem(value=full_shape0, index=$const62.28, fn=<built-in function getitem>) ['$64binary_subscr.29', '$const62.28', 'full_shape0'] $66load_global.30 = global(max: <built-in function max>) ['$66load_global.30'] $const68.31 = const(int, 0) ['$const68.31'] $const70.32 = const(int, 0) ['$const70.32'] $72call_function.33 = call $66load_global.30($const68.31, $const70.32, func=$66load_global.30, args=[Var($const68.31, <string>:6), Var($const70.32, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) ['$66load_global.30', '$72call_function.33', '$const68.31', '$const70.32'] $74binary_subtract.34 = $64binary_subscr.29 - $72call_function.33 ['$64binary_subscr.29', '$72call_function.33', '$74binary_subtract.34'] $76call_function.35 = call $48load_global.21($58unary_negative.26, $74binary_subtract.34, func=$48load_global.21, args=[Var($58unary_negative.26, <string>:6), Var($74binary_subtract.34, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) ['$48load_global.21', '$58unary_negative.26', '$74binary_subtract.34', '$76call_function.35'] $78get_iter.36 = getiter(value=$76call_function.35) ['$76call_function.35', '$78get_iter.36'] $phi80.0 = $78get_iter.36 ['$78get_iter.36', '$phi80.0'] jump 80 [] label 80: $80for_iter.1 = iternext(value=$phi80.0) ['$80for_iter.1', '$phi80.0'] $80for_iter.2 = pair_first(value=$80for_iter.1) ['$80for_iter.1', '$80for_iter.2'] $80for_iter.3 = pair_second(value=$80for_iter.1) ['$80for_iter.1', '$80for_iter.3'] $phi82.1 = $80for_iter.2 ['$80for_iter.2', '$phi82.1'] branch $80for_iter.3, 82, 90 ['$80for_iter.3'] label 82: index00 = $phi82.1 ['$phi82.1', 'index00'] __sentinel__0 = const(int, 0) ['__sentinel__0'] jump 80 [] label 90: $92return_value.1 = cast(value=out0) ['$92return_value.1', 'out0'] return $92return_value.1 ['$92return_value.1'] 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 82 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 91 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 115 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const42.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 153 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 169 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x7526c4ed4d90> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | defs defaultdict(<class 'list'>, {'$100return_value.9': [(<numba.core.ir.Assign object at 0x7526c4f16700>, 169)], '$102load_global.0': [(<numba.core.ir.Assign object at 0x7526c4f20b50>, 173)], '$104load_method.1': [(<numba.core.ir.Assign object at 0x7526c4f24d30>, 173)], '$108call_method.3': [(<numba.core.ir.Assign object at 0x7526c4f289d0>, 173)], '$10load_attr.3.1': [(<numba.core.ir.Assign object at 0x7526c4f3db80>, 0)], '$110load_global.4': [(<numba.core.ir.Assign object at 0x7526c4f2a670>, 173)], '$112load_method.5': [(<numba.core.ir.Assign object at 0x7526c4f2d370>, 173)], '$116call_method.7': [(<numba.core.ir.Assign object at 0x7526c4f2ffd0>, 173)], '$118compare_op.8': [(<numba.core.ir.Assign object at 0x7526c4f32c70>, 173)], '$120return_value.9': [(<numba.core.ir.Assign object at 0x7526c4f37910>, 173)], '$12unary_negative.4': [(<numba.core.ir.Assign object at 0x7526c4fa7760>, 90)], '$14load_global.5.1': [(<numba.core.ir.Assign object at 0x7526c4f3ddf0>, 0)], '$16load_attr.6.1': [(<numba.core.ir.Assign object at 0x7526c4f3dc70>, 0)], '$20compare_op.7': [(<numba.core.ir.Assign object at 0x7526c4faa400>, 90)], '$22pred': [(<numba.core.ir.Assign object at 0x7526c4fafd90>, 90)], '$26compare_op.2': [(<numba.core.ir.Assign object at 0x7526c4fbbe20>, 91)], '$28pred': [(<numba.core.ir.Assign object at 0x7526c4fc1970>, 91)], '$32build_slice.13.1': [(<numba.core.ir.Assign object at 0x7526c4ecb550>, 0)], '$32build_slice.14.1': [(<numba.core.ir.Assign object at 0x7526c4ecb670>, 0)], '$44build_slice.19.1': [(<numba.core.ir.Assign object at 0x7526c4ecbe50>, 0)], '$44build_slice.20.1': [(<numba.core.ir.Assign object at 0x7526c4ecbf70>, 0)], '$48load_global.21.1': [(<numba.core.ir.Assign object at 0x7526c4ecc1f0>, 0)], '$50load_global.22.1': [(<numba.core.ir.Assign object at 0x7526c4ecc370>, 0)], '$50unary_negative.4': [(<numba.core.ir.Assign object at 0x7526c5029c70>, 127)], '$56call_function.25.1': [(<numba.core.ir.Assign object at 0x7526c4ecc850>, 0)], '$58compare_op.7': [(<numba.core.ir.Assign object at 0x7526c4f4b910>, 127)], '$58unary_negative.26.1': [(<numba.core.ir.Assign object at 0x7526c4ecc970>, 0)], '$60pred': [(<numba.core.ir.Assign object at 0x7526c4f4e2e0>, 127)], '$64binary_subscr.29.1': [(<numba.core.ir.Assign object at 0x7526c4eccdc0>, 0)], '$64compare_op.2': [(<numba.core.ir.Assign object at 0x7526c4f58310>, 131)], '$66load_global.30.1': [(<numba.core.ir.Assign object at 0x7526c4eccf10>, 0)], '$66pred': [(<numba.core.ir.Assign object at 0x7526c4f5ee80>, 131)], '$72call_function.33.1': [(<numba.core.ir.Assign object at 0x7526c4ece430>, 0)], '$74binary_subtract.34.1': [(<numba.core.ir.Assign object at 0x7526c4ece580>, 0)], '$76call_function.35.1': [(<numba.core.ir.Assign object at 0x7526c4ece730>, 0)], '$78get_iter.36.1': [(<numba.core.ir.Assign object at 0x7526c4ece850>, 0)], '$80for_iter.1.1': [(<numba.core.ir.Assign object at 0x7526c4ece940>, 80)], '$80for_iter.2.1': [(<numba.core.ir.Assign object at 0x7526c4ecea60>, 80)], '$80for_iter.3.1': [(<numba.core.ir.Assign object at 0x7526c4eceb80>, 80)], '$80pred': [(<numba.core.ir.Assign object at 0x7526c4f78520>, 165)], '$82load_global.0': [(<numba.core.ir.Assign object at 0x7526c4f81940>, 169)], '$84load_method.1': [(<numba.core.ir.Assign object at 0x7526c4f05b20>, 169)], '$88call_method.3': [(<numba.core.ir.Assign object at 0x7526c4f097c0>, 169)], '$8load_global.2.1': [(<numba.core.ir.Assign object at 0x7526c4f3e040>, 0)], '$90load_global.4': [(<numba.core.ir.Assign object at 0x7526c4f0a460>, 169)], '$92load_method.5': [(<numba.core.ir.Assign object at 0x7526c4f0e160>, 169)], '$92return_value.1.1': [(<numba.core.ir.Assign object at 0x7526c4ed04f0>, 194)], '$96call_method.7': [(<numba.core.ir.Assign object at 0x7526c4f10dc0>, 169)], '$98compare_op.8': [(<numba.core.ir.Assign object at 0x7526c4f14a60>, 169)], '$const24.9.1': [(<numba.core.ir.Assign object at 0x7526c4f39700>, 0)], '$const28.11.1': [(<numba.core.ir.Assign object at 0x7526c4ecb250>, 0)], '$const30.12.1': [(<numba.core.ir.Assign object at 0x7526c4ecb3d0>, 0)], '$const36.15.1': [(<numba.core.ir.Assign object at 0x7526c4ecb8b0>, 0)], '$const4.1': [(<numba.core.ir.Assign object at 0x7526c4fa0e50>, 90)], '$const40.17.1': [(<numba.core.ir.Assign object at 0x7526c4ecbb50>, 0)], '$const42.1': [(<numba.core.ir.Assign object at 0x7526c4f48f40>, 127)], '$const42.18.1': [(<numba.core.ir.Assign object at 0x7526c4ecbcd0>, 0)], '$const52.23.1': [(<numba.core.ir.Assign object at 0x7526c4ecc4f0>, 0)], '$const54.24.1': [(<numba.core.ir.Assign object at 0x7526c4ecc670>, 0)], '$const62.28.1': [(<numba.core.ir.Assign object at 0x7526c4eccc10>, 0)], '$const68.31.1': [(<numba.core.ir.Assign object at 0x7526c4ece0d0>, 0)], '$const70.32.1': [(<numba.core.ir.Assign object at 0x7526c4ece250>, 0)], '$phi24.0': [(<numba.core.ir.Assign object at 0x7526c4fb3a30>, 90)], '$phi62.0': [(<numba.core.ir.Assign object at 0x7526c4f4ff40>, 127)], '$phi80.0.1': [(<numba.core.ir.Assign object at 0x7526c4f3dee0>, 0)], '$phi82.1.1': [(<numba.core.ir.Assign object at 0x7526c4f3e130>, 80)], 'bool22': [(<numba.core.ir.Assign object at 0x7526c4fad0a0>, 90)], 'bool28': [(<numba.core.ir.Assign object at 0x7526c4fbdc40>, 91)], 'bool60': [(<numba.core.ir.Assign object at 0x7526c4f4c5b0>, 127)], 'bool66': [(<numba.core.ir.Assign object at 0x7526c4f5c190>, 131)], 'bool80': [(<numba.core.ir.Assign object at 0x7526c4f747f0>, 165)], 'full_shape0': [(<numba.core.ir.Assign object at 0x7526c4f3e430>, 0)], 'index00': [(<numba.core.ir.Assign object at 0x7526c4ecee50>, 82)], 'out0': [(<numba.core.ir.Assign object at 0x7526c4f3d640>, 0)], 'stencil_index': [(<numba.core.ir.Assign object at 0x7526c4f3d250>, 90), (<numba.core.ir.Assign object at 0x7526c4f3d370>, 127)], 'threshold': [(<numba.core.ir.Assign object at 0x7526c4f3e7f0>, 0)], 'x': [(<numba.core.ir.Assign object at 0x7526c4f3e910>, 0)], 'x0': [(<numba.core.ir.Assign object at 0x7526c4f3d310>, 90), (<numba.core.ir.Assign object at 0x7526c5023580>, 121)], 'x1': [(<numba.core.ir.Assign object at 0x7526c4f3d430>, 127), (<numba.core.ir.Assign object at 0x7526c4f6dd60>, 159)], 'zero_pos': [(<numba.core.ir.Assign object at 0x7526c4f3e6d0>, 0)]}) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | SSA violators <numba.core.utils.OrderedSet object at 0x7526c4ed4d90> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Fix SSA violator on var stencil_index 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | first assign: stencil_index 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: stencil_index = $const4.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const42.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: stencil_index.1 = $const42.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>, {90: [<numba.core.ir.Assign object at 0x7526c4ee9f40>], 127: [<numba.core.ir.Assign object at 0x7526c4ee9130>]}) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='stencil_index' stmt=x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='stencil_index' stmt=x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ed46a0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Fix SSA violator on var x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | first assign: x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: x0.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4400> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>, {90: [<numba.core.ir.Assign object at 0x7526c4ee9640>], 121: [<numba.core.ir.Assign object at 0x7526c4ee99d0>]}) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$phi24.0 = x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$26compare_op.2 = x0 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 91 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 90 from label 91 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 169 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 165 from label 169 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 127 from label 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | insert phi node x0.2 = phi(incoming_values=[], incoming_blocks=[]) at 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 90 from label 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x0.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 91 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 91 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 90 from label 91 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 165 from label 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 127 from label 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9fd0> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Fix SSA violator on var x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0.2 = phi(incoming_values=[Var(x0, audio.py:1147), Var(x0.1, audio.py:1149), Var(x0, audio.py:1147)], incoming_blocks=[123, 121, 91]) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | first assign: x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: x1.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x7526c4ed4430> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>, {127: [<numba.core.ir.Assign object at 0x7526c4ee9490>], 159: [<numba.core.ir.Assign object at 0x7526c4ee9970>]}) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x0.2 = phi(incoming_values=[Var(x0, audio.py:1147), Var(x0.1, audio.py:1149), Var(x0, audio.py:1147)], incoming_blocks=[123, 121, 91]) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$phi62.0 = x1 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$64compare_op.2 = x1 <= threshold 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 127 from label 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: x1.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 169 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 165 from label 169 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | insert phi node x1.2 = phi(incoming_values=[], incoming_blocks=[]) at 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 127 from label 161 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 127 from label 131 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 127 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 159 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | incoming_def x1.1 = const(int, 0) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: $96call_method.7 = call $92load_method.5(x1.2, func=$92load_method.5, args=[Var(x1.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_top label 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | idom 165 from label 173 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | find_def_from_bottom label 165 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | replaced with: $116call_method.7 = call $112load_method.5(x1.2, func=$112load_method.5, args=[Var(x1.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x7526c4ee9e80> 2025-01-23 20:40:52 | DEBUG | numba.core.ssa | on stmt: jump 80 Due to a bug fix in https://github.com/huggingface/transformers/pull/28687 transcription using a multilingual Whisper will default to language detection followed by transcription instead of translation to English.This might be a breaking change for your use case. If you want to instead always translate your audio to English, make sure to pass `language='en'`.
Prediction
ttsds/amphion_valle:ea4a4a593f9692b7c796e23f1a4b4cbdd64b346bb67e2185688719ebe5b3a8e2IDxte3knd4znrme0cmjdyrka3ge0StatusSucceededSourceWebHardwareL40STotal durationCreatedInput
- text
- The quick brown fox jumped over the lazy dog.
- model
- valle_v1_medium
- speaker_reference
- Video Player is loading.Current Time 00:00:000/Duration 00:00:000Loaded: 0%Stream Type LIVERemaining Time -00:00:0001x
- Chapters
- descriptions off, selected
- captions settings, opens captions settings dialog
- captions off, selected
This is a modal window.
Beginning of dialog window. Escape will cancel and close the window.
End of dialog window.
{ "text": "The quick brown fox jumped over the lazy dog.", "model": "valle_v1_medium", "speaker_reference": "https://replicate.delivery/pbxt/MN7y14TBntirZOHMndN2DuLbqPPeHrPwBlGZKCBNO56KTfjj/example%281%29.wav" }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run ttsds/amphion_valle using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "ttsds/amphion_valle:ea4a4a593f9692b7c796e23f1a4b4cbdd64b346bb67e2185688719ebe5b3a8e2", { input: { text: "The quick brown fox jumped over the lazy dog.", model: "valle_v1_medium", speaker_reference: "https://replicate.delivery/pbxt/MN7y14TBntirZOHMndN2DuLbqPPeHrPwBlGZKCBNO56KTfjj/example%281%29.wav" } } ); // To access the file URL: console.log(output.url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run ttsds/amphion_valle using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "ttsds/amphion_valle:ea4a4a593f9692b7c796e23f1a4b4cbdd64b346bb67e2185688719ebe5b3a8e2", input={ "text": "The quick brown fox jumped over the lazy dog.", "model": "valle_v1_medium", "speaker_reference": "https://replicate.delivery/pbxt/MN7y14TBntirZOHMndN2DuLbqPPeHrPwBlGZKCBNO56KTfjj/example%281%29.wav" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run ttsds/amphion_valle using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "ttsds/amphion_valle:ea4a4a593f9692b7c796e23f1a4b4cbdd64b346bb67e2185688719ebe5b3a8e2", "input": { "text": "The quick brown fox jumped over the lazy dog.", "model": "valle_v1_medium", "speaker_reference": "https://replicate.delivery/pbxt/MN7y14TBntirZOHMndN2DuLbqPPeHrPwBlGZKCBNO56KTfjj/example%281%29.wav" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
Video Player is loading.Current Time 00:00:000/Duration 00:00:000Loaded: 0%Stream Type LIVERemaining Time -00:00:0001x- Chapters
- descriptions off, selected
- captions settings, opens captions settings dialog
- captions off, selected
This is a modal window.
Beginning of dialog window. Escape will cancel and close the window.
End of dialog window.
{ "completed_at": "2025-01-23T14:07:56.040557Z", "created_at": "2025-01-23T14:07:52.573000Z", "data_removed": false, "error": null, "id": "xte3knd4znrme0cmjdyrka3ge0", "input": { "text": "The quick brown fox jumped over the lazy dog.", "model": "valle_v1_medium", "speaker_reference": "https://replicate.delivery/pbxt/MN7y14TBntirZOHMndN2DuLbqPPeHrPwBlGZKCBNO56KTfjj/example%281%29.wav" }, "logs": "2025-01-23 14:07:53 | WARNING | phonemizer | words count mismatch on 100.0% of the lines (1/1)\n2025-01-23 14:07:53 | WARNING | phonemizer | words count mismatch on 100.0% of the lines (1/1)\nSaved to: /results/bca60574680df7bd102d430a043701d2237bd8590360263e5d0005e11abbed6e/single", "metrics": { "predict_time": 3.457388687, "total_time": 3.467557 }, "output": "https://replicate.delivery/xezq/pDZCIRjpYXYHKxtUayYR95u4asQPJ5fhVXeKVfwFw2F55ffgC/test_pred.wav", "started_at": "2025-01-23T14:07:52.583168Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-wyglzzobtitl33xn3xl5r4nkgw2hyp22gqh6jnjevrdrdxez55wq", "get": "https://api.replicate.com/v1/predictions/xte3knd4znrme0cmjdyrka3ge0", "cancel": "https://api.replicate.com/v1/predictions/xte3knd4znrme0cmjdyrka3ge0/cancel" }, "version": "ea4a4a593f9692b7c796e23f1a4b4cbdd64b346bb67e2185688719ebe5b3a8e2" }
Generated in2025-01-23 14:07:53 | WARNING | phonemizer | words count mismatch on 100.0% of the lines (1/1) 2025-01-23 14:07:53 | WARNING | phonemizer | words count mismatch on 100.0% of the lines (1/1) Saved to: /results/bca60574680df7bd102d430a043701d2237bd8590360263e5d0005e11abbed6e/single
Prediction
ttsds/amphion_valle:b533d19a628be53af05ebbc596b8fb84bf9ba0aec1e873162e56a0457d87e8c4IDdp3w9e8y8hrma0cmjeat6egkvwStatusSucceededSourceWebHardwareL40STotal durationCreatedInput
- text
- The quick brown fox jumped over the lazy dog.
- model
- valle_v2
- speaker_reference
- Video Player is loading.Current Time 00:00:000/Duration 00:00:000Loaded: 0%Stream Type LIVERemaining Time -00:00:0001x
- Chapters
- descriptions off, selected
- captions settings, opens captions settings dialog
- captions off, selected
This is a modal window.
Beginning of dialog window. Escape will cancel and close the window.
End of dialog window.
{ "text": "The quick brown fox jumped over the lazy dog.", "model": "valle_v2", "speaker_reference": "https://replicate.delivery/pbxt/MN7xAi6gE38grU2jIsRpzx43qsVuzPChncdGx6viarnNSXIh/example%281%29.wav" }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run ttsds/amphion_valle using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "ttsds/amphion_valle:b533d19a628be53af05ebbc596b8fb84bf9ba0aec1e873162e56a0457d87e8c4", { input: { text: "The quick brown fox jumped over the lazy dog.", model: "valle_v2", speaker_reference: "https://replicate.delivery/pbxt/MN7xAi6gE38grU2jIsRpzx43qsVuzPChncdGx6viarnNSXIh/example%281%29.wav" } } ); // To access the file URL: console.log(output.url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run ttsds/amphion_valle using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "ttsds/amphion_valle:b533d19a628be53af05ebbc596b8fb84bf9ba0aec1e873162e56a0457d87e8c4", input={ "text": "The quick brown fox jumped over the lazy dog.", "model": "valle_v2", "speaker_reference": "https://replicate.delivery/pbxt/MN7xAi6gE38grU2jIsRpzx43qsVuzPChncdGx6viarnNSXIh/example%281%29.wav" } ) print(output)
To learn more, take a look at the guide on getting started with Python.
Run ttsds/amphion_valle using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "ttsds/amphion_valle:b533d19a628be53af05ebbc596b8fb84bf9ba0aec1e873162e56a0457d87e8c4", "input": { "text": "The quick brown fox jumped over the lazy dog.", "model": "valle_v2", "speaker_reference": "https://replicate.delivery/pbxt/MN7xAi6gE38grU2jIsRpzx43qsVuzPChncdGx6viarnNSXIh/example%281%29.wav" } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
Video Player is loading.Current Time 00:00:000/Duration 00:00:000Loaded: 0%Stream Type LIVERemaining Time -00:00:0001x- Chapters
- descriptions off, selected
- captions settings, opens captions settings dialog
- captions off, selected
This is a modal window.
Beginning of dialog window. Escape will cancel and close the window.
End of dialog window.
{ "completed_at": "2025-01-23T14:35:42.875822Z", "created_at": "2025-01-23T14:33:30.948000Z", "data_removed": false, "error": null, "id": "dp3w9e8y8hrma0cmjeat6egkvw", "input": { "text": "The quick brown fox jumped over the lazy dog.", "model": "valle_v2", "speaker_reference": "https://replicate.delivery/pbxt/MN7xAi6gE38grU2jIsRpzx43qsVuzPChncdGx6viarnNSXIh/example%281%29.wav" }, "logs": "2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | bytecode dump:\n> 0\tNOP(arg=None, lineno=1144)\n2\tLOAD_FAST(arg=0, lineno=1147)\n4\tLOAD_CONST(arg=1, lineno=1147)\n6\tBINARY_SUBSCR(arg=None, lineno=1147)\n8\tSTORE_FAST(arg=3, lineno=1147)\n10\tLOAD_FAST(arg=1, lineno=1148)\n12\tUNARY_NEGATIVE(arg=None, lineno=1148)\n14\tLOAD_FAST(arg=3, lineno=1148)\n16\tDUP_TOP(arg=None, lineno=1148)\n18\tROT_THREE(arg=None, lineno=1148)\n20\tCOMPARE_OP(arg=1, lineno=1148)\n22\tPOP_JUMP_IF_FALSE(arg=32, lineno=1148)\n24\tLOAD_FAST(arg=1, lineno=1148)\n26\tCOMPARE_OP(arg=1, lineno=1148)\n28\tPOP_JUMP_IF_FALSE(arg=40, lineno=1148)\n30\tJUMP_FORWARD(arg=4, lineno=1148)\n> 32\tPOP_TOP(arg=None, lineno=1148)\n34\tJUMP_FORWARD(arg=4, lineno=1148)\n> 36\tLOAD_CONST(arg=1, lineno=1149)\n38\tSTORE_FAST(arg=3, lineno=1149)\n> 40\tLOAD_FAST(arg=0, lineno=1151)\n42\tLOAD_CONST(arg=2, lineno=1151)\n44\tBINARY_SUBSCR(arg=None, lineno=1151)\n46\tSTORE_FAST(arg=4, lineno=1151)\n48\tLOAD_FAST(arg=1, lineno=1152)\n50\tUNARY_NEGATIVE(arg=None, lineno=1152)\n52\tLOAD_FAST(arg=4, lineno=1152)\n54\tDUP_TOP(arg=None, lineno=1152)\n56\tROT_THREE(arg=None, lineno=1152)\n58\tCOMPARE_OP(arg=1, lineno=1152)\n60\tPOP_JUMP_IF_FALSE(arg=70, lineno=1152)\n62\tLOAD_FAST(arg=1, lineno=1152)\n64\tCOMPARE_OP(arg=1, lineno=1152)\n66\tPOP_JUMP_IF_FALSE(arg=78, lineno=1152)\n68\tJUMP_FORWARD(arg=4, lineno=1152)\n> 70\tPOP_TOP(arg=None, lineno=1152)\n72\tJUMP_FORWARD(arg=4, lineno=1152)\n> 74\tLOAD_CONST(arg=1, lineno=1153)\n76\tSTORE_FAST(arg=4, lineno=1153)\n> 78\tLOAD_FAST(arg=2, lineno=1155)\n80\tPOP_JUMP_IF_FALSE(arg=102, lineno=1155)\n82\tLOAD_GLOBAL(arg=0, lineno=1156)\n84\tLOAD_METHOD(arg=1, lineno=1156)\n86\tLOAD_FAST(arg=3, lineno=1156)\n88\tCALL_METHOD(arg=1, lineno=1156)\n90\tLOAD_GLOBAL(arg=0, lineno=1156)\n92\tLOAD_METHOD(arg=1, lineno=1156)\n94\tLOAD_FAST(arg=4, lineno=1156)\n96\tCALL_METHOD(arg=1, lineno=1156)\n98\tCOMPARE_OP(arg=3, lineno=1156)\n100\tRETURN_VALUE(arg=None, lineno=1156)\n> 102\tLOAD_GLOBAL(arg=0, lineno=1158)\n104\tLOAD_METHOD(arg=2, lineno=1158)\n106\tLOAD_FAST(arg=3, lineno=1158)\n108\tCALL_METHOD(arg=1, lineno=1158)\n110\tLOAD_GLOBAL(arg=0, lineno=1158)\n112\tLOAD_METHOD(arg=2, lineno=1158)\n114\tLOAD_FAST(arg=4, lineno=1158)\n116\tCALL_METHOD(arg=1, lineno=1158)\n118\tCOMPARE_OP(arg=3, lineno=1158)\n120\tRETURN_VALUE(arg=None, lineno=1158)\n122\tLOAD_CONST(arg=3, lineno=1158)\n124\tRETURN_VALUE(arg=None, lineno=1158)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=0 nstack_initial=0)])\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack: []\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=0 nstack_initial=0)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=0, inst=NOP(arg=None, lineno=1144)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=2, inst=LOAD_FAST(arg=0, lineno=1147)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=4, inst=LOAD_CONST(arg=1, lineno=1147)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$x2.0']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=6, inst=BINARY_SUBSCR(arg=None, lineno=1147)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$x2.0', '$const4.1']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=8, inst=STORE_FAST(arg=3, lineno=1147)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$6binary_subscr.2']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=10, inst=LOAD_FAST(arg=1, lineno=1148)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=12, inst=UNARY_NEGATIVE(arg=None, lineno=1148)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$threshold10.3']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=14, inst=LOAD_FAST(arg=3, lineno=1148)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$12unary_negative.4']\n2025-01-23 14:35:34 | DEBUG | \n[...] log volume exceeds 256KiB size limit: truncating logs [...]\n-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const42.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: stencil_index.1 = $const42.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>,\n{90: [<numba.core.ir.Assign object at 0x76b524906c70>],\n127: [<numba.core.ir.Assign object at 0x76b5249061f0>]})\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='stencil_index' stmt=x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='stencil_index' stmt=x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Fix SSA violator on var x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | first assign: x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: x0.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>,\n{90: [<numba.core.ir.Assign object at 0x76b524906f10>],\n121: [<numba.core.ir.Assign object at 0x76b524906b20>]})\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$phi24.0 = x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$26compare_op.2 = x0 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 91\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 90 from label 91\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 169\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 165 from label 169\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 127 from label 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | insert phi node x0.2 = phi(incoming_values=[], incoming_blocks=[]) at 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 90 from label 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x0.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 91\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 91\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 90 from label 91\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 165 from label 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 127 from label 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Fix SSA violator on var x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0.2 = phi(incoming_values=[Var(x0, audio.py:1147), Var(x0.1, audio.py:1149), Var(x0, audio.py:1147)], incoming_blocks=[123, 121, 91])\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | first assign: x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: x1.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>,\n{127: [<numba.core.ir.Assign object at 0x76b524906850>],\n159: [<numba.core.ir.Assign object at 0x76b5249201c0>]})\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0.2 = phi(incoming_values=[Var(x0, audio.py:1147), Var(x0.1, audio.py:1149), Var(x0, audio.py:1147)], incoming_blocks=[123, 121, 91])\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$phi62.0 = x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$64compare_op.2 = x1 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 127 from label 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 169\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 165 from label 169\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | insert phi node x1.2 = phi(incoming_values=[], incoming_blocks=[]) at 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 127 from label 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 127 from label 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x1.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: $96call_method.7 = call $92load_method.5(x1.2, func=$92load_method.5, args=[Var(x1.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 165 from label 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: $116call_method.7 = call $112load_method.5(x1.2, func=$112load_method.5, args=[Var(x1.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | bytecode dump:\n> 0\tNOP(arg=None, lineno=1161)\n2\tLOAD_GLOBAL(arg=0, lineno=1177)\n4\tLOAD_FAST(arg=0, lineno=1177)\n6\tLOAD_FAST(arg=1, lineno=1177)\n8\tLOAD_FAST(arg=2, lineno=1177)\n10\tCALL_FUNCTION(arg=3, lineno=1177)\n12\tLOAD_FAST(arg=3, lineno=1177)\n14\tLOAD_CONST(arg=1, lineno=1177)\n16\tLOAD_CONST(arg=1, lineno=1177)\n18\tBUILD_SLICE(arg=2, lineno=1177)\n20\tSTORE_SUBSCR(arg=None, lineno=1177)\n22\tLOAD_CONST(arg=1, lineno=1177)\n24\tRETURN_VALUE(arg=None, lineno=1177)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=0 nstack_initial=0)])\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack: []\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=0 nstack_initial=0)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=0, inst=NOP(arg=None, lineno=1161)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=2, inst=LOAD_GLOBAL(arg=0, lineno=1177)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=4, inst=LOAD_FAST(arg=0, lineno=1177)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$2load_global.0']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=6, inst=LOAD_FAST(arg=1, lineno=1177)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$2load_global.0', '$x4.1']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=8, inst=LOAD_FAST(arg=2, lineno=1177)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$2load_global.0', '$x4.1', '$threshold6.2']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=10, inst=CALL_FUNCTION(arg=3, lineno=1177)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$2load_global.0', '$x4.1', '$threshold6.2', '$zero_pos8.3']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=12, inst=LOAD_FAST(arg=3, lineno=1177)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$10call_function.4']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=14, inst=LOAD_CONST(arg=1, lineno=1177)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$10call_function.4', '$y12.5']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=16, inst=LOAD_CONST(arg=1, lineno=1177)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$10call_function.4', '$y12.5', '$const14.6']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=18, inst=BUILD_SLICE(arg=2, lineno=1177)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$10call_function.4', '$y12.5', '$const14.6', '$const16.7']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=20, inst=STORE_SUBSCR(arg=None, lineno=1177)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$10call_function.4', '$y12.5', '$18build_slice.9']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=22, inst=LOAD_CONST(arg=1, lineno=1177)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=24, inst=RETURN_VALUE(arg=None, lineno=1177)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$const22.10']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | end state. edges=[]\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | -------------------------Prune PHIs-------------------------\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | Used_phis: defaultdict(<class 'set'>, {State(pc_initial=0 nstack_initial=0): set()})\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | defmap: {}\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | phismap: defaultdict(<class 'set'>, {})\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | changing phismap: defaultdict(<class 'set'>, {})\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | keep phismap: {}\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | new_out: defaultdict(<class 'dict'>, {})\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | ----------------------DONE Prune PHIs-----------------------\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | block_infos State(pc_initial=0 nstack_initial=0):\nAdaptBlockInfo(insts=((0, {}), (2, {'res': '$2load_global.0'}), (4, {'res': '$x4.1'}), (6, {'res': '$threshold6.2'}), (8, {'res': '$zero_pos8.3'}), (10, {'func': '$2load_global.0', 'args': ['$x4.1', '$threshold6.2', '$zero_pos8.3'], 'res': '$10call_function.4'}), (12, {'res': '$y12.5'}), (14, {'res': '$const14.6'}), (16, {'res': '$const16.7'}), (18, {'start': '$const14.6', 'stop': '$const16.7', 'step': None, 'res': '$18build_slice.9', 'slicevar': '$18build_slice.8'}), (20, {'target': '$y12.5', 'index': '$18build_slice.9', 'value': '$10call_function.4'}), (22, {'res': '$const22.10'}), (24, {'retval': '$const22.10', 'castval': '$24return_value.11'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={})\n2025-01-23 14:35:34 | DEBUG | numba.core.interpreter | label 0:\nx = arg(0, name=x) ['x']\nthreshold = arg(1, name=threshold) ['threshold']\nzero_pos = arg(2, name=zero_pos) ['zero_pos']\ny = arg(3, name=y) ['y']\n$2load_global.0 = global(_zc_stencil: <numba.stencils.stencil.StencilFunc object at 0x76b524b19040>) ['$2load_global.0']\n$10call_function.4 = call $2load_global.0(x, threshold, zero_pos, func=$2load_global.0, args=[Var(x, audio.py:1161), Var(threshold, audio.py:1161), Var(zero_pos, audio.py:1161)], kws=(), vararg=None, varkwarg=None, target=None) ['$10call_function.4', '$2load_global.0', 'threshold', 'x', 'zero_pos']\n$const14.6 = const(NoneType, None) ['$const14.6']\n$const16.7 = const(NoneType, None) ['$const16.7']\n$18build_slice.8 = global(slice: <class 'slice'>) ['$18build_slice.8']\n$18build_slice.9 = call $18build_slice.8($const14.6, $const16.7, func=$18build_slice.8, args=(Var($const14.6, audio.py:1177), Var($const16.7, audio.py:1177)), kws=(), vararg=None, varkwarg=None, target=None) ['$18build_slice.8', '$18build_slice.9', '$const14.6', '$const16.7']\ny[$18build_slice.9] = $10call_function.4 ['$10call_function.4', '$18build_slice.9', 'y']\n$const22.10 = const(NoneType, None) ['$const22.10']\n$24return_value.11 = cast(value=$const22.10) ['$24return_value.11', '$const22.10']\nreturn $24return_value.11 ['$24return_value.11']\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524c35e20>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: y = arg(3, name=y)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $2load_global.0 = global(_zc_stencil: <numba.stencils.stencil.StencilFunc object at 0x76b524b19040>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10call_function.4 = call $2load_global.0(x, threshold, zero_pos, func=$2load_global.0, args=[Var(x, audio.py:1161), Var(threshold, audio.py:1161), Var(zero_pos, audio.py:1161)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const14.6 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const16.7 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $18build_slice.8 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $18build_slice.9 = call $18build_slice.8($const14.6, $const16.7, func=$18build_slice.8, args=(Var($const14.6, audio.py:1177), Var($const16.7, audio.py:1177)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: y[slice(None, None, None)] = $10call_function.4\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const22.10 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $24return_value.11 = cast(value=$const22.10)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $24return_value.11\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | defs defaultdict(<class 'list'>,\n{'$10call_function.4': [(<numba.core.ir.Assign object at 0x76b5247043d0>,\n0)],\n'$18build_slice.8': [(<numba.core.ir.Assign object at 0x76b524704910>,\n0)],\n'$18build_slice.9': [(<numba.core.ir.Assign object at 0x76b524704a30>,\n0)],\n'$24return_value.11': [(<numba.core.ir.Assign object at 0x76b524704df0>,\n0)],\n'$2load_global.0': [(<numba.core.ir.Assign object at 0x76b52478de50>,\n0)],\n'$const14.6': [(<numba.core.ir.Assign object at 0x76b524704610>,\n0)],\n'$const16.7': [(<numba.core.ir.Assign object at 0x76b524704790>,\n0)],\n'$const22.10': [(<numba.core.ir.Assign object at 0x76b524704c70>,\n0)],\n'threshold': [(<numba.core.ir.Assign object at 0x76b52478da90>,\n0)],\n'x': [(<numba.core.ir.Assign object at 0x76b52478d370>, 0)],\n'y': [(<numba.core.ir.Assign object at 0x76b52478dcd0>, 0)],\n'zero_pos': [(<numba.core.ir.Assign object at 0x76b52478dbb0>,\n0)]})\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | SSA violators <numba.core.utils.OrderedSet object at 0x76b524c35e20>\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | bytecode dump:\n> 0\tNOP(arg=None, lineno=1)\n2\tLOAD_FAST(arg=0, lineno=2)\n4\tLOAD_ATTR(arg=0, lineno=2)\n6\tSTORE_FAST(arg=3, lineno=2)\n8\tLOAD_GLOBAL(arg=1, lineno=3)\n10\tLOAD_ATTR(arg=2, lineno=3)\n12\tLOAD_FAST(arg=3, lineno=3)\n14\tLOAD_GLOBAL(arg=1, lineno=3)\n16\tLOAD_ATTR(arg=3, lineno=3)\n18\tLOAD_CONST(arg=1, lineno=3)\n20\tCALL_FUNCTION_KW(arg=2, lineno=3)\n22\tSTORE_FAST(arg=4, lineno=3)\n24\tLOAD_CONST(arg=2, lineno=4)\n26\tLOAD_FAST(arg=4, lineno=4)\n28\tLOAD_CONST(arg=0, lineno=4)\n30\tLOAD_CONST(arg=3, lineno=4)\n32\tBUILD_SLICE(arg=2, lineno=4)\n34\tSTORE_SUBSCR(arg=None, lineno=4)\n36\tLOAD_CONST(arg=2, lineno=5)\n38\tLOAD_FAST(arg=4, lineno=5)\n40\tLOAD_CONST(arg=2, lineno=5)\n42\tLOAD_CONST(arg=0, lineno=5)\n44\tBUILD_SLICE(arg=2, lineno=5)\n46\tSTORE_SUBSCR(arg=None, lineno=5)\n48\tLOAD_GLOBAL(arg=4, lineno=6)\n50\tLOAD_GLOBAL(arg=5, lineno=6)\n52\tLOAD_CONST(arg=2, lineno=6)\n54\tLOAD_CONST(arg=4, lineno=6)\n56\tCALL_FUNCTION(arg=2, lineno=6)\n58\tUNARY_NEGATIVE(arg=None, lineno=6)\n60\tLOAD_FAST(arg=3, lineno=6)\n62\tLOAD_CONST(arg=2, lineno=6)\n64\tBINARY_SUBSCR(arg=None, lineno=6)\n66\tLOAD_GLOBAL(arg=6, lineno=6)\n68\tLOAD_CONST(arg=2, lineno=6)\n70\tLOAD_CONST(arg=2, lineno=6)\n72\tCALL_FUNCTION(arg=2, lineno=6)\n74\tBINARY_SUBTRACT(arg=None, lineno=6)\n76\tCALL_FUNCTION(arg=2, lineno=6)\n78\tGET_ITER(arg=None, lineno=6)\n> 80\tFOR_ITER(arg=8, lineno=6)\n82\tSTORE_FAST(arg=5, lineno=6)\n84\tLOAD_CONST(arg=2, lineno=7)\n86\tSTORE_FAST(arg=6, lineno=7)\n88\tJUMP_ABSOLUTE(arg=80, lineno=7)\n> 90\tLOAD_FAST(arg=4, lineno=8)\n92\tRETURN_VALUE(arg=None, lineno=8)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=0 nstack_initial=0)])\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack: []\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=0 nstack_initial=0)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=0, inst=NOP(arg=None, lineno=1)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=2, inst=LOAD_FAST(arg=0, lineno=2)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=4, inst=LOAD_ATTR(arg=0, lineno=2)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$x2.0']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=6, inst=STORE_FAST(arg=3, lineno=2)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$4load_attr.1']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=8, inst=LOAD_GLOBAL(arg=1, lineno=3)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=10, inst=LOAD_ATTR(arg=2, lineno=3)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$8load_global.2']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=12, inst=LOAD_FAST(arg=3, lineno=3)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$10load_attr.3']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=14, inst=LOAD_GLOBAL(arg=1, lineno=3)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$10load_attr.3', '$full_shape012.4']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=16, inst=LOAD_ATTR(arg=3, lineno=3)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$10load_attr.3', '$full_shape012.4', '$14load_global.5']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=18, inst=LOAD_CONST(arg=1, lineno=3)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$10load_attr.3', '$full_shape012.4', '$16load_attr.6']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=20, inst=CALL_FUNCTION_KW(arg=2, lineno=3)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$10load_attr.3', '$full_shape012.4', '$16load_attr.6', '$const18.7']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=22, inst=STORE_FAST(arg=4, lineno=3)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$20call_function_kw.8']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=24, inst=LOAD_CONST(arg=2, lineno=4)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=26, inst=LOAD_FAST(arg=4, lineno=4)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$const24.9']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=28, inst=LOAD_CONST(arg=0, lineno=4)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$const24.9', '$out026.10']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=30, inst=LOAD_CONST(arg=3, lineno=4)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$const24.9', '$out026.10', '$const28.11']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=32, inst=BUILD_SLICE(arg=2, lineno=4)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$const24.9', '$out026.10', '$const28.11', '$const30.12']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=34, inst=STORE_SUBSCR(arg=None, lineno=4)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$const24.9', '$out026.10', '$32build_slice.14']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=36, inst=LOAD_CONST(arg=2, lineno=5)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=38, inst=LOAD_FAST(arg=4, lineno=5)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$const36.15']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=40, inst=LOAD_CONST(arg=2, lineno=5)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$const36.15', '$out038.16']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=42, inst=LOAD_CONST(arg=0, lineno=5)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$const36.15', '$out038.16', '$const40.17']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=44, inst=BUILD_SLICE(arg=2, lineno=5)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$const36.15', '$out038.16', '$const40.17', '$const42.18']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=46, inst=STORE_SUBSCR(arg=None, lineno=5)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$const36.15', '$out038.16', '$44build_slice.20']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=48, inst=LOAD_GLOBAL(arg=4, lineno=6)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=50, inst=LOAD_GLOBAL(arg=5, lineno=6)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=52, inst=LOAD_CONST(arg=2, lineno=6)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$50load_global.22']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=54, inst=LOAD_CONST(arg=4, lineno=6)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$50load_global.22', '$const52.23']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=56, inst=CALL_FUNCTION(arg=2, lineno=6)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$50load_global.22', '$const52.23', '$const54.24']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=58, inst=UNARY_NEGATIVE(arg=None, lineno=6)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$56call_function.25']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=60, inst=LOAD_FAST(arg=3, lineno=6)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=62, inst=LOAD_CONST(arg=2, lineno=6)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$full_shape060.27']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=64, inst=BINARY_SUBSCR(arg=None, lineno=6)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$full_shape060.27', '$const62.28']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=66, inst=LOAD_GLOBAL(arg=6, lineno=6)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$64binary_subscr.29']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=68, inst=LOAD_CONST(arg=2, lineno=6)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$64binary_subscr.29', '$66load_global.30']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=70, inst=LOAD_CONST(arg=2, lineno=6)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$64binary_subscr.29', '$66load_global.30', '$const68.31']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=72, inst=CALL_FUNCTION(arg=2, lineno=6)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$64binary_subscr.29', '$66load_global.30', '$const68.31', '$const70.32']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=74, inst=BINARY_SUBTRACT(arg=None, lineno=6)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$64binary_subscr.29', '$72call_function.33']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=76, inst=CALL_FUNCTION(arg=2, lineno=6)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$74binary_subtract.34']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=78, inst=GET_ITER(arg=None, lineno=6)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$76call_function.35']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | end state. edges=[Edge(pc=80, stack=('$78get_iter.36',), blockstack=(), npush=0)]\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=80 nstack_initial=1)])\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack: ['$phi80.0']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=80 nstack_initial=1)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=80, inst=FOR_ITER(arg=8, lineno=6)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$phi80.0']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | end state. edges=[Edge(pc=90, stack=(), blockstack=(), npush=0), Edge(pc=82, stack=('$phi80.0', '$80for_iter.2'), blockstack=(), npush=0)]\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=90 nstack_initial=0), State(pc_initial=82 nstack_initial=2)])\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack: []\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=90 nstack_initial=0)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=90, inst=LOAD_FAST(arg=4, lineno=8)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack []\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=92, inst=RETURN_VALUE(arg=None, lineno=8)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$out090.0']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | end state. edges=[]\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=82 nstack_initial=2)])\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack: ['$phi82.0', '$phi82.1']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=82 nstack_initial=2)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=82, inst=STORE_FAST(arg=5, lineno=6)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$phi82.0', '$phi82.1']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=84, inst=LOAD_CONST(arg=2, lineno=7)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$phi82.0']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=86, inst=STORE_FAST(arg=6, lineno=7)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$phi82.0', '$const84.2']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=88, inst=JUMP_ABSOLUTE(arg=80, lineno=7)\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$phi82.0']\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | end state. edges=[Edge(pc=80, stack=('$phi82.0',), blockstack=(), npush=0)]\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=80 nstack_initial=1)])\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | -------------------------Prune PHIs-------------------------\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | Used_phis: defaultdict(<class 'set'>,\n{State(pc_initial=0 nstack_initial=0): set(),\nState(pc_initial=80 nstack_initial=1): {'$phi80.0'},\nState(pc_initial=82 nstack_initial=2): {'$phi82.1'},\nState(pc_initial=90 nstack_initial=0): set()})\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | defmap: {'$phi80.0': State(pc_initial=0 nstack_initial=0),\n'$phi82.1': State(pc_initial=80 nstack_initial=1)}\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | phismap: defaultdict(<class 'set'>,\n{'$phi80.0': {('$78get_iter.36',\nState(pc_initial=0 nstack_initial=0)),\n('$phi82.0', State(pc_initial=82 nstack_initial=2))},\n'$phi82.0': {('$phi80.0', State(pc_initial=80 nstack_initial=1))},\n'$phi82.1': {('$80for_iter.2',\nState(pc_initial=80 nstack_initial=1))}})\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | changing phismap: defaultdict(<class 'set'>,\n{'$phi80.0': {('$78get_iter.36',\nState(pc_initial=0 nstack_initial=0)),\n('$phi80.0', State(pc_initial=80 nstack_initial=1))},\n'$phi82.0': {('$78get_iter.36',\nState(pc_initial=0 nstack_initial=0))},\n'$phi82.1': {('$80for_iter.2',\nState(pc_initial=80 nstack_initial=1))}})\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | changing phismap: defaultdict(<class 'set'>,\n{'$phi80.0': {('$78get_iter.36',\nState(pc_initial=0 nstack_initial=0))},\n'$phi82.0': {('$78get_iter.36',\nState(pc_initial=0 nstack_initial=0))},\n'$phi82.1': {('$80for_iter.2',\nState(pc_initial=80 nstack_initial=1))}})\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | changing phismap: defaultdict(<class 'set'>,\n{'$phi80.0': {('$78get_iter.36',\nState(pc_initial=0 nstack_initial=0))},\n'$phi82.0': {('$78get_iter.36',\nState(pc_initial=0 nstack_initial=0))},\n'$phi82.1': {('$80for_iter.2',\nState(pc_initial=80 nstack_initial=1))}})\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | keep phismap: {'$phi80.0': {('$78get_iter.36', State(pc_initial=0 nstack_initial=0))},\n'$phi82.1': {('$80for_iter.2', State(pc_initial=80 nstack_initial=1))}}\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | new_out: defaultdict(<class 'dict'>,\n{State(pc_initial=0 nstack_initial=0): {'$phi80.0': '$78get_iter.36'},\nState(pc_initial=80 nstack_initial=1): {'$phi82.1': '$80for_iter.2'}})\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | ----------------------DONE Prune PHIs-----------------------\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | block_infos State(pc_initial=0 nstack_initial=0):\nAdaptBlockInfo(insts=((0, {}), (2, {'res': '$x2.0'}), (4, {'item': '$x2.0', 'res': '$4load_attr.1'}), (6, {'value': '$4load_attr.1'}), (8, {'res': '$8load_global.2'}), (10, {'item': '$8load_global.2', 'res': '$10load_attr.3'}), (12, {'res': '$full_shape012.4'}), (14, {'res': '$14load_global.5'}), (16, {'item': '$14load_global.5', 'res': '$16load_attr.6'}), (18, {'res': '$const18.7'}), (20, {'func': '$10load_attr.3', 'args': ['$full_shape012.4', '$16load_attr.6'], 'names': '$const18.7', 'res': '$20call_function_kw.8'}), (22, {'value': '$20call_function_kw.8'}), (24, {'res': '$const24.9'}), (26, {'res': '$out026.10'}), (28, {'res': '$const28.11'}), (30, {'res': '$const30.12'}), (32, {'start': '$const28.11', 'stop': '$const30.12', 'step': None, 'res': '$32build_slice.14', 'slicevar': '$32build_slice.13'}), (34, {'target': '$out026.10', 'index': '$32build_slice.14', 'value': '$const24.9'}), (36, {'res': '$const36.15'}), (38, {'res': '$out038.16'}), (40, {'res': '$const40.17'}), (42, {'res': '$const42.18'}), (44, {'start': '$const40.17', 'stop': '$const42.18', 'step': None, 'res': '$44build_slice.20', 'slicevar': '$44build_slice.19'}), (46, {'target': '$out038.16', 'index': '$44build_slice.20', 'value': '$const36.15'}), (48, {'res': '$48load_global.21'}), (50, {'res': '$50load_global.22'}), (52, {'res': '$const52.23'}), (54, {'res': '$const54.24'}), (56, {'func': '$50load_global.22', 'args': ['$const52.23', '$const54.24'], 'res': '$56call_function.25'}), (58, {'value': '$56call_function.25', 'res': '$58unary_negative.26'}), (60, {'res': '$full_shape060.27'}), (62, {'res': '$const62.28'}), (64, {'index': '$const62.28', 'target': '$full_shape060.27', 'res': '$64binary_subscr.29'}), (66, {'res': '$66load_global.30'}), (68, {'res': '$const68.31'}), (70, {'res': '$const70.32'}), (72, {'func': '$66load_global.30', 'args': ['$const68.31', '$const70.32'], 'res': '$72call_function.33'}), (74, {'lhs': '$64binary_subscr.29', 'rhs': '$72call_function.33', 'res': '$74binary_subtract.34'}), (76, {'func': '$48load_global.21', 'args': ['$58unary_negative.26', '$74binary_subtract.34'], 'res': '$76call_function.35'}), (78, {'value': '$76call_function.35', 'res': '$78get_iter.36'})), outgoing_phis={'$phi80.0': '$78get_iter.36'}, blockstack=(), active_try_block=None, outgoing_edgepushed={80: ('$78get_iter.36',)})\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | block_infos State(pc_initial=80 nstack_initial=1):\nAdaptBlockInfo(insts=((80, {'iterator': '$phi80.0', 'pair': '$80for_iter.1', 'indval': '$80for_iter.2', 'pred': '$80for_iter.3'}),), outgoing_phis={'$phi82.1': '$80for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={90: (), 82: ('$phi80.0', '$80for_iter.2')})\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | block_infos State(pc_initial=82 nstack_initial=2):\nAdaptBlockInfo(insts=((82, {'value': '$phi82.1'}), (84, {'res': '$const84.2'}), (86, {'value': '$const84.2'}), (88, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={80: ('$phi82.0',)})\n2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | block_infos State(pc_initial=90 nstack_initial=0):\nAdaptBlockInfo(insts=((90, {'res': '$out090.0'}), (92, {'retval': '$out090.0', 'castval': '$92return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={})\n2025-01-23 14:35:34 | DEBUG | numba.core.interpreter | label 0:\nx = arg(0, name=x) ['x']\nthreshold = arg(1, name=threshold) ['threshold']\nzero_pos = arg(2, name=zero_pos) ['zero_pos']\nfull_shape0 = getattr(value=x, attr=shape) ['full_shape0', 'x']\n$8load_global.2 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) ['$8load_global.2']\n$10load_attr.3 = getattr(value=$8load_global.2, attr=empty) ['$10load_attr.3', '$8load_global.2']\n$14load_global.5 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) ['$14load_global.5']\n$16load_attr.6 = getattr(value=$14load_global.5, attr=bool_) ['$14load_global.5', '$16load_attr.6']\nout0 = call $10load_attr.3(full_shape0, func=$10load_attr.3, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6, <string>:3))], vararg=None, varkwarg=None, target=None) ['$10load_attr.3', '$16load_attr.6', 'full_shape0', 'out0']\n$const24.9 = const(int, 0) ['$const24.9']\n$const28.11 = const(NoneType, None) ['$const28.11']\n$const30.12 = const(int, 1) ['$const30.12']\n$32build_slice.13 = global(slice: <class 'slice'>) ['$32build_slice.13']\n$32build_slice.14 = call $32build_slice.13($const28.11, $const30.12, func=$32build_slice.13, args=(Var($const28.11, <string>:4), Var($const30.12, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) ['$32build_slice.13', '$32build_slice.14', '$const28.11', '$const30.12']\nout0[$32build_slice.14] = $const24.9 ['$32build_slice.14', '$const24.9', 'out0']\n$const36.15 = const(int, 0) ['$const36.15']\n$const40.17 = const(int, 0) ['$const40.17']\n$const42.18 = const(NoneType, None) ['$const42.18']\n$44build_slice.19 = global(slice: <class 'slice'>) ['$44build_slice.19']\n$44build_slice.20 = call $44build_slice.19($const40.17, $const42.18, func=$44build_slice.19, args=(Var($const40.17, <string>:5), Var($const42.18, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) ['$44build_slice.19', '$44build_slice.20', '$const40.17', '$const42.18']\nout0[$44build_slice.20] = $const36.15 ['$44build_slice.20', '$const36.15', 'out0']\n$48load_global.21 = global(range: <class 'range'>) ['$48load_global.21']\n$50load_global.22 = global(min: <built-in function min>) ['$50load_global.22']\n$const52.23 = const(int, 0) ['$const52.23']\n$const54.24 = const(int, -1) ['$const54.24']\n$56call_function.25 = call $50load_global.22($const52.23, $const54.24, func=$50load_global.22, args=[Var($const52.23, <string>:6), Var($const54.24, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) ['$50load_global.22', '$56call_function.25', '$const52.23', '$const54.24']\n$58unary_negative.26 = unary(fn=<built-in function neg>, value=$56call_function.25) ['$56call_function.25', '$58unary_negative.26']\n$const62.28 = const(int, 0) ['$const62.28']\n$64binary_subscr.29 = getitem(value=full_shape0, index=$const62.28, fn=<built-in function getitem>) ['$64binary_subscr.29', '$const62.28', 'full_shape0']\n$66load_global.30 = global(max: <built-in function max>) ['$66load_global.30']\n$const68.31 = const(int, 0) ['$const68.31']\n$const70.32 = const(int, 0) ['$const70.32']\n$72call_function.33 = call $66load_global.30($const68.31, $const70.32, func=$66load_global.30, args=[Var($const68.31, <string>:6), Var($const70.32, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) ['$66load_global.30', '$72call_function.33', '$const68.31', '$const70.32']\n$74binary_subtract.34 = $64binary_subscr.29 - $72call_function.33 ['$64binary_subscr.29', '$72call_function.33', '$74binary_subtract.34']\n$76call_function.35 = call $48load_global.21($58unary_negative.26, $74binary_subtract.34, func=$48load_global.21, args=[Var($58unary_negative.26, <string>:6), Var($74binary_subtract.34, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) ['$48load_global.21', '$58unary_negative.26', '$74binary_subtract.34', '$76call_function.35']\n$78get_iter.36 = getiter(value=$76call_function.35) ['$76call_function.35', '$78get_iter.36']\n$phi80.0 = $78get_iter.36 ['$78get_iter.36', '$phi80.0']\njump 80 []\nlabel 80:\n$80for_iter.1 = iternext(value=$phi80.0) ['$80for_iter.1', '$phi80.0']\n$80for_iter.2 = pair_first(value=$80for_iter.1) ['$80for_iter.1', '$80for_iter.2']\n$80for_iter.3 = pair_second(value=$80for_iter.1) ['$80for_iter.1', '$80for_iter.3']\n$phi82.1 = $80for_iter.2 ['$80for_iter.2', '$phi82.1']\nbranch $80for_iter.3, 82, 90 ['$80for_iter.3']\nlabel 82:\nindex00 = $phi82.1 ['$phi82.1', 'index00']\n__sentinel__0 = const(int, 0) ['__sentinel__0']\njump 80 []\nlabel 90:\n$92return_value.1 = cast(value=out0) ['$92return_value.1', 'out0']\nreturn $92return_value.1 ['$92return_value.1']\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 82\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 91\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 115\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const42.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 153\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 169\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | defs defaultdict(<class 'list'>,\n{'$100return_value.9': [(<numba.core.ir.Assign object at 0x76b52469a610>,\n169)],\n'$102load_global.0': [(<numba.core.ir.Assign object at 0x76b5246a3a60>,\n173)],\n'$104load_method.1': [(<numba.core.ir.Assign object at 0x76b5246a7c40>,\n173)],\n'$108call_method.3': [(<numba.core.ir.Assign object at 0x76b5246aa8e0>,\n173)],\n'$10load_attr.3.1': [(<numba.core.ir.Assign object at 0x76b5246c0af0>,\n0)],\n'$110load_global.4': [(<numba.core.ir.Assign object at 0x76b5246ad580>,\n173)],\n'$112load_method.5': [(<numba.core.ir.Assign object at 0x76b5246b1280>,\n173)],\n'$116call_method.7': [(<numba.core.ir.Assign object at 0x76b5246b2ee0>,\n173)],\n'$118compare_op.8': [(<numba.core.ir.Assign object at 0x76b5246b6b80>,\n173)],\n'$120return_value.9': [(<numba.core.ir.Assign object at 0x76b5246b9820>,\n173)],\n'$12unary_negative.4': [(<numba.core.ir.Assign object at 0x76b5247296d0>,\n90)],\n'$14load_global.5.1': [(<numba.core.ir.Assign object at 0x76b5246c0df0>,\n0)],\n'$16load_attr.6.1': [(<numba.core.ir.Assign object at 0x76b5246c0c70>,\n0)],\n'$20compare_op.7': [(<numba.core.ir.Assign object at 0x76b52472c370>,\n90)],\n'$22pred': [(<numba.core.ir.Assign object at 0x76b524731d00>, 90)],\n'$26compare_op.2': [(<numba.core.ir.Assign object at 0x76b52473dd90>,\n91)],\n'$28pred': [(<numba.core.ir.Assign object at 0x76b5246c38e0>, 91)],\n'$32build_slice.13.1': [(<numba.core.ir.Assign object at 0x76b52464d4c0>,\n0)],\n'$32build_slice.14.1': [(<numba.core.ir.Assign object at 0x76b52464d5e0>,\n0)],\n'$44build_slice.19.1': [(<numba.core.ir.Assign object at 0x76b52464ddc0>,\n0)],\n'$44build_slice.20.1': [(<numba.core.ir.Assign object at 0x76b52464dee0>,\n0)],\n'$48load_global.21.1': [(<numba.core.ir.Assign object at 0x76b52464e160>,\n0)],\n'$50load_global.22.1': [(<numba.core.ir.Assign object at 0x76b52464e2e0>,\n0)],\n'$50unary_negative.4': [(<numba.core.ir.Assign object at 0x76b5247adb80>,\n127)],\n'$56call_function.25.1': [(<numba.core.ir.Assign object at 0x76b52464e7c0>,\n0)],\n'$58compare_op.7': [(<numba.core.ir.Assign object at 0x76b52479e820>,\n127)],\n'$58unary_negative.26.1': [(<numba.core.ir.Assign object at 0x76b52464e8e0>,\n0)],\n'$60pred': [(<numba.core.ir.Assign object at 0x76b5246d11f0>,\n127)],\n'$64binary_subscr.29.1': [(<numba.core.ir.Assign object at 0x76b52464ed30>,\n0)],\n'$64compare_op.2': [(<numba.core.ir.Assign object at 0x76b5246dc220>,\n131)],\n'$66load_global.30.1': [(<numba.core.ir.Assign object at 0x76b52464ee80>,\n0)],\n'$66pred': [(<numba.core.ir.Assign object at 0x76b5246e1d90>,\n131)],\n'$72call_function.33.1': [(<numba.core.ir.Assign object at 0x76b5246503a0>,\n0)],\n'$74binary_subtract.34.1': [(<numba.core.ir.Assign object at 0x76b5246504f0>,\n0)],\n'$76call_function.35.1': [(<numba.core.ir.Assign object at 0x76b5246506a0>,\n0)],\n'$78get_iter.36.1': [(<numba.core.ir.Assign object at 0x76b5246507c0>,\n0)],\n'$80for_iter.1.1': [(<numba.core.ir.Assign object at 0x76b5246508b0>,\n80)],\n'$80for_iter.2.1': [(<numba.core.ir.Assign object at 0x76b5246509d0>,\n80)],\n'$80for_iter.3.1': [(<numba.core.ir.Assign object at 0x76b524650af0>,\n80)],\n'$80pred': [(<numba.core.ir.Assign object at 0x76b5246fb430>,\n165)],\n'$82load_global.0': [(<numba.core.ir.Assign object at 0x76b524683850>,\n169)],\n'$84load_method.1': [(<numba.core.ir.Assign object at 0x76b524688a30>,\n169)],\n'$88call_method.3': [(<numba.core.ir.Assign object at 0x76b52468b6d0>,\n169)],\n'$8load_global.2.1': [(<numba.core.ir.Assign object at 0x76b5246c2040>,\n0)],\n'$90load_global.4': [(<numba.core.ir.Assign object at 0x76b52468e370>,\n169)],\n'$92load_method.5': [(<numba.core.ir.Assign object at 0x76b524691070>,\n169)],\n'$92return_value.1.1': [(<numba.core.ir.Assign object at 0x76b524652460>,\n194)],\n'$96call_method.7': [(<numba.core.ir.Assign object at 0x76b524693cd0>,\n169)],\n'$98compare_op.8': [(<numba.core.ir.Assign object at 0x76b524696970>,\n169)],\n'$const24.9.1': [(<numba.core.ir.Assign object at 0x76b5246c0460>,\n0)],\n'$const28.11.1': [(<numba.core.ir.Assign object at 0x76b52464d1c0>,\n0)],\n'$const30.12.1': [(<numba.core.ir.Assign object at 0x76b52464d340>,\n0)],\n'$const36.15.1': [(<numba.core.ir.Assign object at 0x76b52464d820>,\n0)],\n'$const4.1': [(<numba.core.ir.Assign object at 0x76b524723dc0>,\n90)],\n'$const40.17.1': [(<numba.core.ir.Assign object at 0x76b52464dac0>,\n0)],\n'$const42.1': [(<numba.core.ir.Assign object at 0x76b524792eb0>,\n127)],\n'$const42.18.1': [(<numba.core.ir.Assign object at 0x76b52464dc40>,\n0)],\n'$const52.23.1': [(<numba.core.ir.Assign object at 0x76b52464e460>,\n0)],\n'$const54.24.1': [(<numba.core.ir.Assign object at 0x76b52464e5e0>,\n0)],\n'$const62.28.1': [(<numba.core.ir.Assign object at 0x76b52464eb80>,\n0)],\n'$const68.31.1': [(<numba.core.ir.Assign object at 0x76b524650040>,\n0)],\n'$const70.32.1': [(<numba.core.ir.Assign object at 0x76b5246501c0>,\n0)],\n'$phi24.0': [(<numba.core.ir.Assign object at 0x76b5247359a0>,\n90)],\n'$phi62.0': [(<numba.core.ir.Assign object at 0x76b5246d2e50>,\n127)],\n'$phi80.0.1': [(<numba.core.ir.Assign object at 0x76b5246c0ee0>,\n0)],\n'$phi82.1.1': [(<numba.core.ir.Assign object at 0x76b5246c2130>,\n80)],\n'bool22': [(<numba.core.ir.Assign object at 0x76b52472c5e0>, 90)],\n'bool28': [(<numba.core.ir.Assign object at 0x76b524740bb0>, 91)],\n'bool60': [(<numba.core.ir.Assign object at 0x76b5246cf4c0>, 127)],\n'bool66': [(<numba.core.ir.Assign object at 0x76b5246df0a0>, 131)],\n'bool80': [(<numba.core.ir.Assign object at 0x76b5246f7700>, 165)],\n'full_shape0': [(<numba.core.ir.Assign object at 0x76b5246c2430>,\n0)],\n'index00': [(<numba.core.ir.Assign object at 0x76b524650dc0>, 82)],\n'out0': [(<numba.core.ir.Assign object at 0x76b5246c0640>, 0)],\n'stencil_index': [(<numba.core.ir.Assign object at 0x76b5246c01c0>,\n90),\n(<numba.core.ir.Assign object at 0x76b5246c02e0>,\n127)],\n'threshold': [(<numba.core.ir.Assign object at 0x76b5246c27f0>,\n0)],\n'x': [(<numba.core.ir.Assign object at 0x76b5246c2910>, 0)],\n'x0': [(<numba.core.ir.Assign object at 0x76b5246c0280>, 90),\n(<numba.core.ir.Assign object at 0x76b5247b0fd0>, 121)],\n'x1': [(<numba.core.ir.Assign object at 0x76b5246c03a0>, 127),\n(<numba.core.ir.Assign object at 0x76b5246f1c70>, 159)],\n'zero_pos': [(<numba.core.ir.Assign object at 0x76b5246c26d0>,\n0)]})\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | SSA violators <numba.core.utils.OrderedSet object at 0x76b524669ee0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Fix SSA violator on var stencil_index\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | first assign: stencil_index\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: stencil_index = $const4.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const42.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: stencil_index.1 = $const42.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>,\n{90: [<numba.core.ir.Assign object at 0x76b524669130>],\n127: [<numba.core.ir.Assign object at 0x76b524669520>]})\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='stencil_index' stmt=x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='stencil_index' stmt=x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Fix SSA violator on var x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | first assign: x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: x0.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>,\n{90: [<numba.core.ir.Assign object at 0x76b524669700>],\n121: [<numba.core.ir.Assign object at 0x76b524669310>]})\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$phi24.0 = x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$26compare_op.2 = x0 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 91\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 90 from label 91\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 169\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 165 from label 169\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 127 from label 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | insert phi node x0.2 = phi(incoming_values=[], incoming_blocks=[]) at 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 90 from label 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x0.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 91\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 91\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 90 from label 91\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 165 from label 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 127 from label 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Fix SSA violator on var x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0.2 = phi(incoming_values=[Var(x0, audio.py:1147), Var(x0.1, audio.py:1149), Var(x0, audio.py:1147)], incoming_blocks=[123, 121, 91])\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | first assign: x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: x1.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>,\n{127: [<numba.core.ir.Assign object at 0x76b524669dc0>],\n159: [<numba.core.ir.Assign object at 0x76b524656f10>]})\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0.2 = phi(incoming_values=[Var(x0, audio.py:1147), Var(x0.1, audio.py:1149), Var(x0, audio.py:1147)], incoming_blocks=[123, 121, 91])\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$58compare_op.7 = $50unary_negative.4 <= x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$phi62.0 = x1\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$64compare_op.2 = x1 <= threshold\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 127 from label 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 169\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 165 from label 169\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | insert phi node x1.2 = phi(incoming_values=[], incoming_blocks=[]) at 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 127 from label 161\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 127 from label 131\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 127\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 159\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x1.1 = const(int, 0)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: $96call_method.7 = call $92load_method.5(x1.2, func=$92load_method.5, args=[Var(x1.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 165 from label 173\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 165\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: $116call_method.7 = call $112load_method.5(x1.2, func=$112load_method.5, args=[Var(x1.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8)\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220>\n2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80\nDue to a bug fix in https://github.com/huggingface/transformers/pull/28687 transcription using a multilingual Whisper will default to language detection followed by transcription instead of translation to English.This might be a breaking change for your use case. If you want to instead always translate your audio to English, make sure to pass `language='en'`.", "metrics": { "predict_time": 8.976953763000001, "total_time": 131.927822 }, "output": "https://replicate.delivery/xezq/hg1MZeVOJlSVKiCAwL3nuaXifqawU5WKUfVe8nxcUGy5bBgQB/test_pred.wav", "started_at": "2025-01-23T14:35:33.898869Z", "status": "succeeded", "urls": { "stream": "https://stream.replicate.com/v1/files/bcwr-dlujsq2jfv3nkxbvmhchfdgxzzhv5jejqrmdurventtihvyh2wzq", "get": "https://api.replicate.com/v1/predictions/dp3w9e8y8hrma0cmjeat6egkvw", "cancel": "https://api.replicate.com/v1/predictions/dp3w9e8y8hrma0cmjeat6egkvw/cancel" }, "version": "b533d19a628be53af05ebbc596b8fb84bf9ba0aec1e873162e56a0457d87e8c4" }
Generated in2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | bytecode dump: > 0 NOP(arg=None, lineno=1144) 2 LOAD_FAST(arg=0, lineno=1147) 4 LOAD_CONST(arg=1, lineno=1147) 6 BINARY_SUBSCR(arg=None, lineno=1147) 8 STORE_FAST(arg=3, lineno=1147) 10 LOAD_FAST(arg=1, lineno=1148) 12 UNARY_NEGATIVE(arg=None, lineno=1148) 14 LOAD_FAST(arg=3, lineno=1148) 16 DUP_TOP(arg=None, lineno=1148) 18 ROT_THREE(arg=None, lineno=1148) 20 COMPARE_OP(arg=1, lineno=1148) 22 POP_JUMP_IF_FALSE(arg=32, lineno=1148) 24 LOAD_FAST(arg=1, lineno=1148) 26 COMPARE_OP(arg=1, lineno=1148) 28 POP_JUMP_IF_FALSE(arg=40, lineno=1148) 30 JUMP_FORWARD(arg=4, lineno=1148) > 32 POP_TOP(arg=None, lineno=1148) 34 JUMP_FORWARD(arg=4, lineno=1148) > 36 LOAD_CONST(arg=1, lineno=1149) 38 STORE_FAST(arg=3, lineno=1149) > 40 LOAD_FAST(arg=0, lineno=1151) 42 LOAD_CONST(arg=2, lineno=1151) 44 BINARY_SUBSCR(arg=None, lineno=1151) 46 STORE_FAST(arg=4, lineno=1151) 48 LOAD_FAST(arg=1, lineno=1152) 50 UNARY_NEGATIVE(arg=None, lineno=1152) 52 LOAD_FAST(arg=4, lineno=1152) 54 DUP_TOP(arg=None, lineno=1152) 56 ROT_THREE(arg=None, lineno=1152) 58 COMPARE_OP(arg=1, lineno=1152) 60 POP_JUMP_IF_FALSE(arg=70, lineno=1152) 62 LOAD_FAST(arg=1, lineno=1152) 64 COMPARE_OP(arg=1, lineno=1152) 66 POP_JUMP_IF_FALSE(arg=78, lineno=1152) 68 JUMP_FORWARD(arg=4, lineno=1152) > 70 POP_TOP(arg=None, lineno=1152) 72 JUMP_FORWARD(arg=4, lineno=1152) > 74 LOAD_CONST(arg=1, lineno=1153) 76 STORE_FAST(arg=4, lineno=1153) > 78 LOAD_FAST(arg=2, lineno=1155) 80 POP_JUMP_IF_FALSE(arg=102, lineno=1155) 82 LOAD_GLOBAL(arg=0, lineno=1156) 84 LOAD_METHOD(arg=1, lineno=1156) 86 LOAD_FAST(arg=3, lineno=1156) 88 CALL_METHOD(arg=1, lineno=1156) 90 LOAD_GLOBAL(arg=0, lineno=1156) 92 LOAD_METHOD(arg=1, lineno=1156) 94 LOAD_FAST(arg=4, lineno=1156) 96 CALL_METHOD(arg=1, lineno=1156) 98 COMPARE_OP(arg=3, lineno=1156) 100 RETURN_VALUE(arg=None, lineno=1156) > 102 LOAD_GLOBAL(arg=0, lineno=1158) 104 LOAD_METHOD(arg=2, lineno=1158) 106 LOAD_FAST(arg=3, lineno=1158) 108 CALL_METHOD(arg=1, lineno=1158) 110 LOAD_GLOBAL(arg=0, lineno=1158) 112 LOAD_METHOD(arg=2, lineno=1158) 114 LOAD_FAST(arg=4, lineno=1158) 116 CALL_METHOD(arg=1, lineno=1158) 118 COMPARE_OP(arg=3, lineno=1158) 120 RETURN_VALUE(arg=None, lineno=1158) 122 LOAD_CONST(arg=3, lineno=1158) 124 RETURN_VALUE(arg=None, lineno=1158) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=0 nstack_initial=0)]) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack: [] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=0 nstack_initial=0) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=0, inst=NOP(arg=None, lineno=1144) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=2, inst=LOAD_FAST(arg=0, lineno=1147) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=4, inst=LOAD_CONST(arg=1, lineno=1147) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$x2.0'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=6, inst=BINARY_SUBSCR(arg=None, lineno=1147) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$x2.0', '$const4.1'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=8, inst=STORE_FAST(arg=3, lineno=1147) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$6binary_subscr.2'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=10, inst=LOAD_FAST(arg=1, lineno=1148) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=12, inst=UNARY_NEGATIVE(arg=None, lineno=1148) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$threshold10.3'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=14, inst=LOAD_FAST(arg=3, lineno=1148) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$12unary_negative.4'] 2025-01-23 14:35:34 | DEBUG | [...] log volume exceeds 256KiB size limit: truncating logs [...] -23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const42.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: stencil_index.1 = $const42.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>, {90: [<numba.core.ir.Assign object at 0x76b524906c70>], 127: [<numba.core.ir.Assign object at 0x76b5249061f0>]}) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='stencil_index' stmt=x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='stencil_index' stmt=x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906c10> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Fix SSA violator on var x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | first assign: x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: x0.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906f40> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>, {90: [<numba.core.ir.Assign object at 0x76b524906f10>], 121: [<numba.core.ir.Assign object at 0x76b524906b20>]}) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$phi24.0 = x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$26compare_op.2 = x0 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 91 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 90 from label 91 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 169 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 165 from label 169 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 127 from label 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | insert phi node x0.2 = phi(incoming_values=[], incoming_blocks=[]) at 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 90 from label 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x0.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 91 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 91 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 90 from label 91 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 165 from label 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 127 from label 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5249063a0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Fix SSA violator on var x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0.2 = phi(incoming_values=[Var(x0, audio.py:1147), Var(x0.1, audio.py:1149), Var(x0, audio.py:1147)], incoming_blocks=[123, 121, 91]) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | first assign: x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: x1.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524906a00> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>, {127: [<numba.core.ir.Assign object at 0x76b524906850>], 159: [<numba.core.ir.Assign object at 0x76b5249201c0>]}) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0.2 = phi(incoming_values=[Var(x0, audio.py:1147), Var(x0.1, audio.py:1149), Var(x0, audio.py:1147)], incoming_blocks=[123, 121, 91]) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$phi62.0 = x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$64compare_op.2 = x1 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 127 from label 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 169 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 165 from label 169 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | insert phi node x1.2 = phi(incoming_values=[], incoming_blocks=[]) at 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 127 from label 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 127 from label 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x1.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: $96call_method.7 = call $92load_method.5(x1.2, func=$92load_method.5, args=[Var(x1.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 165 from label 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: $116call_method.7 = call $112load_method.5(x1.2, func=$112load_method.5, args=[Var(x1.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524906d30> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | bytecode dump: > 0 NOP(arg=None, lineno=1161) 2 LOAD_GLOBAL(arg=0, lineno=1177) 4 LOAD_FAST(arg=0, lineno=1177) 6 LOAD_FAST(arg=1, lineno=1177) 8 LOAD_FAST(arg=2, lineno=1177) 10 CALL_FUNCTION(arg=3, lineno=1177) 12 LOAD_FAST(arg=3, lineno=1177) 14 LOAD_CONST(arg=1, lineno=1177) 16 LOAD_CONST(arg=1, lineno=1177) 18 BUILD_SLICE(arg=2, lineno=1177) 20 STORE_SUBSCR(arg=None, lineno=1177) 22 LOAD_CONST(arg=1, lineno=1177) 24 RETURN_VALUE(arg=None, lineno=1177) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=0 nstack_initial=0)]) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack: [] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=0 nstack_initial=0) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=0, inst=NOP(arg=None, lineno=1161) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=2, inst=LOAD_GLOBAL(arg=0, lineno=1177) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=4, inst=LOAD_FAST(arg=0, lineno=1177) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$2load_global.0'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=6, inst=LOAD_FAST(arg=1, lineno=1177) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$2load_global.0', '$x4.1'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=8, inst=LOAD_FAST(arg=2, lineno=1177) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$2load_global.0', '$x4.1', '$threshold6.2'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=10, inst=CALL_FUNCTION(arg=3, lineno=1177) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$2load_global.0', '$x4.1', '$threshold6.2', '$zero_pos8.3'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=12, inst=LOAD_FAST(arg=3, lineno=1177) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$10call_function.4'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=14, inst=LOAD_CONST(arg=1, lineno=1177) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$10call_function.4', '$y12.5'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=16, inst=LOAD_CONST(arg=1, lineno=1177) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$10call_function.4', '$y12.5', '$const14.6'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=18, inst=BUILD_SLICE(arg=2, lineno=1177) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$10call_function.4', '$y12.5', '$const14.6', '$const16.7'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=20, inst=STORE_SUBSCR(arg=None, lineno=1177) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$10call_function.4', '$y12.5', '$18build_slice.9'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=22, inst=LOAD_CONST(arg=1, lineno=1177) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=24, inst=RETURN_VALUE(arg=None, lineno=1177) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$const22.10'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | end state. edges=[] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | -------------------------Prune PHIs------------------------- 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | Used_phis: defaultdict(<class 'set'>, {State(pc_initial=0 nstack_initial=0): set()}) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | defmap: {} 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | phismap: defaultdict(<class 'set'>, {}) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | changing phismap: defaultdict(<class 'set'>, {}) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | keep phismap: {} 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | new_out: defaultdict(<class 'dict'>, {}) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | ----------------------DONE Prune PHIs----------------------- 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | block_infos State(pc_initial=0 nstack_initial=0): AdaptBlockInfo(insts=((0, {}), (2, {'res': '$2load_global.0'}), (4, {'res': '$x4.1'}), (6, {'res': '$threshold6.2'}), (8, {'res': '$zero_pos8.3'}), (10, {'func': '$2load_global.0', 'args': ['$x4.1', '$threshold6.2', '$zero_pos8.3'], 'res': '$10call_function.4'}), (12, {'res': '$y12.5'}), (14, {'res': '$const14.6'}), (16, {'res': '$const16.7'}), (18, {'start': '$const14.6', 'stop': '$const16.7', 'step': None, 'res': '$18build_slice.9', 'slicevar': '$18build_slice.8'}), (20, {'target': '$y12.5', 'index': '$18build_slice.9', 'value': '$10call_function.4'}), (22, {'res': '$const22.10'}), (24, {'retval': '$const22.10', 'castval': '$24return_value.11'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) 2025-01-23 14:35:34 | DEBUG | numba.core.interpreter | label 0: x = arg(0, name=x) ['x'] threshold = arg(1, name=threshold) ['threshold'] zero_pos = arg(2, name=zero_pos) ['zero_pos'] y = arg(3, name=y) ['y'] $2load_global.0 = global(_zc_stencil: <numba.stencils.stencil.StencilFunc object at 0x76b524b19040>) ['$2load_global.0'] $10call_function.4 = call $2load_global.0(x, threshold, zero_pos, func=$2load_global.0, args=[Var(x, audio.py:1161), Var(threshold, audio.py:1161), Var(zero_pos, audio.py:1161)], kws=(), vararg=None, varkwarg=None, target=None) ['$10call_function.4', '$2load_global.0', 'threshold', 'x', 'zero_pos'] $const14.6 = const(NoneType, None) ['$const14.6'] $const16.7 = const(NoneType, None) ['$const16.7'] $18build_slice.8 = global(slice: <class 'slice'>) ['$18build_slice.8'] $18build_slice.9 = call $18build_slice.8($const14.6, $const16.7, func=$18build_slice.8, args=(Var($const14.6, audio.py:1177), Var($const16.7, audio.py:1177)), kws=(), vararg=None, varkwarg=None, target=None) ['$18build_slice.8', '$18build_slice.9', '$const14.6', '$const16.7'] y[$18build_slice.9] = $10call_function.4 ['$10call_function.4', '$18build_slice.9', 'y'] $const22.10 = const(NoneType, None) ['$const22.10'] $24return_value.11 = cast(value=$const22.10) ['$24return_value.11', '$const22.10'] return $24return_value.11 ['$24return_value.11'] 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524c35e20> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: y = arg(3, name=y) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $2load_global.0 = global(_zc_stencil: <numba.stencils.stencil.StencilFunc object at 0x76b524b19040>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10call_function.4 = call $2load_global.0(x, threshold, zero_pos, func=$2load_global.0, args=[Var(x, audio.py:1161), Var(threshold, audio.py:1161), Var(zero_pos, audio.py:1161)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const14.6 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const16.7 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $18build_slice.8 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $18build_slice.9 = call $18build_slice.8($const14.6, $const16.7, func=$18build_slice.8, args=(Var($const14.6, audio.py:1177), Var($const16.7, audio.py:1177)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: y[slice(None, None, None)] = $10call_function.4 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const22.10 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $24return_value.11 = cast(value=$const22.10) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $24return_value.11 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | defs defaultdict(<class 'list'>, {'$10call_function.4': [(<numba.core.ir.Assign object at 0x76b5247043d0>, 0)], '$18build_slice.8': [(<numba.core.ir.Assign object at 0x76b524704910>, 0)], '$18build_slice.9': [(<numba.core.ir.Assign object at 0x76b524704a30>, 0)], '$24return_value.11': [(<numba.core.ir.Assign object at 0x76b524704df0>, 0)], '$2load_global.0': [(<numba.core.ir.Assign object at 0x76b52478de50>, 0)], '$const14.6': [(<numba.core.ir.Assign object at 0x76b524704610>, 0)], '$const16.7': [(<numba.core.ir.Assign object at 0x76b524704790>, 0)], '$const22.10': [(<numba.core.ir.Assign object at 0x76b524704c70>, 0)], 'threshold': [(<numba.core.ir.Assign object at 0x76b52478da90>, 0)], 'x': [(<numba.core.ir.Assign object at 0x76b52478d370>, 0)], 'y': [(<numba.core.ir.Assign object at 0x76b52478dcd0>, 0)], 'zero_pos': [(<numba.core.ir.Assign object at 0x76b52478dbb0>, 0)]}) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | SSA violators <numba.core.utils.OrderedSet object at 0x76b524c35e20> 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | bytecode dump: > 0 NOP(arg=None, lineno=1) 2 LOAD_FAST(arg=0, lineno=2) 4 LOAD_ATTR(arg=0, lineno=2) 6 STORE_FAST(arg=3, lineno=2) 8 LOAD_GLOBAL(arg=1, lineno=3) 10 LOAD_ATTR(arg=2, lineno=3) 12 LOAD_FAST(arg=3, lineno=3) 14 LOAD_GLOBAL(arg=1, lineno=3) 16 LOAD_ATTR(arg=3, lineno=3) 18 LOAD_CONST(arg=1, lineno=3) 20 CALL_FUNCTION_KW(arg=2, lineno=3) 22 STORE_FAST(arg=4, lineno=3) 24 LOAD_CONST(arg=2, lineno=4) 26 LOAD_FAST(arg=4, lineno=4) 28 LOAD_CONST(arg=0, lineno=4) 30 LOAD_CONST(arg=3, lineno=4) 32 BUILD_SLICE(arg=2, lineno=4) 34 STORE_SUBSCR(arg=None, lineno=4) 36 LOAD_CONST(arg=2, lineno=5) 38 LOAD_FAST(arg=4, lineno=5) 40 LOAD_CONST(arg=2, lineno=5) 42 LOAD_CONST(arg=0, lineno=5) 44 BUILD_SLICE(arg=2, lineno=5) 46 STORE_SUBSCR(arg=None, lineno=5) 48 LOAD_GLOBAL(arg=4, lineno=6) 50 LOAD_GLOBAL(arg=5, lineno=6) 52 LOAD_CONST(arg=2, lineno=6) 54 LOAD_CONST(arg=4, lineno=6) 56 CALL_FUNCTION(arg=2, lineno=6) 58 UNARY_NEGATIVE(arg=None, lineno=6) 60 LOAD_FAST(arg=3, lineno=6) 62 LOAD_CONST(arg=2, lineno=6) 64 BINARY_SUBSCR(arg=None, lineno=6) 66 LOAD_GLOBAL(arg=6, lineno=6) 68 LOAD_CONST(arg=2, lineno=6) 70 LOAD_CONST(arg=2, lineno=6) 72 CALL_FUNCTION(arg=2, lineno=6) 74 BINARY_SUBTRACT(arg=None, lineno=6) 76 CALL_FUNCTION(arg=2, lineno=6) 78 GET_ITER(arg=None, lineno=6) > 80 FOR_ITER(arg=8, lineno=6) 82 STORE_FAST(arg=5, lineno=6) 84 LOAD_CONST(arg=2, lineno=7) 86 STORE_FAST(arg=6, lineno=7) 88 JUMP_ABSOLUTE(arg=80, lineno=7) > 90 LOAD_FAST(arg=4, lineno=8) 92 RETURN_VALUE(arg=None, lineno=8) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=0 nstack_initial=0)]) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack: [] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=0 nstack_initial=0) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=0, inst=NOP(arg=None, lineno=1) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=2, inst=LOAD_FAST(arg=0, lineno=2) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=4, inst=LOAD_ATTR(arg=0, lineno=2) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$x2.0'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=6, inst=STORE_FAST(arg=3, lineno=2) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$4load_attr.1'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=8, inst=LOAD_GLOBAL(arg=1, lineno=3) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=10, inst=LOAD_ATTR(arg=2, lineno=3) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$8load_global.2'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=12, inst=LOAD_FAST(arg=3, lineno=3) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$10load_attr.3'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=14, inst=LOAD_GLOBAL(arg=1, lineno=3) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$10load_attr.3', '$full_shape012.4'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=16, inst=LOAD_ATTR(arg=3, lineno=3) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$10load_attr.3', '$full_shape012.4', '$14load_global.5'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=18, inst=LOAD_CONST(arg=1, lineno=3) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$10load_attr.3', '$full_shape012.4', '$16load_attr.6'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=20, inst=CALL_FUNCTION_KW(arg=2, lineno=3) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$10load_attr.3', '$full_shape012.4', '$16load_attr.6', '$const18.7'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=22, inst=STORE_FAST(arg=4, lineno=3) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$20call_function_kw.8'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=24, inst=LOAD_CONST(arg=2, lineno=4) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=26, inst=LOAD_FAST(arg=4, lineno=4) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$const24.9'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=28, inst=LOAD_CONST(arg=0, lineno=4) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$const24.9', '$out026.10'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=30, inst=LOAD_CONST(arg=3, lineno=4) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$const24.9', '$out026.10', '$const28.11'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=32, inst=BUILD_SLICE(arg=2, lineno=4) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$const24.9', '$out026.10', '$const28.11', '$const30.12'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=34, inst=STORE_SUBSCR(arg=None, lineno=4) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$const24.9', '$out026.10', '$32build_slice.14'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=36, inst=LOAD_CONST(arg=2, lineno=5) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=38, inst=LOAD_FAST(arg=4, lineno=5) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$const36.15'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=40, inst=LOAD_CONST(arg=2, lineno=5) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$const36.15', '$out038.16'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=42, inst=LOAD_CONST(arg=0, lineno=5) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$const36.15', '$out038.16', '$const40.17'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=44, inst=BUILD_SLICE(arg=2, lineno=5) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$const36.15', '$out038.16', '$const40.17', '$const42.18'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=46, inst=STORE_SUBSCR(arg=None, lineno=5) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$const36.15', '$out038.16', '$44build_slice.20'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=48, inst=LOAD_GLOBAL(arg=4, lineno=6) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=50, inst=LOAD_GLOBAL(arg=5, lineno=6) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=52, inst=LOAD_CONST(arg=2, lineno=6) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$50load_global.22'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=54, inst=LOAD_CONST(arg=4, lineno=6) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$50load_global.22', '$const52.23'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=56, inst=CALL_FUNCTION(arg=2, lineno=6) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$50load_global.22', '$const52.23', '$const54.24'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=58, inst=UNARY_NEGATIVE(arg=None, lineno=6) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$56call_function.25'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=60, inst=LOAD_FAST(arg=3, lineno=6) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=62, inst=LOAD_CONST(arg=2, lineno=6) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$full_shape060.27'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=64, inst=BINARY_SUBSCR(arg=None, lineno=6) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$full_shape060.27', '$const62.28'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=66, inst=LOAD_GLOBAL(arg=6, lineno=6) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$64binary_subscr.29'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=68, inst=LOAD_CONST(arg=2, lineno=6) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$64binary_subscr.29', '$66load_global.30'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=70, inst=LOAD_CONST(arg=2, lineno=6) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$64binary_subscr.29', '$66load_global.30', '$const68.31'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=72, inst=CALL_FUNCTION(arg=2, lineno=6) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$64binary_subscr.29', '$66load_global.30', '$const68.31', '$const70.32'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=74, inst=BINARY_SUBTRACT(arg=None, lineno=6) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$64binary_subscr.29', '$72call_function.33'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=76, inst=CALL_FUNCTION(arg=2, lineno=6) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$48load_global.21', '$58unary_negative.26', '$74binary_subtract.34'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=78, inst=GET_ITER(arg=None, lineno=6) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$76call_function.35'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | end state. edges=[Edge(pc=80, stack=('$78get_iter.36',), blockstack=(), npush=0)] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=80 nstack_initial=1)]) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack: ['$phi80.0'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=80 nstack_initial=1) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=80, inst=FOR_ITER(arg=8, lineno=6) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$phi80.0'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | end state. edges=[Edge(pc=90, stack=(), blockstack=(), npush=0), Edge(pc=82, stack=('$phi80.0', '$80for_iter.2'), blockstack=(), npush=0)] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=90 nstack_initial=0), State(pc_initial=82 nstack_initial=2)]) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack: [] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=90 nstack_initial=0) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=90, inst=LOAD_FAST(arg=4, lineno=8) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack [] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=92, inst=RETURN_VALUE(arg=None, lineno=8) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$out090.0'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | end state. edges=[] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=82 nstack_initial=2)]) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack: ['$phi82.0', '$phi82.1'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | state.pc_initial: State(pc_initial=82 nstack_initial=2) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=82, inst=STORE_FAST(arg=5, lineno=6) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$phi82.0', '$phi82.1'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=84, inst=LOAD_CONST(arg=2, lineno=7) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$phi82.0'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=86, inst=STORE_FAST(arg=6, lineno=7) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$phi82.0', '$const84.2'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | dispatch pc=88, inst=JUMP_ABSOLUTE(arg=80, lineno=7) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | stack ['$phi82.0'] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | end state. edges=[Edge(pc=80, stack=('$phi82.0',), blockstack=(), npush=0)] 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | pending: deque([State(pc_initial=80 nstack_initial=1)]) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | -------------------------Prune PHIs------------------------- 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | Used_phis: defaultdict(<class 'set'>, {State(pc_initial=0 nstack_initial=0): set(), State(pc_initial=80 nstack_initial=1): {'$phi80.0'}, State(pc_initial=82 nstack_initial=2): {'$phi82.1'}, State(pc_initial=90 nstack_initial=0): set()}) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | defmap: {'$phi80.0': State(pc_initial=0 nstack_initial=0), '$phi82.1': State(pc_initial=80 nstack_initial=1)} 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | phismap: defaultdict(<class 'set'>, {'$phi80.0': {('$78get_iter.36', State(pc_initial=0 nstack_initial=0)), ('$phi82.0', State(pc_initial=82 nstack_initial=2))}, '$phi82.0': {('$phi80.0', State(pc_initial=80 nstack_initial=1))}, '$phi82.1': {('$80for_iter.2', State(pc_initial=80 nstack_initial=1))}}) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | changing phismap: defaultdict(<class 'set'>, {'$phi80.0': {('$78get_iter.36', State(pc_initial=0 nstack_initial=0)), ('$phi80.0', State(pc_initial=80 nstack_initial=1))}, '$phi82.0': {('$78get_iter.36', State(pc_initial=0 nstack_initial=0))}, '$phi82.1': {('$80for_iter.2', State(pc_initial=80 nstack_initial=1))}}) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | changing phismap: defaultdict(<class 'set'>, {'$phi80.0': {('$78get_iter.36', State(pc_initial=0 nstack_initial=0))}, '$phi82.0': {('$78get_iter.36', State(pc_initial=0 nstack_initial=0))}, '$phi82.1': {('$80for_iter.2', State(pc_initial=80 nstack_initial=1))}}) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | changing phismap: defaultdict(<class 'set'>, {'$phi80.0': {('$78get_iter.36', State(pc_initial=0 nstack_initial=0))}, '$phi82.0': {('$78get_iter.36', State(pc_initial=0 nstack_initial=0))}, '$phi82.1': {('$80for_iter.2', State(pc_initial=80 nstack_initial=1))}}) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | keep phismap: {'$phi80.0': {('$78get_iter.36', State(pc_initial=0 nstack_initial=0))}, '$phi82.1': {('$80for_iter.2', State(pc_initial=80 nstack_initial=1))}} 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | new_out: defaultdict(<class 'dict'>, {State(pc_initial=0 nstack_initial=0): {'$phi80.0': '$78get_iter.36'}, State(pc_initial=80 nstack_initial=1): {'$phi82.1': '$80for_iter.2'}}) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | ----------------------DONE Prune PHIs----------------------- 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | block_infos State(pc_initial=0 nstack_initial=0): AdaptBlockInfo(insts=((0, {}), (2, {'res': '$x2.0'}), (4, {'item': '$x2.0', 'res': '$4load_attr.1'}), (6, {'value': '$4load_attr.1'}), (8, {'res': '$8load_global.2'}), (10, {'item': '$8load_global.2', 'res': '$10load_attr.3'}), (12, {'res': '$full_shape012.4'}), (14, {'res': '$14load_global.5'}), (16, {'item': '$14load_global.5', 'res': '$16load_attr.6'}), (18, {'res': '$const18.7'}), (20, {'func': '$10load_attr.3', 'args': ['$full_shape012.4', '$16load_attr.6'], 'names': '$const18.7', 'res': '$20call_function_kw.8'}), (22, {'value': '$20call_function_kw.8'}), (24, {'res': '$const24.9'}), (26, {'res': '$out026.10'}), (28, {'res': '$const28.11'}), (30, {'res': '$const30.12'}), (32, {'start': '$const28.11', 'stop': '$const30.12', 'step': None, 'res': '$32build_slice.14', 'slicevar': '$32build_slice.13'}), (34, {'target': '$out026.10', 'index': '$32build_slice.14', 'value': '$const24.9'}), (36, {'res': '$const36.15'}), (38, {'res': '$out038.16'}), (40, {'res': '$const40.17'}), (42, {'res': '$const42.18'}), (44, {'start': '$const40.17', 'stop': '$const42.18', 'step': None, 'res': '$44build_slice.20', 'slicevar': '$44build_slice.19'}), (46, {'target': '$out038.16', 'index': '$44build_slice.20', 'value': '$const36.15'}), (48, {'res': '$48load_global.21'}), (50, {'res': '$50load_global.22'}), (52, {'res': '$const52.23'}), (54, {'res': '$const54.24'}), (56, {'func': '$50load_global.22', 'args': ['$const52.23', '$const54.24'], 'res': '$56call_function.25'}), (58, {'value': '$56call_function.25', 'res': '$58unary_negative.26'}), (60, {'res': '$full_shape060.27'}), (62, {'res': '$const62.28'}), (64, {'index': '$const62.28', 'target': '$full_shape060.27', 'res': '$64binary_subscr.29'}), (66, {'res': '$66load_global.30'}), (68, {'res': '$const68.31'}), (70, {'res': '$const70.32'}), (72, {'func': '$66load_global.30', 'args': ['$const68.31', '$const70.32'], 'res': '$72call_function.33'}), (74, {'lhs': '$64binary_subscr.29', 'rhs': '$72call_function.33', 'res': '$74binary_subtract.34'}), (76, {'func': '$48load_global.21', 'args': ['$58unary_negative.26', '$74binary_subtract.34'], 'res': '$76call_function.35'}), (78, {'value': '$76call_function.35', 'res': '$78get_iter.36'})), outgoing_phis={'$phi80.0': '$78get_iter.36'}, blockstack=(), active_try_block=None, outgoing_edgepushed={80: ('$78get_iter.36',)}) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | block_infos State(pc_initial=80 nstack_initial=1): AdaptBlockInfo(insts=((80, {'iterator': '$phi80.0', 'pair': '$80for_iter.1', 'indval': '$80for_iter.2', 'pred': '$80for_iter.3'}),), outgoing_phis={'$phi82.1': '$80for_iter.2'}, blockstack=(), active_try_block=None, outgoing_edgepushed={90: (), 82: ('$phi80.0', '$80for_iter.2')}) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | block_infos State(pc_initial=82 nstack_initial=2): AdaptBlockInfo(insts=((82, {'value': '$phi82.1'}), (84, {'res': '$const84.2'}), (86, {'value': '$const84.2'}), (88, {})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={80: ('$phi82.0',)}) 2025-01-23 14:35:34 | DEBUG | numba.core.byteflow | block_infos State(pc_initial=90 nstack_initial=0): AdaptBlockInfo(insts=((90, {'res': '$out090.0'}), (92, {'retval': '$out090.0', 'castval': '$92return_value.1'})), outgoing_phis={}, blockstack=(), active_try_block=None, outgoing_edgepushed={}) 2025-01-23 14:35:34 | DEBUG | numba.core.interpreter | label 0: x = arg(0, name=x) ['x'] threshold = arg(1, name=threshold) ['threshold'] zero_pos = arg(2, name=zero_pos) ['zero_pos'] full_shape0 = getattr(value=x, attr=shape) ['full_shape0', 'x'] $8load_global.2 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) ['$8load_global.2'] $10load_attr.3 = getattr(value=$8load_global.2, attr=empty) ['$10load_attr.3', '$8load_global.2'] $14load_global.5 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) ['$14load_global.5'] $16load_attr.6 = getattr(value=$14load_global.5, attr=bool_) ['$14load_global.5', '$16load_attr.6'] out0 = call $10load_attr.3(full_shape0, func=$10load_attr.3, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6, <string>:3))], vararg=None, varkwarg=None, target=None) ['$10load_attr.3', '$16load_attr.6', 'full_shape0', 'out0'] $const24.9 = const(int, 0) ['$const24.9'] $const28.11 = const(NoneType, None) ['$const28.11'] $const30.12 = const(int, 1) ['$const30.12'] $32build_slice.13 = global(slice: <class 'slice'>) ['$32build_slice.13'] $32build_slice.14 = call $32build_slice.13($const28.11, $const30.12, func=$32build_slice.13, args=(Var($const28.11, <string>:4), Var($const30.12, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) ['$32build_slice.13', '$32build_slice.14', '$const28.11', '$const30.12'] out0[$32build_slice.14] = $const24.9 ['$32build_slice.14', '$const24.9', 'out0'] $const36.15 = const(int, 0) ['$const36.15'] $const40.17 = const(int, 0) ['$const40.17'] $const42.18 = const(NoneType, None) ['$const42.18'] $44build_slice.19 = global(slice: <class 'slice'>) ['$44build_slice.19'] $44build_slice.20 = call $44build_slice.19($const40.17, $const42.18, func=$44build_slice.19, args=(Var($const40.17, <string>:5), Var($const42.18, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) ['$44build_slice.19', '$44build_slice.20', '$const40.17', '$const42.18'] out0[$44build_slice.20] = $const36.15 ['$44build_slice.20', '$const36.15', 'out0'] $48load_global.21 = global(range: <class 'range'>) ['$48load_global.21'] $50load_global.22 = global(min: <built-in function min>) ['$50load_global.22'] $const52.23 = const(int, 0) ['$const52.23'] $const54.24 = const(int, -1) ['$const54.24'] $56call_function.25 = call $50load_global.22($const52.23, $const54.24, func=$50load_global.22, args=[Var($const52.23, <string>:6), Var($const54.24, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) ['$50load_global.22', '$56call_function.25', '$const52.23', '$const54.24'] $58unary_negative.26 = unary(fn=<built-in function neg>, value=$56call_function.25) ['$56call_function.25', '$58unary_negative.26'] $const62.28 = const(int, 0) ['$const62.28'] $64binary_subscr.29 = getitem(value=full_shape0, index=$const62.28, fn=<built-in function getitem>) ['$64binary_subscr.29', '$const62.28', 'full_shape0'] $66load_global.30 = global(max: <built-in function max>) ['$66load_global.30'] $const68.31 = const(int, 0) ['$const68.31'] $const70.32 = const(int, 0) ['$const70.32'] $72call_function.33 = call $66load_global.30($const68.31, $const70.32, func=$66load_global.30, args=[Var($const68.31, <string>:6), Var($const70.32, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) ['$66load_global.30', '$72call_function.33', '$const68.31', '$const70.32'] $74binary_subtract.34 = $64binary_subscr.29 - $72call_function.33 ['$64binary_subscr.29', '$72call_function.33', '$74binary_subtract.34'] $76call_function.35 = call $48load_global.21($58unary_negative.26, $74binary_subtract.34, func=$48load_global.21, args=[Var($58unary_negative.26, <string>:6), Var($74binary_subtract.34, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) ['$48load_global.21', '$58unary_negative.26', '$74binary_subtract.34', '$76call_function.35'] $78get_iter.36 = getiter(value=$76call_function.35) ['$76call_function.35', '$78get_iter.36'] $phi80.0 = $78get_iter.36 ['$78get_iter.36', '$phi80.0'] jump 80 [] label 80: $80for_iter.1 = iternext(value=$phi80.0) ['$80for_iter.1', '$phi80.0'] $80for_iter.2 = pair_first(value=$80for_iter.1) ['$80for_iter.1', '$80for_iter.2'] $80for_iter.3 = pair_second(value=$80for_iter.1) ['$80for_iter.1', '$80for_iter.3'] $phi82.1 = $80for_iter.2 ['$80for_iter.2', '$phi82.1'] branch $80for_iter.3, 82, 90 ['$80for_iter.3'] label 82: index00 = $phi82.1 ['$phi82.1', 'index00'] __sentinel__0 = const(int, 0) ['__sentinel__0'] jump 80 [] label 90: $92return_value.1 = cast(value=out0) ['$92return_value.1', 'out0'] return $92return_value.1 ['$92return_value.1'] 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 82 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 91 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 115 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const42.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 153 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 169 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block analysis pass on 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._GatherDefsHandler object at 0x76b524656130> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | defs defaultdict(<class 'list'>, {'$100return_value.9': [(<numba.core.ir.Assign object at 0x76b52469a610>, 169)], '$102load_global.0': [(<numba.core.ir.Assign object at 0x76b5246a3a60>, 173)], '$104load_method.1': [(<numba.core.ir.Assign object at 0x76b5246a7c40>, 173)], '$108call_method.3': [(<numba.core.ir.Assign object at 0x76b5246aa8e0>, 173)], '$10load_attr.3.1': [(<numba.core.ir.Assign object at 0x76b5246c0af0>, 0)], '$110load_global.4': [(<numba.core.ir.Assign object at 0x76b5246ad580>, 173)], '$112load_method.5': [(<numba.core.ir.Assign object at 0x76b5246b1280>, 173)], '$116call_method.7': [(<numba.core.ir.Assign object at 0x76b5246b2ee0>, 173)], '$118compare_op.8': [(<numba.core.ir.Assign object at 0x76b5246b6b80>, 173)], '$120return_value.9': [(<numba.core.ir.Assign object at 0x76b5246b9820>, 173)], '$12unary_negative.4': [(<numba.core.ir.Assign object at 0x76b5247296d0>, 90)], '$14load_global.5.1': [(<numba.core.ir.Assign object at 0x76b5246c0df0>, 0)], '$16load_attr.6.1': [(<numba.core.ir.Assign object at 0x76b5246c0c70>, 0)], '$20compare_op.7': [(<numba.core.ir.Assign object at 0x76b52472c370>, 90)], '$22pred': [(<numba.core.ir.Assign object at 0x76b524731d00>, 90)], '$26compare_op.2': [(<numba.core.ir.Assign object at 0x76b52473dd90>, 91)], '$28pred': [(<numba.core.ir.Assign object at 0x76b5246c38e0>, 91)], '$32build_slice.13.1': [(<numba.core.ir.Assign object at 0x76b52464d4c0>, 0)], '$32build_slice.14.1': [(<numba.core.ir.Assign object at 0x76b52464d5e0>, 0)], '$44build_slice.19.1': [(<numba.core.ir.Assign object at 0x76b52464ddc0>, 0)], '$44build_slice.20.1': [(<numba.core.ir.Assign object at 0x76b52464dee0>, 0)], '$48load_global.21.1': [(<numba.core.ir.Assign object at 0x76b52464e160>, 0)], '$50load_global.22.1': [(<numba.core.ir.Assign object at 0x76b52464e2e0>, 0)], '$50unary_negative.4': [(<numba.core.ir.Assign object at 0x76b5247adb80>, 127)], '$56call_function.25.1': [(<numba.core.ir.Assign object at 0x76b52464e7c0>, 0)], '$58compare_op.7': [(<numba.core.ir.Assign object at 0x76b52479e820>, 127)], '$58unary_negative.26.1': [(<numba.core.ir.Assign object at 0x76b52464e8e0>, 0)], '$60pred': [(<numba.core.ir.Assign object at 0x76b5246d11f0>, 127)], '$64binary_subscr.29.1': [(<numba.core.ir.Assign object at 0x76b52464ed30>, 0)], '$64compare_op.2': [(<numba.core.ir.Assign object at 0x76b5246dc220>, 131)], '$66load_global.30.1': [(<numba.core.ir.Assign object at 0x76b52464ee80>, 0)], '$66pred': [(<numba.core.ir.Assign object at 0x76b5246e1d90>, 131)], '$72call_function.33.1': [(<numba.core.ir.Assign object at 0x76b5246503a0>, 0)], '$74binary_subtract.34.1': [(<numba.core.ir.Assign object at 0x76b5246504f0>, 0)], '$76call_function.35.1': [(<numba.core.ir.Assign object at 0x76b5246506a0>, 0)], '$78get_iter.36.1': [(<numba.core.ir.Assign object at 0x76b5246507c0>, 0)], '$80for_iter.1.1': [(<numba.core.ir.Assign object at 0x76b5246508b0>, 80)], '$80for_iter.2.1': [(<numba.core.ir.Assign object at 0x76b5246509d0>, 80)], '$80for_iter.3.1': [(<numba.core.ir.Assign object at 0x76b524650af0>, 80)], '$80pred': [(<numba.core.ir.Assign object at 0x76b5246fb430>, 165)], '$82load_global.0': [(<numba.core.ir.Assign object at 0x76b524683850>, 169)], '$84load_method.1': [(<numba.core.ir.Assign object at 0x76b524688a30>, 169)], '$88call_method.3': [(<numba.core.ir.Assign object at 0x76b52468b6d0>, 169)], '$8load_global.2.1': [(<numba.core.ir.Assign object at 0x76b5246c2040>, 0)], '$90load_global.4': [(<numba.core.ir.Assign object at 0x76b52468e370>, 169)], '$92load_method.5': [(<numba.core.ir.Assign object at 0x76b524691070>, 169)], '$92return_value.1.1': [(<numba.core.ir.Assign object at 0x76b524652460>, 194)], '$96call_method.7': [(<numba.core.ir.Assign object at 0x76b524693cd0>, 169)], '$98compare_op.8': [(<numba.core.ir.Assign object at 0x76b524696970>, 169)], '$const24.9.1': [(<numba.core.ir.Assign object at 0x76b5246c0460>, 0)], '$const28.11.1': [(<numba.core.ir.Assign object at 0x76b52464d1c0>, 0)], '$const30.12.1': [(<numba.core.ir.Assign object at 0x76b52464d340>, 0)], '$const36.15.1': [(<numba.core.ir.Assign object at 0x76b52464d820>, 0)], '$const4.1': [(<numba.core.ir.Assign object at 0x76b524723dc0>, 90)], '$const40.17.1': [(<numba.core.ir.Assign object at 0x76b52464dac0>, 0)], '$const42.1': [(<numba.core.ir.Assign object at 0x76b524792eb0>, 127)], '$const42.18.1': [(<numba.core.ir.Assign object at 0x76b52464dc40>, 0)], '$const52.23.1': [(<numba.core.ir.Assign object at 0x76b52464e460>, 0)], '$const54.24.1': [(<numba.core.ir.Assign object at 0x76b52464e5e0>, 0)], '$const62.28.1': [(<numba.core.ir.Assign object at 0x76b52464eb80>, 0)], '$const68.31.1': [(<numba.core.ir.Assign object at 0x76b524650040>, 0)], '$const70.32.1': [(<numba.core.ir.Assign object at 0x76b5246501c0>, 0)], '$phi24.0': [(<numba.core.ir.Assign object at 0x76b5247359a0>, 90)], '$phi62.0': [(<numba.core.ir.Assign object at 0x76b5246d2e50>, 127)], '$phi80.0.1': [(<numba.core.ir.Assign object at 0x76b5246c0ee0>, 0)], '$phi82.1.1': [(<numba.core.ir.Assign object at 0x76b5246c2130>, 80)], 'bool22': [(<numba.core.ir.Assign object at 0x76b52472c5e0>, 90)], 'bool28': [(<numba.core.ir.Assign object at 0x76b524740bb0>, 91)], 'bool60': [(<numba.core.ir.Assign object at 0x76b5246cf4c0>, 127)], 'bool66': [(<numba.core.ir.Assign object at 0x76b5246df0a0>, 131)], 'bool80': [(<numba.core.ir.Assign object at 0x76b5246f7700>, 165)], 'full_shape0': [(<numba.core.ir.Assign object at 0x76b5246c2430>, 0)], 'index00': [(<numba.core.ir.Assign object at 0x76b524650dc0>, 82)], 'out0': [(<numba.core.ir.Assign object at 0x76b5246c0640>, 0)], 'stencil_index': [(<numba.core.ir.Assign object at 0x76b5246c01c0>, 90), (<numba.core.ir.Assign object at 0x76b5246c02e0>, 127)], 'threshold': [(<numba.core.ir.Assign object at 0x76b5246c27f0>, 0)], 'x': [(<numba.core.ir.Assign object at 0x76b5246c2910>, 0)], 'x0': [(<numba.core.ir.Assign object at 0x76b5246c0280>, 90), (<numba.core.ir.Assign object at 0x76b5247b0fd0>, 121)], 'x1': [(<numba.core.ir.Assign object at 0x76b5246c03a0>, 127), (<numba.core.ir.Assign object at 0x76b5246f1c70>, 159)], 'zero_pos': [(<numba.core.ir.Assign object at 0x76b5246c26d0>, 0)]}) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | SSA violators <numba.core.utils.OrderedSet object at 0x76b524669ee0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Fix SSA violator on var stencil_index 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | first assign: stencil_index 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: stencil_index = $const4.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const42.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: stencil_index.1 = $const42.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>, {90: [<numba.core.ir.Assign object at 0x76b524669130>], 127: [<numba.core.ir.Assign object at 0x76b524669520>]}) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='stencil_index' stmt=x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='stencil_index' stmt=x1 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b5246697c0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Fix SSA violator on var x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | first assign: x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: x0.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669ac0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>, {90: [<numba.core.ir.Assign object at 0x76b524669700>], 121: [<numba.core.ir.Assign object at 0x76b524669310>]}) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$phi24.0 = x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$26compare_op.2 = x0 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 91 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 90 from label 91 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$88call_method.3 = call $84load_method.1(x0, func=$84load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 169 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 165 from label 169 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 127 from label 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | insert phi node x0.2 = phi(incoming_values=[], incoming_blocks=[]) at 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 90 from label 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x0.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 91 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 91 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 90 from label 91 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x0' stmt=$108call_method.3 = call $104load_method.1(x0, func=$104load_method.1, args=[Var(x0, audio.py:1147)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 165 from label 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 127 from label 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Fix SSA violator on var x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0.2 = phi(incoming_values=[Var(x0, audio.py:1147), Var(x0.1, audio.py:1149), Var(x0, audio.py:1147)], incoming_blocks=[123, 121, 91]) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | first assign: x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: x1.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FreshVarHandler object at 0x76b524669af0> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Replaced assignments: defaultdict(<class 'list'>, {127: [<numba.core.ir.Assign object at 0x76b524669dc0>], 159: [<numba.core.ir.Assign object at 0x76b524656f10>]}) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x = arg(0, name=x) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: threshold = arg(1, name=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: zero_pos = arg(2, name=zero_pos) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: full_shape0 = getattr(value=x, attr=shape) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $8load_global.2.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $10load_attr.3.1 = getattr(value=$8load_global.2.1, attr=empty) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $14load_global.5.1 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $16load_attr.6.1 = getattr(value=$14load_global.5.1, attr=bool_) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0 = call $10load_attr.3.1(full_shape0, func=$10load_attr.3.1, args=[Var(full_shape0, <string>:2)], kws=[('dtype', Var($16load_attr.6.1, <string>:3))], vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const24.9.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const28.11.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const30.12.1 = const(int, 1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.13.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $32build_slice.14.1 = call $32build_slice.13.1($const28.11.1, $const30.12.1, func=$32build_slice.13.1, args=(Var($const28.11.1, <string>:4), Var($const30.12.1, <string>:4)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$32build_slice.14.1] = $const24.9.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const36.15.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const40.17.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.18.1 = const(NoneType, None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.19.1 = global(slice: <class 'slice'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $44build_slice.20.1 = call $44build_slice.19.1($const40.17.1, $const42.18.1, func=$44build_slice.19.1, args=(Var($const40.17.1, <string>:5), Var($const42.18.1, <string>:5)), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[$44build_slice.20.1] = $const36.15.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $48load_global.21.1 = global(range: <class 'range'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50load_global.22.1 = global(min: <built-in function min>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const52.23.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const54.24.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $56call_function.25.1 = call $50load_global.22.1($const52.23.1, $const54.24.1, func=$50load_global.22.1, args=[Var($const52.23.1, <string>:6), Var($const54.24.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58unary_negative.26.1 = unary(fn=<built-in function neg>, value=$56call_function.25.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const62.28.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64binary_subscr.29.1 = getitem(value=full_shape0, index=$const62.28.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66load_global.30.1 = global(max: <built-in function max>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const68.31.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const70.32.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $72call_function.33.1 = call $66load_global.30.1($const68.31.1, $const70.32.1, func=$66load_global.30.1, args=[Var($const68.31.1, <string>:6), Var($const70.32.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $74binary_subtract.34.1 = $64binary_subscr.29.1 - $72call_function.33.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $76call_function.35.1 = call $48load_global.21.1($58unary_negative.26.1, $74binary_subtract.34.1, func=$48load_global.21.1, args=[Var($58unary_negative.26.1, <string>:6), Var($74binary_subtract.34.1, <string>:6)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $78get_iter.36.1 = getiter(value=$76call_function.35.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi80.0.1 = $78get_iter.36.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 80 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.1.1 = iternext(value=$phi80.0.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.2.1 = pair_first(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80for_iter.3.1 = pair_second(value=$80for_iter.1.1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi82.1.1 = $80for_iter.2.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80for_iter.3.1, 82, 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 82 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: index00 = $phi82.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 194 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92return_value.1.1 = cast(value=out0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: return $92return_value.1.1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 90 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const4.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index = $const4.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0 = getitem(value=x, index=stencil_index, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $12unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $20compare_op.7 = $12unary_negative.4 <= x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool22 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $22pred = call bool22($20compare_op.7, func=bool22, args=(Var($20compare_op.7, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi24.0 = x0 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $22pred, 91, 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 91 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $26compare_op.2 = x0 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool28 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $28pred = call bool28($26compare_op.2, func=bool28, args=(Var($26compare_op.2, audio.py:1148),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $28pred, 115, 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 115 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 123 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 121 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x0.2 = phi(incoming_values=[Var(x0, audio.py:1147), Var(x0.1, audio.py:1149), Var(x0, audio.py:1147)], incoming_blocks=[123, 121, 91]) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $const42.1 = const(int, -1) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: stencil_index.1 = $const42.1 + index00 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $50unary_negative.4 = unary(fn=<built-in function neg>, value=threshold) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$58compare_op.7 = $50unary_negative.4 <= x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool60 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $60pred = call bool60($58compare_op.7, func=bool60, args=(Var($58compare_op.7, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $phi62.0 = x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$phi62.0 = x1 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $60pred, 131, 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $64compare_op.2 = x1 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$64compare_op.2 = x1 <= threshold 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 127 from label 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool66 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $66pred = call bool66($64compare_op.2, func=bool66, args=(Var($64compare_op.2, audio.py:1152),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $66pred, 153, 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 153 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: x1.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: bool80 = global(bool: <class 'bool'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $80pred = call bool80(zero_pos, func=bool80, args=(Var(zero_pos, audio.py:1144),), kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: branch $80pred, 169, 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 169 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $82load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $84load_method.1 = getattr(value=$82load_global.0, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $88call_method.3 = call $84load_method.1(x0.2, func=$84load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $90load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $92load_method.5 = getattr(value=$90load_global.4, attr=signbit) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$96call_method.7 = call $92load_method.5(x1, func=$92load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 169 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 165 from label 169 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | insert phi node x1.2 = phi(incoming_values=[], incoming_blocks=[]) at 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 127 from label 161 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 127 from label 131 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 127 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x1 = getitem(value=x, index=stencil_index.1, fn=<built-in function getitem>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 159 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | incoming_def x1.1 = const(int, 0) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: $96call_method.7 = call $92load_method.5(x1.2, func=$92load_method.5, args=[Var(x1.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $98compare_op.8 = $88call_method.3 != $96call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $100return_value.9 = cast(value=$98compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $100return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $102load_global.0 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $104load_method.1 = getattr(value=$102load_global.0, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $108call_method.3 = call $104load_method.1(x0.2, func=$104load_method.1, args=[Var(x0.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $110load_global.4 = global(np: <module 'numpy' from '/root/.pyenv/versions/3.9.20/lib/python3.9/site-packages/numpy/__init__.py'>) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $112load_method.5 = getattr(value=$110load_global.4, attr=sign) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def var='x1' stmt=$116call_method.7 = call $112load_method.5(x1, func=$112load_method.5, args=[Var(x1, audio.py:1151)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_top label 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | idom 165 from label 173 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | find_def_from_bottom label 165 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | replaced with: $116call_method.7 = call $112load_method.5(x1.2, func=$112load_method.5, args=[Var(x1.2, audio.py:1156)], kws=(), vararg=None, varkwarg=None, target=None) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $118compare_op.8 = $108call_method.3 != $116call_method.7 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: $120return_value.9 = cast(value=$118compare_op.8) 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: out0[index00] = $120return_value.9 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | ==== SSA block rewrite pass on 193 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | Running <numba.core.ssa._FixSSAVars object at 0x76b524656220> 2025-01-23 14:35:34 | DEBUG | numba.core.ssa | on stmt: jump 80 Due to a bug fix in https://github.com/huggingface/transformers/pull/28687 transcription using a multilingual Whisper will default to language detection followed by transcription instead of translation to English.This might be a breaking change for your use case. If you want to instead always translate your audio to English, make sure to pass `language='en'`.
Want to make some of these yourself?
Run this model