-
Updated
Dec 25, 2020 - Python
parallel
Here are 1,236 public repositories matching this topic...
Summary
LightGBM supports aliases for most parameter. For example, you can use bagging_fraction or sub_row to say "% of rows sampled during bagging".
The new dask API added in #3515 should be changed to support such aliases for the parameters it references.
See these comments for details on a few parameters that need to be updated to use aliases.
-
Updated
Dec 24, 2020 - JavaScript
-
Updated
Oct 30, 2018 - C++
PR #6447 adds a public API to get the maximum number of registers per thread (numba.cuda.Dispatcher.get_regs_per_thread()). There are other attributes that might be nice to provide - shared memory per block, local memory per thread, const memory usage, maximum block size.
These are all available in the FuncAttr named tuple: https://github.com/numba/numba/blob/master/numba/cuda/cudadrv/drive
-
Updated
Oct 3, 2020 - JavaScript
-
Updated
Dec 9, 2020 - JavaScript
-
Updated
Dec 15, 2020 - Jupyter Notebook
-
Updated
Apr 24, 2020 - JavaScript
-
Updated
Dec 22, 2020 - TypeScript
-
Updated
Dec 21, 2020 - JavaScript
Version of Singularity:
3.0.3
Expected behavior
Some progress or update information during the creation of the SIF file.
Actual behavior
During "Creating SIF file..." step, the console does not produce any visible output for the user - but does create the resulting file eventually.
Steps to reproduce behavior
I was executing a few “larger” builds through the bui
-
Updated
Aug 4, 2020 - Java
-
Updated
Nov 4, 2020 - Python
Is your feature request related to a problem? Please describe.
If I want to read data from a webDav/http endpoint using an oidc token, I'd need to be able to pass the token somehow in ROOT to the Davix client wrapper. Possibly through env variable and rootrc.
Describe the solution you'd like
Make the Davix client wrapper able to take the token from env variable and rootrc.
Addi
-
Updated
Dec 24, 2020 - Rust
-
Updated
Dec 4, 2017 - Rust
-
Updated
Dec 1, 2020 - JavaScript
-
Updated
Dec 6, 2020 - C
-
Updated
Dec 9, 2020 - C++
It would be neat to be able to read a remote file to a variable.
Here's my hacky implementation:
from pssh.ssh2_client import SSHClient
from pssh.native._ssh2 import wait_select
from pssh.constants import DEFAULT_RETRIES, RETRY_DELAY
from ssh2.error_codes import LIBSSH2_ERROR_EAGAIN
from ssh2.sftp import LIBSSH2_FXF_READ, LIBSSH2_SFTP_S_IRUSR
class MySSH2Client(SSHClient):
de
Improve this page
Add a description, image, and links to the parallel topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the parallel topic, visit your repo's landing page and select "manage topics."
What is the problem?
It seems that Ray doesn't allow using a class variable to keep track of some shared class-level information, such as how many instances of the class have been created.
I understand there are at least a couple of ways I can accomplish sharing state across instances: