Skip to content

Commit

Permalink
Finalize 0.3 release (#205)
Browse files Browse the repository at this point in the history
* Update remote URLs

* Update CHANGELOG

* Add pylint ignore

* Bump version to 0.3
  • Loading branch information
diego-plan9 authored Apr 14, 2021
1 parent 0496cb6 commit 3938f9d
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ confidence=
# --disable=W".
disable=similarities,
no-self-use,
fixme
fixme,
useless-type-doc

# Enable the message, report, category or checker with the given id(s). You can
# either give multiple identifier separated by comma (,) or put this option
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The format is based on [Keep a Changelog], and this project adheres to
* `Security` in case of vulnerabilities.


## [0.3.0]
## [0.3.0] - 2021/04/14

### Added

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,4 +199,4 @@ This project is licensed under [Apache License 2.0].
[Flash memory]: https://en.wikipedia.org/wiki/Flash_memory
[Kirchhoff’s circuits laws]: https://en.wikipedia.org/wiki/Kirchhoff%27s_circuit_laws
[online demo]: https://analog-ai-demo.mybluemix.net/
[AIHW Composer]: TODO
[AIHW Composer]: https://aihw-composer.draco.res.ibm.com
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -136,5 +136,5 @@ Reference

:ref:`genindex` | :ref:`modindex` | :ref:`search`

.. _AIHW Composer: TODO
.. _AIHW Composer: https://aihw-composer.draco.res.ibm.com
.. _arXiv paper: https://arxiv.org/abs/2104.02184
10 changes: 7 additions & 3 deletions docs/source/using_experiments.rst
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ session, as a way of tracking progress). This can be turned off by the
Cloud Runner
------------

Experiments can also be run in the cloud at our companion ``AIHW Composer``
Experiments can also be run in the cloud at our companion `AIHW Composer`_
application, that allows for executing the experiments remotely using hardware
acceleration and inspect the experiments and their results visually, along
other features.
Expand All @@ -146,10 +146,10 @@ Setting up your account
^^^^^^^^^^^^^^^^^^^^^^^

The integration is provided by a Python client included in ``aihwkit`` that
allows connecting to the ``AIHW Composer`` platform. In order to be able to
allows connecting to the `AIHW Composer`_ platform. In order to be able to
run experiments in the cloud:

1. Register in the platform and generate an ``API token`` in your user page.
1. Register in the platform and generate an `API token`_ in your user page.
This token acts as the credentials for connecting with the application.

2. Store your credentials by creating a ``~/.config/aihwkit.conf`` file with
Expand Down Expand Up @@ -224,3 +224,7 @@ Retrieving a previous cloud experiment
The list of experiments previously executed in the cloud can be retrieved via::

cloud_experiments = my_cloud_runner.list_experiments()


.. _AIHW Composer: https://aihw-composer.draco.res.ibm.com/
.. _API token: https://aihw-composer.draco.res.ibm.com/account
2 changes: 1 addition & 1 deletion src/aihwkit/VERSION.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.0rc1
0.3.0
2 changes: 1 addition & 1 deletion src/aihwkit/cloud/client/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from typing import Dict
from configparser import ConfigParser

DEFAULT_URL = ''
DEFAULT_URL = 'https://api-aihw-composer.draco.res.ibm.com'


class ClientConfiguration:
Expand Down

0 comments on commit 3938f9d

Please sign in to comment.