Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small changes #2523

Merged
merged 4 commits into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading