├── .github └── workflows │ └── aiscm.yml ├── .gitignore ├── AUTHORS ├── COPYING ├── Dockerfile ├── Makefile.am ├── Makefile.docker ├── Makefile.package ├── NEWS ├── NEWS.md ├── README ├── README.md ├── TODO.md ├── aiscm ├── .gitignore ├── Makefile.am ├── aiscm.xpm ├── core.c ├── core.scm ├── ffmpeg-helpers-tests.c ├── ffmpeg-helpers.c ├── ffmpeg-helpers.h ├── filters.scm ├── hypercomplex.scm ├── image.c ├── image.scm ├── magick.c ├── magick.scm ├── pulse.c ├── pulse.scm ├── ringbuffer-tests.c ├── ringbuffer.c ├── ringbuffer.h ├── samples-helpers-tests.c ├── samples-helpers.c ├── samples-helpers.h ├── samples.c ├── samples.scm ├── tensorflow-generate.c ├── tensorflow.c ├── tensorflow.scm.in ├── tensors.scm ├── tests.c ├── util-helpers-tests.c ├── util-helpers.c ├── util-helpers.h ├── util.c ├── util.scm ├── v4l2.c ├── v4l2.scm ├── xorg.c └── xorg.scm ├── apt ├── conf │ ├── distributions │ └── options └── pubkey.gpg ├── autogen.sh ├── bench ├── .gitignore ├── Makefile.am ├── bench.scm └── cbench.c ├── config.rpath ├── configure.ac ├── debian ├── aiscm.doc-base ├── aiscm.lintian-overrides ├── changelog ├── control ├── copyright ├── rules ├── source │ └── format ├── tests │ ├── array.scm │ └── control ├── upstream │ ├── metadata │ └── signing-key.asc └── watch ├── doc ├── .gitignore ├── Makefile.am ├── aiscm.gif ├── aiscm.html5 ├── array.md ├── assembler.md ├── buttondown.css ├── convolution.md ├── debian.png ├── dependencies.sh ├── fubk-colours.png ├── gplv3.png ├── includes.scm ├── index.md.in ├── installation.md ├── io.md ├── mirror.jpg ├── mnist.jpg ├── operation.md ├── package.png ├── sintel.jpg ├── source.png ├── tensorflow.md ├── travis.png ├── ubuntu.png └── v4l2.jpg ├── etc ├── .gitignore ├── Makefile ├── bug_837167.mbox ├── cc.cpp ├── compile.scm ├── docker ├── dput.cf ├── env.scm ├── language.w ├── logo │ ├── .gitignore │ ├── Makefile │ ├── blc.ini │ ├── blc.pov │ ├── blcanim.ini │ └── opensans.ttf ├── playground.scm ├── playground.sh ├── t1.c ├── test_compile.scm └── threads.scm ├── m4 ├── .gitignore ├── ax_have_opengl.m4 ├── ax_llvmc.m4 ├── ax_pthread.m4 ├── guile.m4 ├── lib-ld.m4 ├── lib-link.m4 ├── lib-prefix.m4 └── pkg.m4 ├── tensorflow ├── .gitignore ├── Makefile.am └── core │ ├── Makefile.am │ └── framework │ ├── .gitignore │ ├── Makefile.am │ ├── attr_value.proto │ ├── op_def.proto │ ├── resource_handle.proto │ ├── tensor.proto │ ├── tensor_shape.proto │ └── types.proto ├── test-driver.scm ├── tests ├── .gitignore ├── Makefile.am ├── fixtures │ ├── Makefile.am │ ├── av-sync.mp4 │ ├── cat.wav │ ├── fubk.png │ ├── index.png │ ├── leds.mjpeg │ ├── mono.mp3 │ ├── ramp.png │ └── test.mp3 ├── guard.sh ├── integration │ ├── .gitignore │ ├── 2d_array.scm │ ├── 2d_matching.scm │ ├── Makefile.am │ ├── anaglyph.scm │ ├── array_shape.scm │ ├── binary.scm │ ├── boolean_array.scm │ ├── box_filter.scm │ ├── byte_sequence.scm │ ├── callback.scm │ ├── camera_mode.scm │ ├── circle.scm │ ├── complex_array.scm │ ├── convolution_1d.scm │ ├── convolution_2d.scm │ ├── conway.scm │ ├── crop_2d.scm │ ├── crop_dump.scm │ ├── dilate.scm │ ├── division.scm │ ├── erode.scm │ ├── fill.scm │ ├── gauss_blur.scm │ ├── gauss_gradient.scm │ ├── grab.scm │ ├── harris_stephens.scm │ ├── index.scm │ ├── indicator.scm │ ├── integer_type.scm │ ├── invert.scm │ ├── letters.png │ ├── mandelbrot.scm │ ├── mirror.scm │ ├── mnist.scm │ ├── modulo.scm │ ├── object_array.scm │ ├── pavillion.jpg │ ├── pseudo.scm │ ├── pulse_in.scm │ ├── pulse_out.scm │ ├── read_image.scm │ ├── roberts_cross.scm │ ├── roll_image.scm │ ├── roll_unroll.scm │ ├── set.scm │ ├── sharpen.scm │ ├── show_gray.scm │ ├── shuttle.jpg │ ├── sobel.scm │ ├── spectrum.scm │ ├── star-ferry.jpg │ ├── swap_channels.scm │ ├── tensor.scm │ ├── to_list.scm │ ├── type_matching.scm │ ├── typed_sequence.scm │ ├── unary_ops.scm │ ├── virtual_arrays.scm │ ├── virtual_registers.scm │ ├── write_image.scm │ ├── xor.scm │ ├── xorg_fullscreen.scm │ ├── xorg_fullscreen_test.scm │ ├── xorg_fullscreen_video.scm │ ├── xorg_image_list.scm │ ├── xorg_scale.scm │ ├── xorg_scale_image.scm │ ├── xorg_scale_list.scm │ ├── xorg_scale_video.scm │ ├── xorg_video.scm │ ├── xorg_video_list.scm │ └── xorg_window.scm ├── test_core.scm ├── test_filters.scm ├── test_hypercomplex.scm ├── test_image.scm ├── test_magick.scm ├── test_pulse.scm ├── test_ringbuffer.scm ├── test_samples.scm ├── test_tensorflow.scm ├── test_tensors.scm ├── test_util.scm └── test_xorg.scm └── tmux.sh /.github/workflows/aiscm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/.github/workflows/aiscm.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Jan Wedekind 2 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/Makefile.docker -------------------------------------------------------------------------------- /Makefile.package: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/Makefile.package -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | See NEWS.md 2 | -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/NEWS.md -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | See README.md 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/TODO.md -------------------------------------------------------------------------------- /aiscm/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/.gitignore -------------------------------------------------------------------------------- /aiscm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/Makefile.am -------------------------------------------------------------------------------- /aiscm/aiscm.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/aiscm.xpm -------------------------------------------------------------------------------- /aiscm/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/core.c -------------------------------------------------------------------------------- /aiscm/core.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/core.scm -------------------------------------------------------------------------------- /aiscm/ffmpeg-helpers-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/ffmpeg-helpers-tests.c -------------------------------------------------------------------------------- /aiscm/ffmpeg-helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/ffmpeg-helpers.c -------------------------------------------------------------------------------- /aiscm/ffmpeg-helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/ffmpeg-helpers.h -------------------------------------------------------------------------------- /aiscm/filters.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/filters.scm -------------------------------------------------------------------------------- /aiscm/hypercomplex.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/hypercomplex.scm -------------------------------------------------------------------------------- /aiscm/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/image.c -------------------------------------------------------------------------------- /aiscm/image.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/image.scm -------------------------------------------------------------------------------- /aiscm/magick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/magick.c -------------------------------------------------------------------------------- /aiscm/magick.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/magick.scm -------------------------------------------------------------------------------- /aiscm/pulse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/pulse.c -------------------------------------------------------------------------------- /aiscm/pulse.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/pulse.scm -------------------------------------------------------------------------------- /aiscm/ringbuffer-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/ringbuffer-tests.c -------------------------------------------------------------------------------- /aiscm/ringbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/ringbuffer.c -------------------------------------------------------------------------------- /aiscm/ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/ringbuffer.h -------------------------------------------------------------------------------- /aiscm/samples-helpers-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/samples-helpers-tests.c -------------------------------------------------------------------------------- /aiscm/samples-helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/samples-helpers.c -------------------------------------------------------------------------------- /aiscm/samples-helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/samples-helpers.h -------------------------------------------------------------------------------- /aiscm/samples.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/samples.c -------------------------------------------------------------------------------- /aiscm/samples.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/samples.scm -------------------------------------------------------------------------------- /aiscm/tensorflow-generate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/tensorflow-generate.c -------------------------------------------------------------------------------- /aiscm/tensorflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/tensorflow.c -------------------------------------------------------------------------------- /aiscm/tensorflow.scm.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/tensorflow.scm.in -------------------------------------------------------------------------------- /aiscm/tensors.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/tensors.scm -------------------------------------------------------------------------------- /aiscm/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/tests.c -------------------------------------------------------------------------------- /aiscm/util-helpers-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/util-helpers-tests.c -------------------------------------------------------------------------------- /aiscm/util-helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/util-helpers.c -------------------------------------------------------------------------------- /aiscm/util-helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/util-helpers.h -------------------------------------------------------------------------------- /aiscm/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/util.c -------------------------------------------------------------------------------- /aiscm/util.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/util.scm -------------------------------------------------------------------------------- /aiscm/v4l2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/v4l2.c -------------------------------------------------------------------------------- /aiscm/v4l2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/v4l2.scm -------------------------------------------------------------------------------- /aiscm/xorg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/xorg.c -------------------------------------------------------------------------------- /aiscm/xorg.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/aiscm/xorg.scm -------------------------------------------------------------------------------- /apt/conf/distributions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/apt/conf/distributions -------------------------------------------------------------------------------- /apt/conf/options: -------------------------------------------------------------------------------- 1 | verbose 2 | basedir /home/jan/test/aiscm/apt 3 | ask-passphrase 4 | -------------------------------------------------------------------------------- /apt/pubkey.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/apt/pubkey.gpg -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | git log > ChangeLog 3 | autoreconf -i 4 | -------------------------------------------------------------------------------- /bench/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/bench/.gitignore -------------------------------------------------------------------------------- /bench/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/bench/Makefile.am -------------------------------------------------------------------------------- /bench/bench.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/bench/bench.scm -------------------------------------------------------------------------------- /bench/cbench.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/bench/cbench.c -------------------------------------------------------------------------------- /config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/config.rpath -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/configure.ac -------------------------------------------------------------------------------- /debian/aiscm.doc-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/debian/aiscm.doc-base -------------------------------------------------------------------------------- /debian/aiscm.lintian-overrides: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/debian/aiscm.lintian-overrides -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /debian/tests/array.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/debian/tests/array.scm -------------------------------------------------------------------------------- /debian/tests/control: -------------------------------------------------------------------------------- 1 | Tests: array.scm 2 | -------------------------------------------------------------------------------- /debian/upstream/metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/debian/upstream/metadata -------------------------------------------------------------------------------- /debian/upstream/signing-key.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/debian/upstream/signing-key.asc -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/debian/watch -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/aiscm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/aiscm.gif -------------------------------------------------------------------------------- /doc/aiscm.html5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/aiscm.html5 -------------------------------------------------------------------------------- /doc/array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/array.md -------------------------------------------------------------------------------- /doc/assembler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/assembler.md -------------------------------------------------------------------------------- /doc/buttondown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/buttondown.css -------------------------------------------------------------------------------- /doc/convolution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/convolution.md -------------------------------------------------------------------------------- /doc/debian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/debian.png -------------------------------------------------------------------------------- /doc/dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/dependencies.sh -------------------------------------------------------------------------------- /doc/fubk-colours.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/fubk-colours.png -------------------------------------------------------------------------------- /doc/gplv3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/gplv3.png -------------------------------------------------------------------------------- /doc/includes.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/includes.scm -------------------------------------------------------------------------------- /doc/index.md.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/index.md.in -------------------------------------------------------------------------------- /doc/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/installation.md -------------------------------------------------------------------------------- /doc/io.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/io.md -------------------------------------------------------------------------------- /doc/mirror.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/mirror.jpg -------------------------------------------------------------------------------- /doc/mnist.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/mnist.jpg -------------------------------------------------------------------------------- /doc/operation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/operation.md -------------------------------------------------------------------------------- /doc/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/package.png -------------------------------------------------------------------------------- /doc/sintel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/sintel.jpg -------------------------------------------------------------------------------- /doc/source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/source.png -------------------------------------------------------------------------------- /doc/tensorflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/tensorflow.md -------------------------------------------------------------------------------- /doc/travis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/travis.png -------------------------------------------------------------------------------- /doc/ubuntu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/ubuntu.png -------------------------------------------------------------------------------- /doc/v4l2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/doc/v4l2.jpg -------------------------------------------------------------------------------- /etc/.gitignore: -------------------------------------------------------------------------------- 1 | cc 2 | *.o 3 | -------------------------------------------------------------------------------- /etc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/etc/Makefile -------------------------------------------------------------------------------- /etc/bug_837167.mbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/etc/bug_837167.mbox -------------------------------------------------------------------------------- /etc/cc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/etc/cc.cpp -------------------------------------------------------------------------------- /etc/compile.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/etc/compile.scm -------------------------------------------------------------------------------- /etc/docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/etc/docker -------------------------------------------------------------------------------- /etc/dput.cf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/etc/dput.cf -------------------------------------------------------------------------------- /etc/env.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/etc/env.scm -------------------------------------------------------------------------------- /etc/language.w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/etc/language.w -------------------------------------------------------------------------------- /etc/logo/.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | *.gif 3 | -------------------------------------------------------------------------------- /etc/logo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/etc/logo/Makefile -------------------------------------------------------------------------------- /etc/logo/blc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/etc/logo/blc.ini -------------------------------------------------------------------------------- /etc/logo/blc.pov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/etc/logo/blc.pov -------------------------------------------------------------------------------- /etc/logo/blcanim.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/etc/logo/blcanim.ini -------------------------------------------------------------------------------- /etc/logo/opensans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/etc/logo/opensans.ttf -------------------------------------------------------------------------------- /etc/playground.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/etc/playground.scm -------------------------------------------------------------------------------- /etc/playground.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/etc/playground.sh -------------------------------------------------------------------------------- /etc/t1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/etc/t1.c -------------------------------------------------------------------------------- /etc/test_compile.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/etc/test_compile.scm -------------------------------------------------------------------------------- /etc/threads.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/etc/threads.scm -------------------------------------------------------------------------------- /m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/m4/.gitignore -------------------------------------------------------------------------------- /m4/ax_have_opengl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/m4/ax_have_opengl.m4 -------------------------------------------------------------------------------- /m4/ax_llvmc.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/m4/ax_llvmc.m4 -------------------------------------------------------------------------------- /m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /m4/guile.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/m4/guile.m4 -------------------------------------------------------------------------------- /m4/lib-ld.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/m4/lib-ld.m4 -------------------------------------------------------------------------------- /m4/lib-link.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/m4/lib-link.m4 -------------------------------------------------------------------------------- /m4/lib-prefix.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/m4/lib-prefix.m4 -------------------------------------------------------------------------------- /m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/m4/pkg.m4 -------------------------------------------------------------------------------- /tensorflow/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tensorflow/.gitignore -------------------------------------------------------------------------------- /tensorflow/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = core 2 | -------------------------------------------------------------------------------- /tensorflow/core/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = framework 2 | -------------------------------------------------------------------------------- /tensorflow/core/framework/.gitignore: -------------------------------------------------------------------------------- 1 | *.pb-c.* 2 | -------------------------------------------------------------------------------- /tensorflow/core/framework/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tensorflow/core/framework/Makefile.am -------------------------------------------------------------------------------- /tensorflow/core/framework/attr_value.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tensorflow/core/framework/attr_value.proto -------------------------------------------------------------------------------- /tensorflow/core/framework/op_def.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tensorflow/core/framework/op_def.proto -------------------------------------------------------------------------------- /tensorflow/core/framework/resource_handle.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tensorflow/core/framework/resource_handle.proto -------------------------------------------------------------------------------- /tensorflow/core/framework/tensor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tensorflow/core/framework/tensor.proto -------------------------------------------------------------------------------- /tensorflow/core/framework/tensor_shape.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tensorflow/core/framework/tensor_shape.proto -------------------------------------------------------------------------------- /tensorflow/core/framework/types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tensorflow/core/framework/types.proto -------------------------------------------------------------------------------- /test-driver.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/test-driver.scm -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/fixtures/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/fixtures/Makefile.am -------------------------------------------------------------------------------- /tests/fixtures/av-sync.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/fixtures/av-sync.mp4 -------------------------------------------------------------------------------- /tests/fixtures/cat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/fixtures/cat.wav -------------------------------------------------------------------------------- /tests/fixtures/fubk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/fixtures/fubk.png -------------------------------------------------------------------------------- /tests/fixtures/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/fixtures/index.png -------------------------------------------------------------------------------- /tests/fixtures/leds.mjpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/fixtures/leds.mjpeg -------------------------------------------------------------------------------- /tests/fixtures/mono.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/fixtures/mono.mp3 -------------------------------------------------------------------------------- /tests/fixtures/ramp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/fixtures/ramp.png -------------------------------------------------------------------------------- /tests/fixtures/test.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/fixtures/test.mp3 -------------------------------------------------------------------------------- /tests/guard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/guard.sh -------------------------------------------------------------------------------- /tests/integration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/.gitignore -------------------------------------------------------------------------------- /tests/integration/2d_array.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/2d_array.scm -------------------------------------------------------------------------------- /tests/integration/2d_matching.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/2d_matching.scm -------------------------------------------------------------------------------- /tests/integration/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/Makefile.am -------------------------------------------------------------------------------- /tests/integration/anaglyph.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/anaglyph.scm -------------------------------------------------------------------------------- /tests/integration/array_shape.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/array_shape.scm -------------------------------------------------------------------------------- /tests/integration/binary.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/binary.scm -------------------------------------------------------------------------------- /tests/integration/boolean_array.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/boolean_array.scm -------------------------------------------------------------------------------- /tests/integration/box_filter.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/box_filter.scm -------------------------------------------------------------------------------- /tests/integration/byte_sequence.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/byte_sequence.scm -------------------------------------------------------------------------------- /tests/integration/callback.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/callback.scm -------------------------------------------------------------------------------- /tests/integration/camera_mode.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/camera_mode.scm -------------------------------------------------------------------------------- /tests/integration/circle.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/circle.scm -------------------------------------------------------------------------------- /tests/integration/complex_array.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/complex_array.scm -------------------------------------------------------------------------------- /tests/integration/convolution_1d.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/convolution_1d.scm -------------------------------------------------------------------------------- /tests/integration/convolution_2d.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/convolution_2d.scm -------------------------------------------------------------------------------- /tests/integration/conway.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/conway.scm -------------------------------------------------------------------------------- /tests/integration/crop_2d.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/crop_2d.scm -------------------------------------------------------------------------------- /tests/integration/crop_dump.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/crop_dump.scm -------------------------------------------------------------------------------- /tests/integration/dilate.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/dilate.scm -------------------------------------------------------------------------------- /tests/integration/division.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/division.scm -------------------------------------------------------------------------------- /tests/integration/erode.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/erode.scm -------------------------------------------------------------------------------- /tests/integration/fill.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/fill.scm -------------------------------------------------------------------------------- /tests/integration/gauss_blur.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/gauss_blur.scm -------------------------------------------------------------------------------- /tests/integration/gauss_gradient.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/gauss_gradient.scm -------------------------------------------------------------------------------- /tests/integration/grab.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/grab.scm -------------------------------------------------------------------------------- /tests/integration/harris_stephens.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/harris_stephens.scm -------------------------------------------------------------------------------- /tests/integration/index.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/index.scm -------------------------------------------------------------------------------- /tests/integration/indicator.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/indicator.scm -------------------------------------------------------------------------------- /tests/integration/integer_type.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/integer_type.scm -------------------------------------------------------------------------------- /tests/integration/invert.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/invert.scm -------------------------------------------------------------------------------- /tests/integration/letters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/letters.png -------------------------------------------------------------------------------- /tests/integration/mandelbrot.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/mandelbrot.scm -------------------------------------------------------------------------------- /tests/integration/mirror.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/mirror.scm -------------------------------------------------------------------------------- /tests/integration/mnist.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/mnist.scm -------------------------------------------------------------------------------- /tests/integration/modulo.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/modulo.scm -------------------------------------------------------------------------------- /tests/integration/object_array.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/object_array.scm -------------------------------------------------------------------------------- /tests/integration/pavillion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/pavillion.jpg -------------------------------------------------------------------------------- /tests/integration/pseudo.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/pseudo.scm -------------------------------------------------------------------------------- /tests/integration/pulse_in.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/pulse_in.scm -------------------------------------------------------------------------------- /tests/integration/pulse_out.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/pulse_out.scm -------------------------------------------------------------------------------- /tests/integration/read_image.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/read_image.scm -------------------------------------------------------------------------------- /tests/integration/roberts_cross.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/roberts_cross.scm -------------------------------------------------------------------------------- /tests/integration/roll_image.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/roll_image.scm -------------------------------------------------------------------------------- /tests/integration/roll_unroll.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/roll_unroll.scm -------------------------------------------------------------------------------- /tests/integration/set.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/set.scm -------------------------------------------------------------------------------- /tests/integration/sharpen.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/sharpen.scm -------------------------------------------------------------------------------- /tests/integration/show_gray.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/show_gray.scm -------------------------------------------------------------------------------- /tests/integration/shuttle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/shuttle.jpg -------------------------------------------------------------------------------- /tests/integration/sobel.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/sobel.scm -------------------------------------------------------------------------------- /tests/integration/spectrum.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/spectrum.scm -------------------------------------------------------------------------------- /tests/integration/star-ferry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/star-ferry.jpg -------------------------------------------------------------------------------- /tests/integration/swap_channels.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/swap_channels.scm -------------------------------------------------------------------------------- /tests/integration/tensor.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/tensor.scm -------------------------------------------------------------------------------- /tests/integration/to_list.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/to_list.scm -------------------------------------------------------------------------------- /tests/integration/type_matching.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/type_matching.scm -------------------------------------------------------------------------------- /tests/integration/typed_sequence.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/typed_sequence.scm -------------------------------------------------------------------------------- /tests/integration/unary_ops.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/unary_ops.scm -------------------------------------------------------------------------------- /tests/integration/virtual_arrays.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/virtual_arrays.scm -------------------------------------------------------------------------------- /tests/integration/virtual_registers.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/virtual_registers.scm -------------------------------------------------------------------------------- /tests/integration/write_image.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/write_image.scm -------------------------------------------------------------------------------- /tests/integration/xor.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/xor.scm -------------------------------------------------------------------------------- /tests/integration/xorg_fullscreen.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/xorg_fullscreen.scm -------------------------------------------------------------------------------- /tests/integration/xorg_fullscreen_test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/xorg_fullscreen_test.scm -------------------------------------------------------------------------------- /tests/integration/xorg_fullscreen_video.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/xorg_fullscreen_video.scm -------------------------------------------------------------------------------- /tests/integration/xorg_image_list.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/xorg_image_list.scm -------------------------------------------------------------------------------- /tests/integration/xorg_scale.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/xorg_scale.scm -------------------------------------------------------------------------------- /tests/integration/xorg_scale_image.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/xorg_scale_image.scm -------------------------------------------------------------------------------- /tests/integration/xorg_scale_list.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/xorg_scale_list.scm -------------------------------------------------------------------------------- /tests/integration/xorg_scale_video.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/xorg_scale_video.scm -------------------------------------------------------------------------------- /tests/integration/xorg_video.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/xorg_video.scm -------------------------------------------------------------------------------- /tests/integration/xorg_video_list.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/xorg_video_list.scm -------------------------------------------------------------------------------- /tests/integration/xorg_window.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/integration/xorg_window.scm -------------------------------------------------------------------------------- /tests/test_core.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/test_core.scm -------------------------------------------------------------------------------- /tests/test_filters.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/test_filters.scm -------------------------------------------------------------------------------- /tests/test_hypercomplex.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/test_hypercomplex.scm -------------------------------------------------------------------------------- /tests/test_image.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/test_image.scm -------------------------------------------------------------------------------- /tests/test_magick.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/test_magick.scm -------------------------------------------------------------------------------- /tests/test_pulse.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/test_pulse.scm -------------------------------------------------------------------------------- /tests/test_ringbuffer.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/test_ringbuffer.scm -------------------------------------------------------------------------------- /tests/test_samples.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/test_samples.scm -------------------------------------------------------------------------------- /tests/test_tensorflow.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/test_tensorflow.scm -------------------------------------------------------------------------------- /tests/test_tensors.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/test_tensors.scm -------------------------------------------------------------------------------- /tests/test_util.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/test_util.scm -------------------------------------------------------------------------------- /tests/test_xorg.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tests/test_xorg.scm -------------------------------------------------------------------------------- /tmux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wedesoft/aiscm/HEAD/tmux.sh --------------------------------------------------------------------------------