paper-with-me

Papers

Parallel and in-process compilation of individuals for genetic programming on GPU

2017-05-21 · Hakan Ayral, Songül Albayrak

Three approaches to implement genetic programming on GPU hardware are compilation, interpretation and direct generation of machine code. The compiled approach is known to have a prohibitive overhead compared to other two. This paper investigates methods to accelerate compilation of individuals for genetic programming on GPU hardware. We apply in-process compilation to minimize the compilation overhead at each generation; and we investigate ways to parallelize in-process compilation. In-process compilation doesn't lend itself to trivial parallelization with threads; we propose a multiprocess parallelization using memory sharing and operating systems interprocess communication primitives. With parallelized compilation we achieve further reductions on compilation overhead. Another contribution of this work is the code framework we built in C# for the experiments. The framework makes it possible to build arbitrary grammatical genetic programming experiments that run on GPU with minimal extra coding effort, and is available as open source.

📄 PDF Abstract BibTeX arXiv:1705.07492

Code (1)

hayral/Parallel-and-in-process-compilation-of-individuals-for-genetic-programming-on-GPU 공식 구현

Tasks

GPU

Similar Papers 제목 키워드 기반

Multi-threaded Memory Efficient Crossover in C++ for Generational Genetic Programming

2020-09-22 · W. B. Langdon

C++ code snippets from a multi-core parallel memory-efficient crossover for genetic programming are given. They may be adapted for separate generation evolutionary algorithms where large chromosomes or small RAM require …

C++ codeEvolutionary Algorithms

It is Time for New Perspectives on How to Fight Bloat in GP

2020-05-01 · Francisco Fernández de Vega, Gustavo Olague, Francisco Chávez, Daniel Lanza 외

The present and future of evolutionary algorithms depends on the proper use of modern parallel and distributed computing infrastructures. Although still sequential approaches dominate the landscape, available multi-core,…

Distributed ComputingEvolutionary Algorithms

Using LLVM-based JIT Compilation in Genetic Programming

2017-01-20 · Michal Gregor, Juraj Spalek

The paper describes an approach to implementing genetic programming, which uses the LLVM library to just-in-time compile/interpret the evolved abstract syntax trees. The solution is described in some detail, including a …

Solving even-parity problems using traceless genetic programming

2021-10-04 · Mihai Oltean

A genetic programming (GP) variant called traceless genetic programming (TGP) is proposed in this paper. TGP is a hybrid method combining a technique for building individuals and a technique for representing individuals.…

A Probabilistic Linear Genetic Programming with Stochastic Context-Free Grammar for solving Symbolic Regression problems

2017-04-03 · Léo Françoso Dal Piccol Sotto, Vinícius Veloso de Melo

Traditional Linear Genetic Programming (LGP) algorithms are based only on the selection mechanism to guide the search. Genetic operators combine or mutate random portions of the individuals, without knowing if the result…

regressionSymbolic Regression