Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GPU Acceleration achieved! #1038

Merged
merged 44 commits into from
May 2, 2019
Merged
Show file tree
Hide file tree
Changes from 42 commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
f2ac059
add gpu.js 2.0.0-rc.7
Apr 22, 2019
6e8d8ac
add gpuUtils
Apr 22, 2019
e913640
add gpuUtil convolve
Apr 22, 2019
37b8c63
add convolution to edgeDetect
Apr 22, 2019
d77f14b
bench it
Apr 22, 2019
4742d97
bench change
Apr 22, 2019
52d0a96
newline
Apr 22, 2019
a09bd6e
pipeline
Apr 22, 2019
ba2f33c
revert edge-detect
Apr 22, 2019
989cf6f
gpu accelerate gaussian blur
Apr 22, 2019
b20d420
edgeDetect use blur
Apr 22, 2019
98f20cc
tweak values
Apr 22, 2019
7c40273
remove ndarray-gaussian-filter
Apr 22, 2019
e4167b5
audit
Apr 22, 2019
cce2fdd
turn on previews
Apr 22, 2019
a3ddcb2
remove oldPix
harshkhandeparkar Apr 22, 2019
c8351f0
fix travis
Apr 22, 2019
682ffb2
Merge branch 'gpujs' of https://github.com/HarshKhandeparkar/image-se…
Apr 22, 2019
bbbaff8
Travis fix
harshkhandeparkar Apr 22, 2019
b963f7e
Try fixing travis
harshkhandeparkar Apr 22, 2019
d995d74
Fix
harshkhandeparkar Apr 22, 2019
63c7462
Retry
harshkhandeparkar Apr 23, 2019
ab4ec6e
tweaks
Apr 23, 2019
0d2df0d
convolution module on GPU
Apr 23, 2019
3e206ad
use babelify
Apr 23, 2019
6d70752
trial
Apr 23, 2019
250dbd0
remove logs
Apr 23, 2019
47571af
Update .travis.yml
harshkhandeparkar Apr 23, 2019
52bad4d
Update .travis.yml
harshkhandeparkar Apr 23, 2019
6178f56
bump version
Apr 24, 2019
fcc4761
Merge branch 'gpujs' of https://github.com/HarshKhandeparkar/image-se…
Apr 24, 2019
ba19ac8
bump to rc.9
harshkhandeparkar Apr 24, 2019
4d348a6
rc.10
harshkhandeparkar Apr 24, 2019
623c566
rc.11
harshkhandeparkar Apr 25, 2019
f0dbef0
Update package.json
harshkhandeparkar Apr 27, 2019
4442db2
merge with main
Apr 27, 2019
c0d5dcc
convolution fix
Apr 29, 2019
f5cdef8
unit test gpuUtils
Apr 29, 2019
081d7ba
tests changed, fixed
Apr 29, 2019
a0d4cca
new fix
Apr 29, 2019
c6d1e0e
merge with main
Apr 29, 2019
c198c28
merge with main
Apr 30, 2019
e465168
more obvious parseFloat
May 1, 2019
6929d4e
remove old commented code
May 1, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
sudo: required
language: node_js
node_js:
- '6'
Expand Down Expand Up @@ -26,6 +27,10 @@ addons:
packages:
- g++-4.8
- xvfb # for tape-run
before_install:
- sudo apt-get update
- sudo apt-get install xserver-xorg-dev libxext-dev libxi-dev
- sudo apt-get install -y build-essential libxi-dev libglu1-mesa-dev libglew-dev pkg-config libglu1-mesa-dev freeglut3-dev mesa-common-dev
install:
- export DISPLAY=':99.0' # for tape-run
- Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & # for tape-run
Expand Down
Loading