Skip to content

Commit

Permalink
Small changes (#2523)
Browse files Browse the repository at this point in the history
* fixing reference

* fixing bat file internal links

* Fixing vale runtime issue
  • Loading branch information
germa89 authored Nov 22, 2023
1 parent df48beb commit 6b6d3ce
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
5 changes: 4 additions & 1 deletion doc/make.bat
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ set LINKCHECKDIR=\%BUILDDIR%\linkcheck

if "%1" == "" goto help
if "%1" == "clean" goto clean
if "%1" == "clean-all" goto clean-all
if "%1" == "clean-examples" goto clean-examples
if "%1" == "clean-except-examples" goto clean-except-examples
if "%1" == "linkcheck" goto linkcheck


Expand All @@ -35,19 +35,22 @@ if errorlevel 9009 (
goto end

:clean-except-examples
echo Cleaning everything except examples
rmdir /s /q %BUILDDIR% > /NUL 2>&1
rmdir /s /q images/auto-generated > /NUL 2>&1
for /d /r %SOURCEDIR% %%d in (_autosummary) do @if exist "%%d" rmdir /s /q "%%d"
goto end

:clean
echo Cleaning everything
rmdir /s /q %BUILDDIR% > /NUL 2>&1
rmdir /s /q source\examples\gallery_examples > /NUL 2>&1
for /d /r %SOURCEDIR% %%d in (_autosummary) do @if exist "%%d" rmdir /s /q "%%d"
rmdir /s /q images/auto-generated > /NUL 2>&1
goto end

:clean-examples
echo Cleaning examples
rmdir /s /q source\examples\gallery_examples > /NUL 2>&1
goto end

Expand Down
11 changes: 6 additions & 5 deletions doc/source/user_guide/pool.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@

Create a pool of MAPDL instances
================================
PyMAPDL contains the :class:`LocalMapdlPool <ansys.mapdl.core.LocalMapdlPool>`
class to simplify creating multiple local instances of the
:class:`Mapdl <ansys.mapdl.core.mapdl._MapdlCore>` class for batch processing.
This can be used for the batch processing of a set of input files,
convergence analysis, or other batch related processes.
PyMAPDL contains the :class:`LocalMapdlPool <ansys.mapdl.core.pool.LocalMapdlPool>`
class to simplify creating multiple local instances of the
:class:`Mapdl <ansys.mapdl.core.mapdl._MapdlCore>`
class for batch processing. This can be used for the batch processing of a
set of input files, convergence analysis, or other batch related
processes.

This code creates a pool:

Expand Down

0 comments on commit 6b6d3ce

Please sign in to comment.