Skip to content

Commit

Permalink
Fixes from review
Browse files Browse the repository at this point in the history
  • Loading branch information
seibert committed Aug 28, 2017
1 parent 3ef2a2c commit c3b7a2a
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2012, Continuum Analytics, Inc.
Copyright (c) 2012, Anaconda, Inc.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Installing
==========

The easiest way to install numba and get updates is by using the Anaconda
Distribution: https://www.anaconda.com/downloads
Distribution: https://www.anaconda.com/download

::

Expand Down
2 changes: 1 addition & 1 deletion buildscripts/condarecipe.buildbot/license.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2017, Anaconda, Inc.
Copyright (c) 2012, Anaconda, Inc.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion buildscripts/condarecipe.hsa/license.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2017, Anaconda, Inc.
Copyright (c) 2012, Anaconda, Inc.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion buildscripts/condarecipe.jenkins/license.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2017, Anaconda, Inc.
Copyright (c) 2012, Anaconda, Inc.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion buildscripts/condarecipe.local/license.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2017, Anaconda, Inc.
Copyright (c) 2012, Anaconda, Inc.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion docs/source/developer/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ You can expect this to take less than 20 minutes.

Some platforms (such as Windows) cannot be hosted by Travis-CI, and the
Numba team has therefore access to a separate platform provided by
`Anaconda, Inc. <https://anaconda.com/>`_, our sponsor. We hope parts of that
`Anaconda, Inc. <https://anaconda.com>`_, our sponsor. We hope parts of that
infrastructure can be made public in the future.


Expand Down
5 changes: 3 additions & 2 deletions docs/source/user/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -102,11 +102,12 @@ apply them.
Does Numba automatically parallelize code?
------------------------------------------

In can, in some cases:
It can, in some cases:

* Ufuncs and gufuncs with the ``target="parallel"`` option will run on multiple threads.
* The experimental ``parallel=True`` option to ``@jit`` will attempt to optimize
array operations and run them in parallel.
array operations and run them in parallel. It also adds support for ``prange()`` to
explicitly parallelize a loop.

You can also manually run computations on multiple threads yourself and use
the ``nogil=True`` option (see :ref:`releasing the GIL <jit-nogil>`). Numba
Expand Down
2 changes: 1 addition & 1 deletion docs/source/user/installing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Installing using Conda
The easiest way to install numba and get updates is by using Conda,
a cross-platform package manager and software distribution maintained
by Anaconda, Inc. You can either use `Anaconda
<https://www.anaconda.com/download/>`_ to get the full stack in one download,
<https://www.anaconda.com/download>`_ to get the full stack in one download,
or `Miniconda <https://conda.io/miniconda.html>`_ which will install
the minimum packages needed to get started.

Expand Down

0 comments on commit c3b7a2a

Please sign in to comment.