Giter Site home page Giter Site logo

Comments (3)

omlins avatar omlins commented on May 30, 2024

Sorry for the late reply. CellArrays can be used for additional dimensions. Currently you need to use the main branch if you want to use this functionality. You can find very basic example here: https://omlins.github.io/CellArrays.jl/dev/examples/memcopyCellArray3D_ParallelStencil/

from parallelstencil.jl.

koehlerson avatar koehlerson commented on May 30, 2024

Thanks for the hint! I am not sure if I understood it correctly. Do I understand the example correctly that it shows a three dimensional array whose values can be represented in a 4x4 way? If so, I was asking more towards if its possible to get another parallel index and another dimension of the underlying array so something like

T  = @zeros(nx, ny, nz, nu);
T2 = @zeros(nx, ny, nz, nu);
Ci = @zeros(nx, ny, nz, nu);

and

@parallel_indices (ix,iy,iz,iu) function copy3D_explicit!(T2::CellArray, T::CellArray, Ci::CellArray)
    T2[ix,iy,iz,iu] = T[ix,iy,iz,iu] + Ci[ix,iy,iz,iu];
    return
end

from parallelstencil.jl.

omlins avatar omlins commented on May 30, 2024

I'm not sure the example was fully clear to you. In the example it says:

nx, ny, nz = 128, 128, 1024
celldims   = (4, 4)
T  = @zeros(nx, ny, nz, celldims=celldims)

This will create a CellArray, which contains 128x128x1024 cells, where each cell consists of a matrix of 4x4 values. So, in the end it is a five dimensional array.
Operations on these cells follow the standard rules and syntax of array operations in julia.

if nevertheless you really need a 4th parallel index, then you can compute it yourself based on the one-dimensional, two-dimensional or three-dimensional indices. Just like in CUDA, only one-dimensional, two-dimensional or three-dimensional indices can be obtained directly. See for example: https://stackoverflow.com/questions/44368525/using-linear-index-to-map-to-4d-array

from parallelstencil.jl.

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.