gpu
Here are 2,708 public repositories matching this topic...
-
Updated
Feb 16, 2022 - Jupyter Notebook
As shown in taichi-dev/taichi#3910, replacing property with simple attributes can speedup python part of taichi a lot.
Lessons learned is that we should avoid using @property when applicable since it's expensive. So let's review the usage of @property in our python codebase and replace them as much as possible.
Here's a list of simple grep in our codebase showing
-
Updated
Feb 18, 2022 - Makefile
At this moment relu_layer op doesn't allow threshold configuration, and legacy RELU op allows that.
We should add configuration option to relu_layer.
-
Updated
Nov 11, 2021 - JavaScript
-
Updated
Feb 23, 2022 - Python
-
Updated
Feb 16, 2022 - Python
I am working on creating a WandbCallback for Weights and Biases. I am glad that CatBoost has a callback system in place but it would be great if we can extend the interface.
The current callback only supports after_iteration that takes info. Taking inspiration from XGBoost callback system it would be great if we can have before iteration that takes info, before_training, and `after
Hi ,
I have tried out both loss.backward() and model_engine.backward(loss) for my code. There are several subtle differences that I have observed , for one retain_graph = True does not work for model_engine.backward(loss) . This is creating a problem since buffers are not being retained every time I run the code for some reason.
Please look into this if you could.
I want to preemptively start this thread to survey for suggestions. A cursory search lead me to this promising repository https://github.com/enigo-rs/enigo
Since closing the window is a common point of failure, that will be the focus for the first pass of testing as I learn how to use the library.
Components for testing:
- bridge
- editor
- renderer
- settings
- wind
-
Updated
Feb 22, 2022 - C++
Our users are often confused by the output from programs such as zip2john sometimes being very large (multi-gigabyte). Maybe we should identify and enhance these programs to output a message to stderr to explain to users that it's normal for the output to be very large - maybe always or maybe only when the output size is above a threshold (e.g., 1 million bytes?)
-
Updated
Feb 16, 2022 - Python
Description
Calling vectorize with a non-None value for the signature parameter outputs this error message about the excluded parameter.
NotImplementedError: cupy.vectorize does not support `excluded` option currently.
Inspecting the code, it is obvious there is a copy-paste error and the 2nd error message should be change excluded to signature.
-
Updated
Feb 23, 2022 - Jupyter Notebook
-
Updated
Jan 5, 2022 - Python
Describe the bug
Unable to read data from a web location using address filed
To Reproduce
from pycaret.datasets import get_data
data = get_data(
"economic_indicators_all_ex_3mo_china_inc_treas3mo",
address="https://raw.githubusercontent.com/ngupta23/DS6373_TimeSeries/2b40f0071c3b7ec6a05dc0106f64e041f8cbaaef/Projects/gdp_prediction/data/",
) -
Updated
Feb 23, 2022 - C++
Is your feature request related to a problem? Please describe.
While reviewing PR #9817 to introduce DataFrame.diff, I noticed that it is restricted to acting on numeric types.
A time-series diff is probably a very common user need, if provided a series of timestamps and seeking the durations between observations.
Pandas supports diffs on non-numeric types like timestamps:
-
Updated
Apr 24, 2020 - Jsonnet
环境
1.系统环境:
2.MegEngine版本:1.6.0rc1
3.python版本:Python 3.8.10
The program stuck at net.load when I was trying to use the MegFlow. I wait for more than 10min and there is no sign of finishing it.
-
Updated
Jun 13, 2020 - HTML
Description
The log macros and functions are internally calls out to "whatever zany stuff the Rust ecosystem has dreamt up" so it's nearly impossible to p
Improve this page
Add a description, image, and links to the gpu topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the gpu topic, visit your repo's landing page and select "manage topics."



Currently many tests run in forks but they are expected to fail due to lack of credentials in forks.
This is a bit annoying to contributors:

A failed job example: https://github.com/ppwwyyxx/pytorch/runs/5137367784?check_suite_focus=true
I thin