https://github.com/udacity/cs344
Introduction to Parallel Programming class code
https://github.com/udacity/cs344
Last synced: 5 months ago
JSON representation
Introduction to Parallel Programming class code
- Host: GitHub
- URL: https://github.com/udacity/cs344
- Owner: udacity
- Archived: true
- Created: 2013-02-05T01:31:43.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2022-06-27T11:56:37.000Z (over 3 years ago)
- Last Synced: 2024-09-21T20:32:02.695Z (over 1 year ago)
- Language: Cuda
- Size: 65.1 MB
- Stars: 1,293
- Watchers: 255
- Forks: 1,141
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-cs-tutorial - https://github.com/udacity/cs344
README
# Archival Note
This repository is deprecated; therefore, we are going to archive it.
However, learners will be able to fork it to their personal Github account but cannot submit PRs to this repository. If you have any issues or suggestions to make, feel free to:
- Utilize the https://knowledge.udacity.com/ forum to seek help on content-specific issues.
- Submit a support ticket along with the link to your forked repository if (learners are) blocked for other reasons. Here are the links for the [retail consumers](https://udacity.zendesk.com/hc/en-us/requests/new) and [enterprise learners](https://udacityenterprise.zendesk.com/hc/en-us/requests/new?ticket_form_id=360000279131).
cs344
=====
Introduction to Parallel Programming class code
# Building on OS X
These instructions are for OS X 10.9 "Mavericks".
* Step 1. Build and install OpenCV. The best way to do this is with
Homebrew. However, you must slightly alter the Homebrew OpenCV
installation; you must build it with libstdc++ (instead of the default
libc++) so that it will properly link against the nVidia CUDA dev kit.
[This entry in the Udacity discussion forums](http://forums.udacity.com/questions/100132476/cuda-55-opencv-247-os-x-maverick-it-doesnt-work) describes exactly how to build a compatible OpenCV.
* Step 2. You can now create 10.9-compatible makefiles, which will allow you to
build and run your homework on your own machine:
```
mkdir build
cd build
cmake ..
make
```