jaycedowell

Results 99 comments of jaycedowell

Looks like the main culprit is: ``` warning: ‘cudaError_t cudaDeviceSetSharedMemConfig(cudaSharedMemConfig)’ is deprecated [ -Wdeprecated-declarations] ``` I found [this on SO](https://stackoverflow.com/questions/78211209/cudafuncsetsharedmemconfig-is-deprecated-in-12-4-why) which indicates that there isn't a replacement and that it...

These test failures might be related to #220.

It looks like these failures (and some of those part of the testing for https://github.com/ledatelescope/bifrost/pull/166) are related to missing file(s) needed by the extended `testbench` tests. Maybe we should drop...

I did one more check through code to see if I could find any lingering calls to `bifrost.memory.memcpy*` or `bifrost.memory.memset*`. Looks clean. I think this one is ready to go.

@dentalfloss1 One thing I noticed when looking into this was that `AccumulateOp` is directly saving the ring's contents to `final`, i.e., https://github.com/ledatelescope/bifrost/blob/ibverb-support/test/test_udp_io.py#L184 That's probably a bad idea since the ring's...

I'm thinking through this some more. For the first part in `AccumulateOp` we have something like: ``` import numpy as np final = [] for i in range(100): final.append( np.random.rand(500)...

I tried the test suggested above and it does... something. I still get failures on my desktop but now they are things like a comparison with an array full of...

And why are all of the self-hosted tests failing now with ``` checking for valid CUDA architectures... found: 50 52 53 60 61 62 70 72 75 80 86 87...

Maybe this was all a problem with how we were directly saving the ring's contents rather than a copy. After refactoring the disk and UDP I/O tests in `ibverb-support` the...