All Projects → armedbear → Abcl

armedbear / Abcl

Licence: other
Armed Bear Common Lisp <git+https://github.com/armedbear/abcl/> <--> <svn+https://abcl.org/svn> Bridge

Projects that are alternatives of or similar to Abcl

unity-dijkstras-pathfinding
Dijkstra's Pathfinding Algorithm Unity Implementation. (Not being maintained by me, it is just an experiment.)
Stars: ✭ 80 (-47.02%)
Mutual labels:  implementation
Esfnet Pytorch
ESFNet-Pytorch
Stars: ✭ 18 (-88.08%)
Mutual labels:  implementation
Bert In Production
A collection of resources on using BERT (https://arxiv.org/abs/1810.04805 ) and related Language Models in production environments.
Stars: ✭ 58 (-61.59%)
Mutual labels:  implementation
Mspeekcollectionviewdelegateimplementation
A custom paging behavior that peeks the previous and next items in a collection view
Stars: ✭ 265 (+75.5%)
Mutual labels:  implementation
Dnc Tensorflow
A TensorFlow implementation of DeepMind's Differential Neural Computers (DNC)
Stars: ✭ 587 (+288.74%)
Mutual labels:  implementation
Dcgan Pytorch
PyTorch Implementation of DCGAN trained on the CelebA dataset.
Stars: ✭ 32 (-78.81%)
Mutual labels:  implementation
leetcode
A set of practice note, solution, complexity analysis and test bench to leetcode problem set
Stars: ✭ 31 (-79.47%)
Mutual labels:  implementation
Java
All Algorithms implemented in Java
Stars: ✭ 42,893 (+28305.96%)
Mutual labels:  implementation
Gpt 2 Pytorch
Simple Text-Generator with OpenAI gpt-2 Pytorch Implementation
Stars: ✭ 618 (+309.27%)
Mutual labels:  implementation
Icmplib
Easily forge ICMP packets and make your own ping and traceroute.
Stars: ✭ 58 (-61.59%)
Mutual labels:  implementation
Ml implementation
Implementation of Machine Learning Algorithms
Stars: ✭ 279 (+84.77%)
Mutual labels:  implementation
100daysofmlcode
Stars: ✭ 387 (+156.29%)
Mutual labels:  implementation
Authenticationservice
Implementations for JWT Authentication in C# and NodeJS.
Stars: ✭ 47 (-68.87%)
Mutual labels:  implementation
Ethereum Erc721
Non-fungible token implementation for Ethereum-based blockchains.
Stars: ✭ 253 (+67.55%)
Mutual labels:  implementation
Machine Learning Algorithms
A curated list of almost all machine learning algorithms and deep learning algorithms grouped by category.
Stars: ✭ 92 (-39.07%)
Mutual labels:  implementation
redis
Redis server written in Go / Golang (prototype)
Stars: ✭ 53 (-64.9%)
Mutual labels:  implementation
100 Days Of Ml Code
100 Days of ML Coding
Stars: ✭ 33,641 (+22178.81%)
Mutual labels:  implementation
Reproducible Image Denoising State Of The Art
Collection of popular and reproducible image denoising works.
Stars: ✭ 1,776 (+1076.16%)
Mutual labels:  implementation
Funmath
☔️ Implementations of mathematical functions, formulas and concepts
Stars: ✭ 93 (-38.41%)
Mutual labels:  implementation
Awesome Attention Mechanism In Cv
计算机视觉中用到的注意力模块和其他即插即用模块PyTorch Implementation Collection of Attention Module and Plug&Play Module
Stars: ✭ 54 (-64.24%)
Mutual labels:  implementation

Armed Bear Common Lisp (ABCL) README

Armed Bear Common Lisp is a conforming implementation of ANSI X3J13 Common Lisp that runs in a Java virtual machine. It compiles Lisp code directly to Java byte code for execution.

LICENSE

Armed Bear Common Lisp is distributed under the GNU General Public License with a classpath exception (see "Classpath Exception" below).

A copy of GNU General Public License (GPLv2) is included in this distribution, in file:COPYING.

We have modified our GPLv2 license section 13 to read:

 13. Linking this library statically or dynamically with other
 modules is making a combined work based on this library. Thus, the
 terms and conditions of the GNU General Public License cover the
 whole combination.

 The following paragraph details the "classpath exception" which ABCL
 allows as an exception to the statement about linking libraries.

 As a special exception, the copyright holders of this software give
 you permission to link this software with independent modules to
 produce an executable, regardless of the license terms of these
 independent modules, and to copy and distribute the resulting
 executable under terms of your choice, provided that you also meet,
 for each linked independent module, the terms and conditions of the
 license of that module. An independent module is a module which is
 not derived from or based on this software. If you modify this
 software, you may extend this exception to your version of the
 software, but you are not obligated to do so. If you do not wish to
 do so, delete this exception statement from your version.

RUNNING FROM DOCKER

With Docker Engine installed one may execute:

docker build -t YOURID/abcl .
docker run -it YOURID/abcl 

to get something like

illin:~/work/abcl$ docker run -it YOURID/abcl
Armed Bear Common Lisp 1.8.0
Java 11.0.8 AdoptOpenJDK
OpenJDK 64-Bit Server VM
Low-level initialization completed in 0.295 seconds.
Startup completed in 1.425 seconds.
Type ":help" for a list of available commands.
CL-USER(1): (lisp-implementation-version)
"1.8.0"
"OpenJDK_64-Bit_Server_VM-AdoptOpenJDK-11.0.8+10"
"x86_64-Mac_OS_X-10.15.7"

To install Quicklisp for ABCL in the Docker container run:

docker run -t YOURID/abcl abcl \
  --batch --load /home/abcl/work/abcl/ci/install-quicklisp.lisp

See file:Dockerfile for the build instructions.

RUNNING FROM BINARY RELEASE

After you have downloaded a binary release from either the distributed Maven POM graph or from abcl.org archive unpack it into its own directory. To run ABCL directly from this directory, make sure the Java executable (java) (Java 6, 7, 8, 11, 13, 14, and 15 are supported by ABCL 1.7.0) is in your shell's path.

To start ABCL, simply issue the following command:

cmd$ java -jar abcl.jar

which should result in output like the following

Armed Bear Common Lisp 1.8.0
Java 11.0.8 AdoptOpenJDK
OpenJDK 64-Bit Server VM
Low-level initialization completed in 0.222 seconds.
Startup completed in 1.09 seconds.
Type ":help" for a list of available commands.
CL-USER(1):

Yer now at the interactive ABCL "Read Eval Print Loop" (REPL): hacks 'n glory await.

SLIME

For usage of ABCL with the Superior Lisp Interaction Mode for Emacs, one may easily start a Swank listener via:

(require :asdf)
(require :abcl-contrib)
(asdf:load-system :quicklisp-abcl)
(ql:quickload :swank)
(swank:create-server :dont-close t)

Building From Source Release

ABCL may be built from its source code by executing the build instructions file:build.xml expressed by the venerable Apache Ant tool.

To build, one must have a Java 6, 7, 8, 11, 13, 14 or 15 Java Development Kit (openjdk) installed locally. Just the Java Runtime Environment (JRE) isn't enough, as you need the Java compiler ('javac') to compile the Java source of the ABCL implementation.

Download a binary distribution Ant version 1.7.1 or greater. Unpack the files somewhere convenient, ensuring that the 'ant' (or 'ant.bat' under Windows) executable is in your path and executable.

Then simply executing

cmd$ ant

from the directory containing the file:build.xml instructions will create an executable wrapper ('abcl' under UNIX, 'abcl.bat' under Windows). Use this wrapper to start ABCL.

The build may be customized by copying file:abcl.properties.in to file:abcl.properties, which will cause Ant to attempt to build incrementally as well as optimizing the runtime for a contemporary 64bit desktop/server machine running Java 8 or 11. The file contains incomplete documentation on how it may be edited for subsequent customization. As an alternative to copying the prototype, if one has a version of bash locally, one may issue via Ant

ant abcl.properties.autoconfigure.openjdk.11

or from the shell as

bash ci/create-abcl-properties.bash openjdk11

Currently supported platforms are 'openjdk6', 'openjdk7', 'openjdk8', 'openjdk11', 'openjdk13', 'openjdk14', and 'openjdk15'.

Using NetBeans

Alternatively, one may install the Netbeans visual integrated development environment, which contains both the Java Development Kit as well as the Ant build tool. The source distribution contains Netbeans-specific project artifacts under file:nbproject for loading ABCL as a Netbeans project.

With Netbeans, one should be able to open the ABCL directory as a project whereupon the usual build, run, and debug targets as invoked in the GUI are available. Use the 'slime' config with a suitably linked SLIME swank.asd ASDF configuration file:~/.config/common-lisp/source-registry.conf.d/ to connect a REPL to the NetBeans debug process.

Bugs

Armed Bear Common Lisp strives to be a conforming ANSI X3J13 Common Lisp implementation. Any other behavior should be reported as a bug.

ABCL has a User Manual stating its conformance to the ANSI standard, providing a compliant and practical Common Lisp implementation.

Tests

ABCL 1.8.0 currently fails ~49 out of 21848 total tests, whereas ABCL 1.5.0 failed 48 out of 21708 total tests in the revised and expanded ANSI CL test suite (derived from the tests originally written for GCL).

Maxima's test suite runs without failures.

ABCL comes with a test suite. Consult the output of ant help.test for more information.

Support

ABCL has many deficiencies, both known and unknown. Descriptions, tests, and even patches to address them will be gladly accepted.

Please report problems to the development mailing list or via opening an issue on either the ABCL trac instance or github.

Authors

On behalf of all ABCL development team and contributors,

Mark Evenson
Erik Hülsmann
Rudolf Schlatte
Alessio Stalla
Ville Voutilainen

alan
dmiles
Dmitry Nadezhin
olof ferada
pipping
slyrus
vibhu

András Simon
Peter Graves

Have fun!

October 2020

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].