Fei Xia
Fei Xia
@rrwick Hi Ryan, I am interested in implementing support for GFA format and barcoded FASTG format ([something](http://10xgenomics.com) I am working on). And I am willing to contribute. I think supporting...
Ryan, I just checked that out. The GFA looks great! That's my main concern. barcoded FASTG is about my own project and the specification is not finalized yet. The idea...
Awesome, thank you! I will let you know how things go.
@apaszke I am trying to get the data from CudaTensor, I changed the example library to the following but that gives me seg fault: ``` int my_lib_add_forward_cuda(THCudaTensor *input1, THCudaTensor *input2,...
I guess my question is about how to reuse cuda code. When I attempted to do so, it tells me `threadId.x` is not defined.
Thanks for your reply. @apaszke Yes, I finished the CPU version porting and it was quite intuitive. And I read the CUDA programming guide. But how can I build a...
@mattmacy Thanks, I will give it a shot!
Thanks @Cadene, I am aware of it. I am going to fix the existing issues for this repo when I have a chance for current users. But given STN is...
You can use transpose: `img = img.transpose(1,2).transpose(2,3)`, this should change BCHW layout to BHWC
`transpose(1,2).transpose(2,3)` changes the internal array, you can use `.size()` to check, I have been using that all the time. `test_conv_stn.ipynb` actually uses that fyi. On a separate note, I guess...