GithubHelp home page GithubHelp logo

Comments (1)

ProjectPhysX avatar ProjectPhysX commented on May 27, 2024

Hi @Fifis,

OpenCL has a (somewhat arbitrary) size limitation for how large a single VRAM buffer allocation can be. This is typically 1/4 of total VRAM capacity, in your case 512 MB. Most new GPU drivers do not inforce this limit anymore, and don't pose issues. However some very old GPU drivers for ancient GPUs do.

FluidX3D holds the majority of data (the density distribution functions) in one large buffer. You can compute the size of this largest buffer allocation as follows:

  • for FP32: NxNyNz cells * 76 Bytes/cell
  • for FP16: NxNyNz cells * 38 Bytes/cell

For the standard benchmark case (256³ resolution), this is 1216 MB (FP32) and 608 MB (FP16) respectively, so the AMD's old GPU driver throws OpenCL error -61 (too large single-buffer allocation).

You'll have to run FluidX3D at lower grid resolution unfortunately, and can't use even the small 2GB VRAM to the full extent. Largest supported cubic resolution is 188³ (FP32) or 240³ (FP16). You can change the benchmark resolution here.

Kind regards,
Moritz

from fluidx3d.

Related Issues (20)

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.