Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Installation AMOpti for current user

Code Block
languagebash
#!/bin/bash

AMOpti --activate

#Follow the instructions and enter your license key
Please confirm that you have read and accepted our terms of use for the software! [y / n]
y
Please enter product key (example:"U9MM-4NJ5-QFG8-TWM5-QM75-92YI-NETA")
U9MM-4NJ5-QFG8-TWM5-QM75-92YI-NETA
To activate product key for all users you need root privileges.
Do you want to try this? [y/n]
n
#The activation is executed for the current user!

Installation AMOpti  for all users

Code Block
languagebash
#!/bin/bash

sudo AMOpti --activate

#Follow the instructions and enter your license key
Please confirm that you have read and accepted our terms of use for the software! [y / n]
y
Please enter product key (example:"U9MM-4NJ5-QFG8-TWM5-QM75-92YI-NETA")
U9MM-4NJ5-QFG8-TWM5-QM75-92YI-NETA
To activate product key for all users you need root privileges.
Do you want to try this? [y/n]
y
#The activation is executed for all users!

Start CUDA

...

for all GPU's

Code Block
languagebash
# CudaPCGSolverDouble.... [port]
CudaPCGSolverDouble_cuda_10-0_gcc_8-2-1 1234

Start CUDA on a specific device

Code Block
languagebash
#!/bin/bash
 /AMOpti/CudaPCGSolverDouble.... [port] [device]
CudaPCGSolverDouble_cuda_10-0_gcc_8-2-1 1234 1

Start AMOpti: navigate into the project folder and start the optimization

Code Block
languagebash
#!/bin/bash

/AMOpti/AMOpti/AMOpti

Use the Help for more Options

Code Block
languagebash
AMOpti --help

useage: AMOpti [OPTION]

[OPTION]
        -h      -help   list this
        -a      --activate      aktivate the Licenece
        -d      --deactivate    deaktivate the Licenece
        -de     --deactivateAndEraseKey  erase the Key and deaktivate the Licenece
        -wd [inDirectory]       --workDirectory [inDirectory]    set specific Directory for input 
        -s [port]       --server [port]  starting Server for Gui
        -e      --example        for simple example without config file
        -p      --performance    start a performamce check
        -nk     --newKey         enter new Key
        -gt     --geometryTools  starte Geomety Tools
        -io     --inputAndOutputDirectory [inDirectory] [outDirectory]   set specific Directory for input and output
        [Path to config File]            use this file for Configuration
        [nothing]                look for endings "iAMOpti", "AMOpti" or "amd" in working directory

AMOpti.exe on Windows: (currently still to be seen as a collection of notes!)

...