PlayOffQuinnCook
PlayOffQuinnCook t1_iu7ug9w wrote
Reply to comment by PlayOffQuinnCook in [R] Open source inference acceleration library - voltaML by harishprab
Oh I guess the library supports accelerating a couple of well known models defined in the models module?
PlayOffQuinnCook t1_iu7ualp wrote
Congrats on open sourcing! Quick question on fusion - how do you guys fuse layers like conv, bn, relu, etc, if they are not named conv1, bn1, relu in the nn.Module.
PlayOffQuinnCook t1_iueq6l4 wrote
Reply to comment by harishprab in [R] Open source inference acceleration library - voltaML by harishprab
I understand that. But let’s say I have these operators named as c1, b1, r1 instead of what it expects, the fusion logic won’t work. So my question was if this library works only a fixed set of models defined in the library itself or it can work against any models users write.