Ehsan Azar
Ehsan Azar
The only attribute is op_type. For `nn.Conv2dBias` it is `conv2d_bias` so I changed [test_conv_bias](https://github.com/facebookincubator/AITemplate/blob/main/tests/unittest/ops/test_conv_bias.py) accordingly but it too passes the UT. ```python class ConvBiasTestCase(unittest.TestCase): def test_fp16(self, batch=4): target = detect_target()...
I think this was because I had to delete the temp folder.
I see `conv2d_0.cu` in importing `"cutlass/conv/kernel/default_conv2d_fprop.h"` but I think it should import and use `"default_conv2d_group_fprop.h"`. So this must be related to CodeGen
Created a PR mostly to get feedback. Added depthwise convolution (available in cutlass 2.10 as analytic). The test passes. Would appreciate any feedback. I just saw there is a PR...
Why is the PR closed? this looks like a legit bug. CPU mode should not try to use CUDNN if it caffe is compiled `USE_CUDNN`
There was recently a [PR merged](https://github.com/dashesy/cc-tool/pull/15). I think you still need to pass some libraries manually to the configure script. As mentioned in that PR (e.g. LIBS="-latomic").
Some definitions [here](https://github.com/dashesy/cc-tool/blob/master/src/programmer/cc_debug_interface.h). Not sure what 0x1f is but it could be all those config flags added: 0x1+0x2+0x4+0x8+0x10 (not sure what 0x10 flag is though)
Not out of the box. Main dependency is libusb, if there is a port for it (assuming root access) then it should be doable. I have no idea how OTG...
Even with turning off `use_jedi` Tab completion completely hangs, and I have to kill ipython ``` Python 3.6.8 |Anaconda, Inc.| (default, Dec 30 2018, 01:22:34) IPython 7.5.0 -- An enhanced...
@ztaylor96 my issue was a 3rd party library infinite loop in init module. Even `Ctrl+C` did not work (and I had to kill ipython), which was the actual issue. So...