-
Notifications
You must be signed in to change notification settings - Fork 5
Troubleshooting
The following content provides information to help users troubleshoot issues with this application as well as known resolutions to common problems. If you continue to experience difficulties, contact the author or submit your question or bug to the Issues Tracker.
This application uses git submodules during execution. If a submodule is not present, the application will throw an error similar to the following. This commonly occurs if the application was installed by downloading the git archive or executing git clone
without the --recursive
flag. To resolve this issue, reinstall the application according to the Installation and Use instructions.
The CalcGamma submodule does not exist in the search path. Use git
clone --recursive or git submodule init followed by git submodule
update to fetch all submodules
This application requires several MATLAB Toolboxes (see Software Compatibility for a list of all required Toolboxes) and will throw an error similar to the following if not found. To resolve this error, the prerequisite toolboxes must be installed and the application restarted.
The Statistics and Machine Learning Toolbox cannot be found and is
required by this function.
This application records key input parameters and results to a log.txt file using the Event()
function. The log is the most important route to troubleshooting errors encountered by this application. Each new event is appended to this file. The log is formatted as three tab-separated columns; the first contains the local date and time (YYYY-MM-DD hh:mm:ss format), the second is the event type, and the third is the event text. The event types are listed in the following table:
Event | Description |
---|---|
INIT | The first event logged when the application is first initialized. Includes the application name, version, author, operating system, MATLAB version, Java version, and GPU card information (if available) |
INFO | Most events are informative events, which occur during regular execution of the application code. |
WARN | Warning events log unexpected but recoverable actions that occur during application execution. |
ERROR | Error events are accompanied with a MATLAB exception getting thrown. The contents of an error log event typically include the file trace captured by the function call getReport(MException, 'extended', 'hyperlinks', 'off')
|
UNIT | Unit testing events record additional information captured during automated unit testing. These events do not occur during typical application use. |
CHCK | Check code events are recorded when Code Analyzer Messages are identified during the checkcode() unit test. |
CATCH | Error events that are caught during AutoSystematicError are automatically caught and logged using this type. The application then skips to the next plan. |
Download NVIDIA-Linux-x86_64-3331.79 driver for GTX 470
CD ~/Downloads
chmod +x ./NVIDIA-Linux-x86_64-3331.79.run
Follow http://askubuntu.com/questions/451221/ubuntu-14-04-install-nvidia-driver to install
sudo apt-get remove nvidia*
sudo gedit /etc/modprobe.d/blacklist-nouveau.conf
blacklist nouveau blacklist lbm-nouveau options nouveau modeset=0 alias nouveau off alias lbm-nouveau off update-initramfs –u
sudo reboot
sudo stop lightdm
CTRL-ALT-F1
sudo ./NVIDIA-Linux-x86_64-3331.79.run
Then follow instructions
sudo reboot
Home | Installation and Use | Troubleshooting | ©2015 University of Wisconsin Board of Regents