Skip to content

Commit d73e721

Browse files
committed
Update for reviewer comments (@randomir & @thisac) and plugin
1 parent bd15813 commit d73e721

File tree

7 files changed

+17
-11
lines changed

7 files changed

+17
-11
lines changed

docs/concepts/index.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ Concepts and Terminology
404404

405405
Learn more: :ref:`concept_models_nonlinear`.
406406

407-
ocean
407+
Ocean
408408
Ocean\ |tm| software is a suite of tools for using
409409
`D-Wave Quantum Inc. <https://www.dwavesys.com>`_ quantum computers and
410410
:term:`hybrid` :term:`solvers <solver>`.
@@ -648,7 +648,7 @@ Concepts and Terminology
648648
`subgraph <https://en.wikipedia.org/wiki/Glossary_of_graph_theory_terms#subgraph>`_
649649
on Wikipedia.
650650

651-
symbolic Math
651+
symbolic math
652652
:ref:`index_dimod` supports symbolic math that can simplify your
653653
coding of problems.
654654

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
python_requires = setup_cfg['options']['python_requires']
3030

31-
copyright = 'D-Wave Quantum Inc' #setup_cfg['metadata']['author']
31+
copyright = 'D-Wave'
3232

3333
rst_prolog = f"""
3434
.. |python_requires| replace:: {python_requires}

docs/index.rst

+8-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,13 @@
4343
.. tab-item:: ML/AI
4444
:name: tab_ml_ai
4545

46-
See the :ref:`qpu_stating_problems_machine_learning` section.
46+
D-Wave's
47+
`PyTorch Plugin <https://github.com/dwavesystems/dwave-pytorch-plugin>`_
48+
provides an interface between D-Wave's quantum-classical :term:`hybrid`
49+
:term:`solvers <solver>` and the `PyTorch <https://pytorch.org/>`_
50+
framework.
51+
52+
Also see the :ref:`qpu_stating_problems_machine_learning` section.
4753

4854
Additional content for this topic is currently under development.
4955

@@ -77,7 +83,7 @@ Welcome to |dwave_short|
7783
* - :ref:`index_leap_sapi`
7884
- Quantum cloud service's account management, release
7985
notes, IDE support, etc.
80-
* - :ref:`concepts <index_concepts>`
86+
* - :ref:`Concepts <index_concepts>`
8187
- Learn the relevant terminology and the fundamental
8288
concepts. **Search for terms here.**
8389
* - **More** > :ref:`Licenses <licenses>`

docs/leap_sapi/dev_env.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ Requirements
3535
If you configure your IDE to use
3636
`Ocean-Dev Docker Images <https://github.com/dwavesystems/ocean-dev-docker>`_,
3737
your development environment is updated with a recent Ocean SDK release.
38-
You can see an example `here <https://github.com/dwave-examples/sudoku>`_.
38+
You can see an example `here <https://github.com/dwave-examples/portfolio-optimization>`_.

docs/leap_sapi/sapi_rest.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ explained in the :ref:`sapi_rest_url_token_setup` subsection.
124124
.. testsetup:: rest_live
125125

126126
import os
127-
SAPI_TOKEN = os.environ["SAPI_TOKEN"] # https://git.dwavesys.local/projects/SAPI/repos/documentation/pull-requests/528/overview
127+
SAPI_TOKEN = os.environ["SAPI_TOKEN"] # pull-request 528
128128

129129
.. doctest:: rest_live
130130
:skipif: False
@@ -153,7 +153,7 @@ Resources
153153
.. testsetup:: rest_live
154154

155155
import os
156-
SAPI_TOKEN = os.environ["SAPI_TOKEN"] # https://git.dwavesys.local/projects/SAPI/repos/documentation/pull-requests/528/overview
156+
SAPI_TOKEN = os.environ["SAPI_TOKEN"] # pull-request 528
157157

158158
This chapter describes supported Solver Application Programming Interface (SAPI)
159159
resources and provides example usages.
@@ -1614,7 +1614,7 @@ End-to-End Examples
16141614
.. testsetup:: rest_live
16151615

16161616
import os
1617-
SAPI_TOKEN = os.environ["SAPI_TOKEN"] # https://git.dwavesys.local/projects/SAPI/repos/documentation/pull-requests/528/overview
1617+
SAPI_TOKEN = os.environ["SAPI_TOKEN"] # pull-request 528
16181618

16191619
This chapter demonstrates using the RESTful Solver Application Programming
16201620
Interface (SAPI) directly---without :ref:`Ocean software <index_ocean_sdk>`

docs/ocean/install.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ and install the SDK to your virtual environment; for example:
7676
7777
git clone https://github.com/dwavesystems/dwave-ocean-sdk.git
7878
cd dwave-ocean-sdk
79-
python setup.py install
79+
pip install .
8080
8181
Note: To install a particular tool within the SDK only, follow the
8282
:ref:`link <ocean_source_code>` to the GitHub repository for the tool, and

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ name = dwave-ocean-sdk
1515
project_urls =
1616
Changes = https://github.com/dwavesystems/dwave-ocean-sdk/releases
1717
Documentation = https://docs.dwavequantum.com/
18-
Souce Code = https://github.com/dwavesystems/dwave-ocean-sdk
18+
Source Code = https://github.com/dwavesystems/dwave-ocean-sdk
1919
url = https://github.com/dwavesystems/dwave-ocean-sdk
2020
version = attr: dwaveoceansdk.__version__
2121

0 commit comments

Comments
 (0)