Giter VIP home page Giter VIP logo

uastar's Introduction

uAstar

Universal General Propose A* for a GPU Platform

uAstar is a research-proposed program, written in C++, which is able to solve traditional general-propose A* with GPU acceleration. Currently, uAstar can solves two kinds of problems.

  1. Find the shortest path on a 8-direction grid network(graph). We use a very compact graph representation in a way such that we can solve the problem with up to 1x10^9 nodes. EXAMPLE (manually input graph through IO):

    $ ./uastar --pathway -H 5 -W 5 --input-module custom
    > 0 0 4 4     # find path from (0, 0) to (4, 4)
    > 1 0 1 1 1   # 0 represents obstacle
    > 1 0 1 1 1
    > 1 0 1 1 1
    > 1 1 1 0 1
    > 1 1 1 0 1
    

    EXAMPLE (random generated graph with 50% paths blocked):

    $ ./uastar --pathway -H 5 -W 5 --input-module random  --block-rate 50
    
  2. Solve the tile puzzle (or sliding puzzle) problem. The "Disjoint pattern database" is used to accelerate the solving process. For really large puzzle problem that tradition A* cannot solves with reasonable size of memory, the memory bounded scheme is used to fetch the solution without the guarantee of optimality.

uastar's People

Contributors

zhou13 avatar

Stargazers

Yi Zhou avatar Le Vu Duc Hung avatar 443eb9#C avatar Ethan J. Musser avatar  avatar Justin Nguyenvu avatar  avatar Sizhe Sui avatar Lars Longor K avatar goubermouche avatar Marcelo Gomes Martins avatar  avatar  avatar  avatar XIN, Ren avatar Maximilian Hoffmann avatar June avatar  avatar  avatar  avatar Fouquet François avatar  avatar Lokesh Koshale avatar  avatar  avatar orion0616 avatar Wenchao DING avatar Xuhao Chen avatar  avatar Pin avatar

Watchers

 avatar  avatar

uastar's Issues

动态链接问题

您好,我在linux cmake 出工程后,再make编译的时候出现了:
collect2: error ld returned 1 exit status
make [2]:***[demo-sort]错误1
make[1]: *** [CMakeFiles/demo-sort.dir/all] 错误 2
make: *** [all] 错误 2
的动态链接错误,不知道您是否遇到过?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.