Skip to content

Commit

Permalink
Remove leftover lab-cosmo branding
Browse files Browse the repository at this point in the history
  • Loading branch information
PicoCentauri committed Feb 21, 2025
1 parent be91711 commit 66b8c77
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ browser
coverage html
firefox htmlcov/index.html
.. _codecov: https://codecov.io/gh/lab-cosmo/metatensor
.. _codecov: https://codecov.io/gh/metatensor/featomic

Writing your own calculator
---------------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/src/explanations/concepts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ After using a calculator on one or multiple systems, users will get the
numerical representation of their atomic systems in a ``descriptor`` object.
Featomic uses `metatensor`_ ``TensorMap`` type when returning descriptors.

.. _metatensor: https://lab-cosmo.github.io/metatensor/
.. _metatensor: https://docs.metatensor.org

A ``TensorMap`` can be seen as a dictionary mapping some keys to a set of data
blocks. Each block contains both data (and gradients) arrays — i.e.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/get-started/featomic.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ representation but supports several:

.. _DScribe: https://singroup.github.io/dscribe/
.. _QUIP: https://www.libatoms.org
.. _metatensor: https://lab-cosmo.github.io/metatensor/
.. _metatensor: https://docs.metatensor.org
6 changes: 3 additions & 3 deletions docs/src/get-started/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ For usage from C++

.. code-block:: bash
git clone https://github.com/lab-cosmo/featomic
git clone https://github.com/metatensor/featomic
cd featomic/featomic-torch
mkdir build && cd build
cmake ..
Expand Down Expand Up @@ -164,5 +164,5 @@ Other useful configuration options are:
| | install metatensor-torch? | |
+----------------------------------------+-----------------------------------------------+----------------+

.. _C++ interface of metatensor: https://lab-cosmo.github.io/metatensor/latest/get-started/installation.html#installing-the-c-and-c-library
.. _TorchScript interface of metatensor: https://lab-cosmo.github.io/metatensor/latest/get-started/installation.html#for-usage-from-c
.. _C++ interface of metatensor: https://docs.metatensor.org/latest/get-started/installation.html#installing-the-c-and-c-library
.. _TorchScript interface of metatensor: https://docs.metatensor.org/latest/get-started/installation.html#for-usage-from-c
2 changes: 1 addition & 1 deletion featomic-torch/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ set(REQUIRED_METATENSOR_TORCH_VERSION "0.7")
if (FEATOMIC_TORCH_FETCH_METATENSOR_TORCH)
message(STATUS "Fetching metatensor-torch from github")

set(URL_ROOT "https://github.com/lab-cosmo/metatensor/releases/download")
set(URL_ROOT "https://github.com/metatensor/metatensor/releases/download")
include(FetchContent)
FetchContent_Declare(
metatensor_torch
Expand Down
2 changes: 1 addition & 1 deletion featomic/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ if (FEATOMIC_FETCH_METATENSOR)
message(STATUS "Fetching metatensor-core from github")

include(FetchContent)
set(URL_ROOT "https://github.com/lab-cosmo/metatensor/releases/download")
set(URL_ROOT "https://github.com/metatensor/metatensor/releases/download")
FetchContent_Declare(
metatensor
URL ${URL_ROOT}/metatensor-core-v${METATENSOR_FETCH_VERSION}/metatensor-core-cxx-${METATENSOR_FETCH_VERSION}.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion python/featomic/examples/first-calculation.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
# The descriptor format is a :class:`metatensor.TensorMap` object. Metatensor is
# like numpy for storing representations of atomistic ML data. Extensive details
# on the metatensor are covered in the `corresponding documentation
# <https://lab-cosmo.github.io/metatensor/>`_.
# <https://docs.metatensor.org>`_.
#
# We will now have a look at how the data is stored inside
# :class:`metatensor.TensorMap` objects.
Expand Down

0 comments on commit 66b8c77

Please sign in to comment.