parallel
Here are 1,284 public repositories matching this topic...
Summary
mypy shows some issues in LightGBM's Python package.
mypy --ignore-missing-imports python-package/18 errors in 4 files (click me)
python-package/lightgbm/compat.py:12: error: Name 'Series' already defined (possibly by an import)
python-package/lightgbm/compat.py:17: error: Name 'DataFrame' already defined (possibly by a
-
Updated
Feb 22, 2021 - JavaScript
-
Updated
Oct 30, 2018 - C++
(Noticed whilst reviewing #6695)
From the docs for numba.cuda.atomic.compare_and_swap:
class compare_and_swap(ary, old, val)
Conditionally assign val to the first element of an 1D array ary if the current value matches old.
Returns the current value as if it is loaded atomically.
It seem
Motivation
The optuna.visualization.plot_pareto_front will be added soon in PR #2110. This function is based on plotly. We would like to see the Matplotlib backend implementation of this function, whose path should be optuna.visualization.matplotlib.plot_pareto_front.
This task can be split into the 2-dimensional case and 3-dimensional case independently.
-
Updated
Jan 28, 2021 - JavaScript
-
Updated
Feb 3, 2021 - JavaScript
-
Updated
Feb 19, 2021 - Jupyter Notebook
-
Updated
Feb 23, 2021 - TypeScript
-
Updated
Apr 24, 2020 - JavaScript
-
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
Explain what you would like to see improved
TCling::CheckClassInfo() should return (by parameter) the found decl, such that TClass::Init() can use it to construct the TClingClassInfo and that doesn't need to repeat the lookup.
To Reproduce
One:
#0 cling::LookupHelper::findScope (this=0x5555555f7be0, className=..., diagOnOff=cling::LookupHelper::NoDiagnostics,
resu
-
Updated
Feb 23, 2021 - Rust
-
Updated
Feb 14, 2021 - JavaScript
-
Updated
Dec 4, 2017 - Rust
-
Updated
Dec 6, 2020 - C
-
Updated
Jan 6, 2021 - C++
internal information security wants us to disable it so curious if there is an easy way to do that.
Is your feature request related to a problem? Please describe.
Would like to be able to use callback function for run_command to call when a command has finished executing.
Describe the solution you'd like
def my_cb(host_out, my_arg):
for line in host_out.stdout:
print(line)
client.run_command('echo me', callback=my_cb, callback_extra_args=('my_arg',))
`m
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."
This is the comment as mentioned here https://github.com/ray-project/ray/pull/14122/files#diff-10f3fda5ddb0ff3dbb8f347dd7fc53101d2dd140585e72f2d55be831bd5455dbR134
What is the problem?
In most cases, a client object's lifetime matches its ID, but this isn't so with named actors. Performance can be improved by reverting this call to non-blocking.
Reproduction outline
Here's how na