npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-webcl

v0.9.2

Published

A WebCL implementation for desktops with NodeJS

Downloads

9

Readme

Introduction

This is an implementation of Khronos WebCL specification using NodeJS. This implementation solely relies on OpenCL 1.1 C headers.

Dislaimer

While we are close to the WebCL specification, some features in this code may or may not be available in the final specification. As such, this implementation should be considered for

  • experimental development of WebCL/WebGL content,
  • experimenting with new constructs that may not be available in browsers,
  • coupled with Node.JS awesome capabilities, this software opens the door to non-browser applications (e.g. fast server-side image processing).

This implementation is not secure nor robust, we will update as the standard progresses in these areas. So beware that hacking your GPU may crash your computer; don't blame us!

License

node-webcl is distributed under BSD license

Copyright (c) 2011-2012, Motorola Mobility, Inc. Copyright (c) 2011-2015, Mikael Bourges-Sevenier All rights reserved.

See LICENSES in this distribution for all licenses used in samples from other companies.

Dependencies

  • NAN must be installed first to support all versions of v8

  • node-webgl. This module is used for samples using WebGL interoperability with WebCL. In turns, node-webgl relies on node-glfw that relies on GLFW, GLEW, AntTweakBar, and FreeImage. See node-webgl and node-glfw for instructions on how to install these modules.

  • OpenCL 1.1 must be installed on your machine. Typically, this means your machine has a not too old graphic card (maybe not more than 3 years old) and its latest graphic drivers installed.

On Mac, we recommend using OSX 10.7 "Lion" since OSX 10.6 "Snow Leopard" only supports OpenCL 1.0 and is buggy.

On Windows, use Windows 7. Note that if your machine is 64-bit, you should use node.js 64-bit distribution, not the 32-bit default to avoid mismatch between node libraries and these native dependencies when node-gyp build the modules.

On Linux, make sure you use the latest AMD or NVidia drivers. This module has been tested with Ubuntu 10.10, 11.04 and 11.10 64-bit.

Pre-built binaries are available in submodule deps. Don't forget to do:

git submodule init
git submodule udpate

if you need these binaries.

Installation

Make sure GLEW, GLFW, AntTweakBar, and FreeImage libraries are in your path.

  • on Windows, put DLLs in Windows\System32. Put headers in \include and static librairies in \lib for 32-bit libraries (if you use node.js in 32-bit) or \lib\x64 (if you use 64-bit node.js).

  • on Mac, use homebrew

    brew install freeimage anttweakbar glfw3 glew

  • on Linux use you package manager to install these libraries

Now install the usual way:

npm install node-webcl

this will also install https://github.com/mikeseven/node-webgl, https://github.com/mikeseven/node-glfw, https://github.com/mikeseven/node-image, and https://github.com/rvagg/nan.

If you want to use the latest code, retrieve each repo (node-webcl, node-webgl, node-glfw, and node-image) from github and simply do

node-gyp rebuild
npm link

A crash course on WebCL

WebCL is a JavaScript representation of OpenCL 1.1. It is not a straight mapping of OpenCL C methods but rather an object-oriented representation of OpenCL object model. Knowledge of OpenCL is OpenCL is therefore mandatory to be able to develop WebCL programs. See the Books section and/or jump directly into Specifications references at the end of this page.

There are few steps in creating a WebCL program:

  1. Init WebCL
    1. find a suitable platform/device (cl.getPlatform(), cl.getDevices())
    2. create a context (context = cl.createContext())
    3. create a command queue (queue = context.createCommandQueue())
    4. compile a program (program = context.createProgram(), program.build())
    5. set up a kernel and its arguments (kernel = program.createKernel(), kernel.setArg())
    6. set up commands (queue.enqueueXXX())
  2. Run computation
    1. set up kernel arguments (kernel.setArg())
    2. set up commands (queue.enqueueXXX())
    3. launch the computation (queue.enqueueTask() or queue.enqueueNDRange())

When used with WebGL, WebGL context must be created first because WebCL context is created with sharing the WebGL context. Remember that WebCL allows computations on WebGL buffers. WebCL doesn't do any rendering. By using WebCL and WebGL together, data remains in the device and this avoids expensive data transfer to/from CPU memory.

So the sequence becomes:

  1. init WebGL
    1. init buffers
    2. init shaders
    3. init textures
  2. init WebCL (context = cl.createContext({ sharedObject: gl }))
  3. init shared objects (e.g. textures/array/pixel/render buffers)
  4. launch WebGL rendering loop
    • ... execute GL commands
    • acquire GL objects (queue.enqueueAcquireGLObjects())
    • launch CL computation (queue.enqueueNDRange())
    • release GL objects (queue.enqueueReleaseGLObjects())
    • ... execute GL commands

References

Specifications

Books

OpenCL SDKs (use latest!)