Thomas Peters

Results 19 comments of Thomas Peters

done for treewalk interp here a439c0c, need for bytecode interp

started this in c1d57ab, but we need line numbers too

@munificent > The preceding switch case exhaustively covers all of the enum values so that should be enough for the compiler to know it won't continue past the switch. C...

@sergey-serebryakov : do you know what kind of DeviceOption to set for CUDA? I've tried `DeviceOption(caffe2_pb2.CUDA)` but that hits @KeyKy's error.

Thanks. So when I parse that string (`predict_net`) into a `caffe2_pb2.NetDef` protobuf and iterate over its `op`fields, none of them have CUDNN `engine` (in fact, they're all empty strings). Does...

Hmm, this seems to be related to https://github.com/caffe2/caffe2/issues/323, which doesn't seem to be resolved yet.

Hi @sergey-serebryakov, thanks. I tried your `def load_net_def` from #323, with `device_opts = core.DeviceOption(caffe2_pb2.CUDA, gpu_id)` (having `gpu_id` = 0) on my `predict_net` in this example, and I get ``` Traceback...

I wasn't explicitly pushing into the workspace with `FeedBlob`, I was using the `Predictor` interface, as in some of the tutorials ``` image = np.random.rand(1, 3, height, width).astype(np.float32) results =...

@salexspb thanks, I'll look into the lower-level approach for now.

Hi @raininglixinyu , I haven't looked at this in a few weeks, and caffe2 is moving pretty fast, but the last time I was working on this I believe my...