Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added npm package.json and LICENSE.
  • Loading branch information
Kashif Rasul committed Feb 23, 2011
1 parent 6c0d16f commit 585729c
Show file tree
Hide file tree
Showing 3 changed files with 51 additions and 2 deletions.
19 changes: 19 additions & 0 deletions LICENSE
@@ -0,0 +1,19 @@
Copyright (C) 2011 by Kashif Rasul <kashif@nomad-labs.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
8 changes: 6 additions & 2 deletions README.md
Expand Up @@ -4,12 +4,16 @@ node-cuda provides [NVIDIA CUDA](http://www.nvidia.com/object/cuda_home_new.html

# Prerequisites

You will need to have a CUDA compatible GPU as well as have the appropriate [CUDA Toolkit](http://developer.nvidia.com/object/cuda_3_2_downloads.html) (version 3.2) installed for your platform.
You will need to have a CUDA compatible GPU as well as the appropriate [CUDA Toolkit](http://developer.nvidia.com/object/cuda_3_2_downloads.html) (version 3.2) installed for your platform.

# Installation

To obtain and build the bindings:

git clone http://github.com/kashif/node-cuda.git
git clone git://github.com/kashif/node-cuda.git
cd node-cuda
node-waf configure build

or install it via [npm](http://npmjs.org/):

npm install node-cuda
26 changes: 26 additions & 0 deletions package.json
@@ -0,0 +1,26 @@
{ "name" : "node-cuda"
, "description" : "NVIDIA CUDA™ bindings for Node.js"
, "keywords" : [ "NVIDIA", "CUDA"]
, "version" : "0.0.1"
, "homepage" : "http://github.com/kashif/node-cuda"
, "author" : "Kashif Rasul <kashif@nomad-labs.com> (http://hpc.nomad-labs.com)"
, "repository" :
{ "type" : "git"
, "url" : "git://github.com/kashif/node-cuda.git"
}
, "bugs" :
{
"web" : "http://github.com/kashif/node-cuda/issues"
}
, "directories" :
{
"lib" : "./lib"
}
, "main" : "cuda"
, "engines" : { "node" : "0.4" }
, "licenses" :
[ { "type" : "MIT"
, "url" : "http://github.com/kashif/node-cuda/raw/master/LICENSE"
}
]
}

0 comments on commit 585729c

Please sign in to comment.