Thijs Vogels

Results 8 issues of Thijs Vogels

Can meteor-mysql be used with React rendering in Meteor? I have a problem with a subscription that requires a parameter. I tried the following: ``` jsx ... mixins: [ReactMeteorData], getMeteorData()...

When a publication requires a user to be logged in, like this: ``` js Meteor.publish('pubname', function(param) { if (!this.userId) { this.stop(); return; } check(param,Number); return liveDb.select( 'SELECT * FROM table...

Thanks very much for taking the effort to make your code available. While reproducing your results, I found that the default number of clean examples in the Cifar experiments is...

Hi! Thanks a lot for the ATOMO paper and sharing your code over here. I just had a look at your implementation of 1-bit QSGD compression, and was wondering where...

How would one go about checking for connection status in this framework? In the ideal case, I would be looking for a Meteor-style reactive variable that says whether the DDP...

Python 3.12 is now the default on Ubuntu 24.04, so this adds a binary distribution for python 3.12 to the CI.

Hello! I was wondering if there is an API to select the GPU to use on a multi-GPU machine? I would like to use drjit in an ML training loop...

When you import `gpu4pyscf`, it creates CUDA streams on all visible CUDA devices. https://github.com/pyscf/gpu4pyscf/blob/f805329f11dcda25c27e1eedbb1bbb1890e45327/gpu4pyscf/__config__.py#L20-L23 There are cases where this is undesirable, for example when a multiple copies of a program...

feature request