Dan O'Shea
Dan O'Shea
Just to note, from python directly this works: ``` import boto.glacier c = boto.glacier.connect_to_region("us-west-1") c.list_vaults() ``` Calling `glacier` as ``` glacier --region us-west-1 vault list ``` I still get the...
FWIW, this happens reasonably often for me when I've updated `juptyerlab` or one of its dependencies. After setting up a debug environment where I can hook into the `imatlab` kernel...
Agreed. I don't know if they are connected. I think that Matlab itself may occasionally leave the history file in bad shape, but I cannot explain why the xml parsing...
Hi @anntzer, I've made a few changes to the kernel in my fork that help with debugging. Essentially, the kernel checks whether "dbstop if error" is set. If not, it...
Ah, oops. That’s this function here https://github.com/djoshea/matlab-utils/blob/master/string/isstringlike.m I’ll push a fix soon but for now you can copy that function definition into the bottom of the saveFigure file. Thanks!
As I mentioned, I don't think tf-nightly-gpu is running on the GPU in Colab. The issue is only present on GPU. In the gist you sent, the cell where it...
I could potentially try developing it, but I unfortunately don't know where to start. Is there a guide somewhere to implementing new ops for the GPU?
FYI, the only change this required to use Sphinx 5.3.0 was to edit `source/numsec.py`: ```diff def setup(app): - app.override_domain(CustomStandardDomain) + app.add_domain(CustomStandardDomain, override=True) app.connect('doctree-resolved', doctree_resolved) ```