Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dist matrix #1

Open
wants to merge 23 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
931ccce
Remove usage of the word "allocate" in reference to local memory
sgbaird Aug 22, 2021
4123b0f
fix:updated url to use issue template
Stark-developer01 Aug 26, 2021
e3bfaf0
fix:updated url in error message and feature request to use issue tem…
Stark-developer01 Aug 26, 2021
645f34c
fix:updated url for error report and feature request
Stark-developer01 Aug 26, 2021
ca35fc7
fix:updated url for error report and feature request using issue temp…
Stark-developer01 Aug 26, 2021
dcdde27
test_inspect_cli: Decode exception with default (utf-8) codec
gmarkall Aug 23, 2021
6ce6a6d
Update docs/source/cuda/memory.rst
sgbaird Aug 28, 2021
e3a7eea
Update memory.rst
sgbaird Aug 28, 2021
9356df0
Merge pull request #7347 from Stark-developer01/master
sklam Aug 30, 2021
9d13579
Merge pull request #7348 from gmarkall/issue-7337
sklam Aug 30, 2021
7f72315
Merge pull request #7329 from sparks-baird/memory-docs
sklam Sep 2, 2021
35ff818
Create helper.py
sgbaird Sep 6, 2021
367ac21
Create myjit.py
sgbaird Sep 6, 2021
ce4dd4d
Create test_helper.py
sgbaird Sep 6, 2021
0463c09
Create test_dist_matrix.py
sgbaird Sep 6, 2021
61f6927
Create dist_matrix.py
sgbaird Sep 6, 2021
aa413a9
Update helper.py
sgbaird Sep 6, 2021
0bc56b2
Update test_dist_matrix.py
sgbaird Sep 6, 2021
571af8d
Revert "Create myjit.py"
sgbaird Sep 6, 2021
0eb6b8d
bad call to MACHINE_BITS
sgbaird Sep 6, 2021
3727396
Update dist_matrix.py
sgbaird Sep 6, 2021
87bba91
remove scipy-like functionality
sgbaird Sep 7, 2021
f862f16
Revert "remove scipy-like functionality"
sgbaird Sep 7, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 9 additions & 5 deletions docs/source/cuda/memory.rst
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,15 @@ unlike traditional dynamic memory management.

Allocate a local array of the given *shape* and *type* on the device.
*shape* is either an integer or a tuple of integers representing the array's
dimensions and must be a simple constant expression. *type* is a
:ref:`Numba type <numba-types>` of the elements needing to be stored in the
array. The array is private to the current thread. An array-like object is
returned which can be read and written to like any standard array
(e.g. through indexing).
dimensions and must be a simple constant expression. *type* is a :ref:`Numba
type <numba-types>` of the elements needing to be stored in the array. The
array is private to the current thread. An array-like object is returned
which can be read and written to like any standard array (e.g. through
indexing).

.. seealso:: The Local Memory section of `Device Memory Accesses
<https://docs.nvidia.com/cuda/cuda-c-programming-guide/index.html#device-memory-accesses>`_
in the CUDA programming guide.

Constant memory
===============
Expand Down
10 changes: 6 additions & 4 deletions numba/core/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ def termcolor():
Unsupported functionality was found in the code Numba was trying to compile.

If this functionality is important to you please file a feature request at:
https://github.com/numba/numba/issues/new
https://github.com/numba/numba/issues/new?template=feature_request.md
"""

interpreter_error_info = """
Expand All @@ -359,7 +359,8 @@ def termcolor():
environment variable to non-zero, and then rerun the code).

If the code is valid and the unsupported functionality is important to you
please file a feature request at: https://github.com/numba/numba/issues/new
please file a feature request at:
https://github.com/numba/numba/issues/new?template=feature_request.md

To see Python/NumPy features supported by the latest release of Numba visit:
https://numba.pydata.org/numba-doc/latest/reference/pysupported.html
Expand All @@ -376,7 +377,8 @@ def termcolor():
https://numba.pydata.org/numba-doc/latest/reference/pysupported.html?highlight=exceptions#constructs

If the code is valid and the unsupported functionality is important to you
please file a feature request at: https://github.com/numba/numba/issues/new
please file a feature request at:
https://github.com/numba/numba/issues/new?template=feature_request.md

If you think your code should work with Numba. %s
""" % feedback_details
Expand All @@ -395,7 +397,7 @@ def termcolor():

If you think your code should work with Numba, please report the error message
and traceback, along with a minimal reproducer at:
https://github.com/numba/numba/issues/new
https://github.com/numba/numba/issues/new?template=bug_report.md
"""

reportable_issue_info = """
Expand Down
Loading