From bb0df177be573bbe2f0133b2b8097a70992993fe Mon Sep 17 00:00:00 2001 From: Matt Dwyer Date: Sat, 28 Dec 2019 22:22:18 -0600 Subject: [PATCH 1/2] Updated README to remove broken playground links and fix logo --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 8c051287..08dd6f00 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -[![Logo](http://gpu.rocks/img/ogimage.png)](http://gpu.rocks/) +[![Logo](http://gpu.rocks/static/media/jelly.3587de60.png)](http://gpu.rocks/) # GPU.js @@ -16,7 +16,6 @@ For some more quick concepts, see [Quick Concepts](https://github.com/gpujs/gpu. Creates a GPU accelerated kernel transpiled from a javascript function that computes a single element in the 512 x 512 matrix (2D array). The kernel functions are ran in tandem on the GPU often resulting in very fast computations! You can run a benchmark of this [here](http://gpu.rocks). Typically, it will run 1-15x faster depending on your hardware. -You can experiment around with the [kernel playground here](http://gpu.rocks/playground) Matrix multiplication (perform matrix multiplication on 2 matrices of size 512 x 512) written in GPU.js: ## Browser From 428554bdfa70a136e1d6a048d074e3c026d7af79 Mon Sep 17 00:00:00 2001 From: Matt Dwyer Date: Sat, 28 Dec 2019 22:36:16 -0600 Subject: [PATCH 2/2] Resized Logo size --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 08dd6f00..ad63702f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,4 @@ -[![Logo](http://gpu.rocks/static/media/jelly.3587de60.png)](http://gpu.rocks/) - - +[Logo](http://gpu.rocks/) # GPU.js GPU.js is a JavaScript Acceleration library for GPGPU (General purpose computing on GPUs) in JavaScript for Web and Node. GPU.js automatically transpiles simple JavaScript functions into shader language and compiles them so they run on your GPU.