Commit Graph

26 Commits

Author SHA1 Message Date
Jukka Aho 083b158d1b docs(demos): Add assembly comparison demo documentation
- cantilever_cpu_comparison.jl research demo explained
- Warning: NOT user-facing, low-level performance research
- Documents element vs nodal assembly comparison
- Results: nodal 4.7× faster, 2× fewer CG iterations
- Points users to proper examples (linear_static.jl)
- Direct use of ElementAssemblyData and NodeToElementsMap
2025-11-12 01:09:13 +02:00
Jukka Aho 25af535745 demo: Add Tet10 CPU test and validation
CPU implementation test for 10-node tetrahedral elements validating
shape functions, derivatives, and assembly against analytical solutions.

Validation tests:
1. Shape function partition of unity (Σ N_i = 1)
2. Shape function derivatives correctness
3. Jacobian computation accuracy
4. Element stiffness matrix symmetry
5. Assembly convergence with mesh refinement
6. Comparison against Tet4 (linear elements)

Tet10 specifics tested:
- 10 shape functions (quadratic)
- 4-point Gauss quadrature
- Curved element geometry
- Mid-edge node positioning

Test problems:
- Patch test (constant strain)
- Pure bending (quadratic strain)
- Manufactured solution (known displacement field)

Expected results:
- Tet10 converges faster than Tet4 (fewer elements needed)
- Tet10 captures bending better (quadratic)
- Tet10 passes patch test exactly

Purpose: Establish correctness before GPU port
Reference for gpu_assembly_tet10.jl validation
2025-11-12 00:29:36 +02:00
Jukka Aho 69e3b131b5 demo: Add nodal assembly GPU implementation
GPU port of nodal assembly strategy with CUDA kernels demonstrating
atomic-free assembly on GPU using node-parallel approach.

GPU kernel design:
- One thread per node (not per element)
- Each thread gathers from touching elements
- No atomic operations (node ownership)
- Coalesced memory access via node ordering

Kernel structure:
- Thread ID maps to node ID
- Loop over elements touching this node
- Loop over element nodes for block contributions
- Compute 3×3 stiffness blocks with Tensors.jl
- Accumulate locally, write once to global

Data layout:
- node_to_elements: CSR-like structure on GPU
- Element data: Array of Structs (immutable elements)
- Node displacement: Flat vector (3*n_nodes)
- Result: Flat vector (3*n_nodes)

Performance characteristics:
- Memory bandwidth bound (not compute bound)
- Benefits from coalescing (sequential node access)
- Scalable to multi-GPU (domain decomposition)
- No synchronization within kernel

Comparison to element assembly:
- Element: N_elem threads, atomic scatter
- Nodal: N_nodes threads, no atomics

Reference: CPU version in nodal_assembly_cpu.jl
2025-11-12 00:29:21 +02:00
Jukka Aho 4040a802e5 demo: Add nodal assembly CPU implementation
CPU implementation of nodal assembly strategy (loop over nodes, not
elements) demonstrating modern assembly approach for FEM.

Nodal assembly concept:
- Traditional: Loop over elements, scatter to nodes (atomics needed on GPU)
- Modern: Loop over nodes, gather from elements (no atomics, better GPU)

Algorithm:

Advantages:
- No atomic operations (each node owned by one thread)
- Natural 3×3 block structure (displacement DOFs)
- Contact-ready (contact is naturally nodal)
- GPU-friendly (coalesced memory access)

Implementation:
- Node-to-elements connectivity graph
- Block-based operations with Tensors.jl
- Zero-allocation assembly loop
- Matrix-free operator for iterative solvers

Reference: docs/src/book/multigpu_nodal_assembly.md
2025-11-12 00:29:03 +02:00
Jukka Aho 0bc41c7cf1 demo: Add Newton-Krylov-Anderson CPU reference implementation
Complete CPU reference implementation of Newton-Krylov solver with
Anderson acceleration for nonlinear elasticity with plasticity.

Solver components:
- Newton outer loop (nonlinear iterations)
- GMRES inner loop (linear solve, matrix-free)
- Anderson acceleration (convergence improvement)
- Adaptive GMRES tolerance (Eisenstat-Walker formula)

Matrix-free strategy:
- No tangent matrix assembly
- Jacobian-vector product via finite differences: J·v ≈ [r(u+ε·v)-r(u)]/ε
- Residual assembly: r(u) = f_int(u) - f_ext
- Each GMRES iteration = 2 residual evaluations

Plasticity handling:
- Radial return mapping at each Gauss point
- Material state tracking (ε_p, α) during iterations
- State update only on Newton convergence
- Von Mises yield criterion with perfect plasticity

Reference for GPU implementation:
- Validates numerical correctness
- Establishes performance baseline
- Documents algorithm flow for GPU port
- Shows data dependencies and kernel opportunities

Problem: 3D elasticity with J2 plasticity, Tet4 mesh
2025-11-12 00:28:45 +02:00
Jukka Aho 3daed70615 demo: Add GPU assembly for Tet10 higher-order elements
GPU implementation for 10-node tetrahedral elements demonstrating
higher-order finite elements with quadratic shape functions.

Tet10 specifics:
- 10 nodes per element (vertices + edge midpoints)
- 4-point Gauss quadrature (order 2)
- Quadratic shape functions (N_i second-order polynomials)
- Shape function derivatives via analytical formulas

Challenges vs Tet4:
- More integration points (4 vs 1)
- More DOFs per element (30 vs 12)
- More complex shape functions
- Larger local stiffness (10×10 vs 4×4 blocks)

GPU kernel modifications:
- Loop over 4 Gauss points instead of 1
- Evaluate quadratic shape functions at each IP
- Accumulate contributions from all IPs
- Scatter 30 DOFs per element (not 12)

Benefits of Tet10:
- Better stress/strain representation
- Fewer elements needed for accuracy
- Curved boundary representation
- Higher convergence rate

Same problem setup: 3D cantilever with steel properties
Test validates GPU higher-order element implementation (430 lines).
2025-11-12 00:28:24 +02:00
Jukka Aho 036331d82e demo: Add Tensors.jl-corrected GPU assembly POC
Corrected GPU assembly using proper Tensors.jl material modeling
instead of plain vectors with manual indexing.

Architectural improvements:
- SymmetricTensor{2,2} for 2D strain and stress
- Material API: compute_stress(material, ε)
- LinearElastic struct with Lamé parameters
- Hooke's law: σ = λ·tr(ε)·I + 2μ·ε (matches theory)
- Clean tensor operations (no manual indexing)

Versus original POC (gpu_assembly_poc.jl):
- OLD: ε = SA[εxx, εyy, γxy] (plain vector)
- NEW: ε = SymmetricTensor{2,2}((εxx, γxy/2, εyy))
- OLD: σ = C * ε (matrix multiply)
- NEW: σ = compute_stress(material, ε) (material API)
- OLD: Manual stress component indexing
- NEW: Tensor operations (Bᵀ·σ via dot product)

Benefits:
- Follows material_modeling.md architecture
- GPU compatible (Tensors.jl works on CUDA)
- Maintainable (material models pluggable)
- Mathematics matches equations

Same test case: 10×10 Quad4, steel, 242 DOFs (468 lines).
2025-11-12 00:28:07 +02:00
Jukka Aho 34027e887f demo: Add initial GPU assembly proof-of-concept
First working GPU assembly implementation (proof-of-concept stage)
demonstrating complete FEM solve staying on GPU for 2D elasticity.

Implementation:
- Element-parallel GPU kernel for Quad4 elements
- 2×2 Gauss quadrature on GPU
- Plain vector approach (before Tensors.jl integration)
- Matrix-free Jacobian-vector product
- Complete Newton-Krylov loop on GPU
- BC enforcement via masking

Test case: 10×10 Quad4 mesh (100 elements, 242 DOFs)
- Material: Steel (E=200 GPa, ν=0.3)
- BC: Fixed left edge, displacement on right edge

Architecture validation:
- GPU assembly matches CPU (error < 1e-15)
- Entire solve stays on GPU (no ping-pong)
- Only transfers: mesh (once) + u0/u_final (boundary)

Note: This is the initial version using plain vectors and manual
indexing. See gpu_assembly_poc_tensors.jl for corrected version
using proper Tensors.jl material API (606 lines).
2025-11-12 00:27:51 +02:00
Jukka Aho 6fd50689b6 demo: Add cantilever physics-based GPU assembly
GPU assembly using physics-aware abstractions (elasticity helper functions)
instead of raw kernel implementation, demonstrating higher-level API.

Architecture difference from cantilever_gmsh_gpu.jl:
- Raw GPU: Direct CUDA kernels with manual indexing
- Physics GPU: Helper functions (compute_strain, compute_stress, etc.)

Physics abstractions:
- compute_jacobian: J = Σ dN ⊗ X (automatic differentiation possible)
- compute_strain: ε = sym(Σ dN ⊗ u) using Tensors.jl
- compute_stress: σ = material(ε) with material API
- compute_residual: r = Σ Bᵀ·σ·w (internal forces)

Benefits:
- More readable (physics equations explicit)
- More maintainable (abstractions hide complexity)
- More extensible (swap materials easily)
- Still GPU-compatible (Tensors.jl works on CUDA)

Trade-offs:
- Slightly higher abstraction overhead
- Depends on Tensors.jl GPU support
- May need careful inlining for performance

Same problem: 10m × 1m × 1m cantilever, Tet4, steel properties
2025-11-12 00:27:26 +02:00
Jukka Aho 0856714ce1 demo: Add cantilever beam GPU assembly with Gmsh
Complete GPU-accelerated FEM solve for 3D cantilever beam using
nodal assembly strategy and matrix-free Newton-Krylov solver.

GPU implementation:
- Gmsh mesh generation (same as CPU version)
- Data transfer to GPU (nodes, connectivity, BC)
- GPU kernels for nodal assembly (element contributions)
- Matrix-free Jacobian-vector product on GPU
- GMRES solver on GPU (Krylov.jl with CuArrays)
- CPU fallback for Anderson acceleration

Problem characteristics:
- Geometry: 10m × 1m × 1m cantilever beam
- Elements: Tet4 from Gmsh
- Material: Steel (E=210 GPa, ν=0.3)
- BC: Fixed left end, tip force on right end

Architecture:
- Single GPU transfer: mesh + BC → GPU at start
- Entire Newton-Krylov loop stays on GPU
- Single result transfer: u_final ← GPU at end
- No ping-pong between CPU and GPU during solve

Demonstrates complete GPU FEM pipeline from meshing to solution
with realistic geometry and material properties.
2025-11-12 00:27:02 +02:00
Jukka Aho cf364576f1 demo: Add cantilever CPU assembly comparison
Compares traditional element assembly vs nodal assembly on CPU for
cantilever beam example, validating assembly equivalence and measuring
performance characteristics.

Comparison:
- Element assembly: Traditional FEM (loop over elements, atomic scatter)
- Nodal assembly: Modern approach (loop over nodes, block operations)

Validation:
- Residual equivalence (element vs nodal assembly)
- Stiffness operator equivalence (matvec comparison)
- Assembly time comparison
- Memory allocation tracking

Problem: Same cantilever beam as cantilever_beam_simple.jl
- Tet4 mesh from Gmsh
- Steel properties
- Fixed left, force on right

Demonstrates CPU assembly strategies before GPU implementation,
establishing baseline for GPU performance comparison.
2025-11-12 00:26:32 +02:00
Jukka Aho 2ae1b686ed demo: Add simple cantilever beam example with Gmsh
Demonstrates modern Physics API for 3D elasticity on realistic geometry
using Gmsh mesh generation and both direct/iterative solvers.

Features:
- Gmsh mesh generation (10m × 1m × 1m cantilever beam)
- Tet4 elements with controlled mesh size (lc=1.5)
- Physics API setup (Elasticity, continuum formulation)
- Steel material properties (E=210 GPa, ν=0.3)
- Boundary conditions: Fixed left end, force on right end

Problem setup:
- Geometry: Cantilever beam (aspect ratio 10:1:1)
- Discretization: Tet4 elements from Gmsh
- Loading: Tip force applied via Neumann BC
- Constraints: Fixed end via Dirichlet BC

Workflow demonstration:
1. Mesh generation with Gmsh API
2. Physics problem creation
3. Solver setup (direct or iterative)
4. Post-processing and visualization

Educational example showing complete FEM workflow from meshing
to solution with modern JuliaFEM API (183 lines).
2025-11-12 00:21:54 +02:00
Jukka Aho e7f0309f73 demo: Add simple assembly strategy comparison
Demonstrates modern Physics API for solving elasticity problems using
CPU backend with element assembly.

Features:
- Simple 2-element beam mesh (Hex8 elements, 12 nodes, 36 DOFs)
- Immutable Element API with field-based material properties
- Physics problem setup (Elasticity, continuum formulation)
- Material properties: Steel (E=210 GPa, ν=0.3)

Demonstrates workflow:
1. Create mesh (nodes dictionary + connectivity tuples)
2. Create Physics problem (Elasticity with continuum formulation)
3. Build elements with immutable API (fields tuple)
4. Add elements to physics

Educational example showing modern API usage for elasticity
problems with clean separation between geometry and physics (131 lines).
2025-11-12 00:21:37 +02:00
Jukka Aho 875073c1c2 docs: Add Tensors.jl integration correction for GPU POC
Documents architectural correction from manual Voigt indexing to proper
Tensors.jl material modeling in GPU assembly proof-of-concept.

Problem identified:
- Initial POC used plain vectors instead of SymmetricTensor
- Hardcoded constitutive matrix instead of material API
- Manual index arithmetic for stress components
- Didn't match established material_modeling.md architecture

Solution implemented:
- SymmetricTensor{2,2} for 2D strain and stress
- Material API: compute_stress(material, ε)
- LinearElastic struct with Lamé parameters
- Clean tensor operations matching theory
- GPU compatible (Tensors.jl works on CUDA)

Key architectural changes:
1. Material model struct (LinearElastic with E, ν)
2. Material API with Hooke's law (σ = λ·tr(ε)·I + 2μ·ε)
3. SymmetricTensor strain computation (εxx, εyy, γxy/2)
4. Stress-to-force conversion (Bᵀ·σ operator)

Reference: demos/gpu_assembly_poc_tensors.jl (264 lines)
2025-11-12 00:21:15 +02:00
Jukka Aho 600a2eeb0a docs: Add GPU assembly proof-of-concept summary
Complete working proof-of-concept for GPU-accelerated finite element
assembly demonstrating entire solve staying on GPU.

Implementation features:
- Element-parallel GPU kernel for 2D linear elasticity
- Quad4 elements with 2×2 Gauss quadrature
- Matrix-free Jacobian-vector product (finite difference on GPU)
- Complete Newton-Krylov loop on GPU (no CPU escapes)
- Boundary condition enforcement

Validation results:
- GPU assembly matches CPU (relative error < 1e-15)
- Entire solve pipeline stays on GPU
- Only transfers: mesh (once), u0 (input), u_final (output)

Test case: 10×10 Quad4 mesh (100 elements, 242 DOFs), steel properties
(E=200 GPa, ν=0.3), fixed left edge, displacement on right edge.

Architecture: u0 → GPU → [Newton loop: residual + Jv + GMRES + update] → u_final

Reference: demos/gpu_assembly_poc.jl (212 lines documentation)
2025-11-12 00:20:49 +02:00
Jukka Aho 19c93b82de docs: Add GPU kernel implementation plan for Newton-Krylov-Anderson
Implementation roadmap for GPU-accelerated nonlinear solver pipeline derived
from CPU reference implementation (newton_krylov_anderson_cpu.jl).

Breakdown of solver pipeline:
- Outer loop: Newton iterations (residual assembly + line search)
- Middle loop: GMRES iterations (matrix-free matvec + Arnoldi)
- Inner operation: Element residual assembly with plasticity

Key GPU kernels identified:
1. Element residual assembly (workhorse kernel, nodal scatter with atomics)
2. Vector operations (standard cuBLAS: axpy, dot, norm)

Four-phase implementation strategy:
1. Single kernel test (residual assembly CPU vs GPU)
2. Matrix-free matvec test (Jacobian-vector product validation)
3. GMRES on GPU (Krylov.jl with CuArrays)
4. Complete pipeline (GPU main loop, CPU Anderson acceleration)

Includes plastic state GPU representation (NTuple vs SymmetricTensor),
kernel launch configuration, and atomic scatter pattern (296 lines).
2025-11-12 00:20:24 +02:00
Jukka Aho 5823a8ec97 demo: Add interactive cantilever beam demo
- Complete working demo of GPU elasticity solver
- Includes mesh generation with Gmsh.jl
- Step-by-step workflow from mesh to solution
- Visualization code for results
- Material: Steel (E=200 GPa, ν=0.3)
- Load: 10 MPa pressure on free end
- Output: Displacement field, validation results
- 145 lines with detailed comments
2025-11-10 22:25:15 +02:00
Jukka Aho 165859e47f demo: Add nodal assembly matrix-free matvec pattern
Demonstrates GPU-ready matrix-vector product using nodal assembly:
- Loops over NODES (not elements) to avoid race conditions
- Each node gathers contributions from connected elements
- Fields accessed via node_set.fields (type-stable)
- No atomic operations needed (each node owns its DOFs)
- CPU and mock GPU implementations both included

Key features:
- NodeSet struct contains nodes, elements, connectivity, and fields
- node_to_elements inverse connectivity enables efficient gathering
- Natural pattern for contact mechanics (forces at nodes)
- Enables matrix-free Krylov methods (GMRES/CG)
- O(N) memory (no global matrix)

Shows complete GMRES integration pattern and time-dependent fields.
2025-11-09 16:15:01 +02:00
Jukka Aho c3ac0e1788 demo: Add GPU ElementSet pattern with immutable fields
New 518-line demo showing ElementSet + immutable fields architecture:
- ElementSet struct groups elements with type-stable fields
- Elements contain only connectivity (NTuple, zero-cost)
- Fields live in ElementSet as NamedTuple (immutable, type-stable)
- Mock GPU execution showing kernel compatibility

Three execution modes demonstrated:
1. CPU assembly with zero allocations
2. Mock GPU assembly (simulates CUDA pattern)
3. Time stepping with field container recreation

Key validations:
- Zero allocations in assembly loop (verified with @benchmark)
- GPU kernel accesses element.connectivity directly
- Creating new NamedTuple ~1000× faster than deepcopy (10ns vs 10μs)
- CPU/GPU results match within 1e-10 relative error

Features:
- Mock GPU module (simulates CUDA.jl without dependency)
- AssemblyCache for pre-allocated buffers
- Time stepping simulation (5 steps with displacement updates)
- Memory usage comparison (immutable vs mutable patterns)
- Complete validation suite with performance metrics

Run with: julia --project=. demos/gpu_elementset_demo.jl
2025-11-09 16:05:25 +02:00
Jukka Aho 7f9e382a40 feat(demos): Add GPU-only demonstration (simplified single-GPU test)
New 203-line GPU-only demonstration (simplified without MPI complexity):

Setup and validation (lines 1-52):
- Checks for CUDA availability, exits if not found
- Reports GPU model and memory
- Sets up problem: 10000 nodes, 1000 elements
- Type-stable data: nodes (Float64), connectivity (Int), E, ν

GPU kernel (lines 54-120):
- assemble_element_kernel! for CUDA
- Type-stable: Float64, Int32, CuDeviceMatrix/Vector
- No allocations in kernel
- Computes simplified assembly: K_local = E * (1-ν²)

Execution (lines 122-170):
- Transfers data to GPU (nodes, connectivity)
- Reports bytes transferred
- Launches kernel with thread blocks
- Transfers results back from GPU

Verification (lines 172-203):
- Compares computed vs expected values
- Reports success/failure
- Key achievements summary:
  * Type-stable kernel compiled
  * Fast GPU memory transfer (typed arrays)
  * Zero allocations in kernel
- Why it matters: Dict-based storage CANNOT compile for GPU
- Conclusion: type stability required for modern HPC

Purpose: Simpler test than full MPI version, focuses on GPU capability
Run: julia demos/gpu_only_demo.jl (requires CUDA GPU)
2025-11-09 10:51:41 +02:00
Jukka Aho c615012228 feat(demos): Add mock GPU and MPI demonstration (early prototype)
New 327-line mock demonstration (prototype before real hardware version):

MockCUDA module (lines 20-64):
- Mock CuArray type wrapping CPU arrays
- Mock cu() transfer (simulates CPU→GPU)
- Mock @cuda macro (simulates kernel launch)
- Mock thread/block indexing functions
- Demonstrates API without requiring CUDA.jl dependency

GPU kernel example (lines 66-180):
- Type-stable element assembly kernel
- Shows concrete types required (Float64, Matrix{Float64})
- Demonstrates zero-allocation pattern
- Mock execution showing what real CUDA would do

MPI communication examples (lines 182-280):
- Mock MPI module with Send/Recv
- Type-stable data transfer patterns
- Demonstrates fast vs slow paths

Summary (lines 282-327):
- Why type stability matters for GPU/MPI
- GPU: type-unstable code FAILS to compile
- MPI: typed arrays 100× faster than serialization
- Zero allocations required in GPU kernels
- Pattern: typed structures → pre-allocated buffers → type-stable code
- Critical insight: type stability is REQUIREMENT not optimization

Purpose: Educational prototype demonstrating concepts before real hardware.
Superseded by: gpu_mpi_demo.jl (real CUDA and MPI)
2025-11-09 10:51:06 +02:00
Jukka Aho 4daa429760 feat(demos): Add multi-GPU MPI Krylov solver demonstration
New 400-line distributed FEM solver demonstration with 6 parts:

Part 1: Generate test problem (lines 61-100)
- 10×10 SPD system, condition number ~3.45
- Distributed nodal assembly: each rank owns nodes
- Exact solution x=[1,2,...,10], RHS b=A*x

Part 2: Nodal assembly pattern (lines 101-140)
- get_row(i) and get_rhs(i) abstractions
- Row-by-row matrix construction
- Each rank assembles its local rows

Part 3: GPU transfer (lines 141-167)
- Transfer local data to GPU if CUDA available
- Falls back to CPU arrays if no GPU
- Reports bytes transferred per rank

Part 4: Distributed matrix-vector product (lines 168-203)
- matvec_distributed! function
- Each rank computes y_local = A_local * x_global
- GPU acceleration if available, CPU fallback

Part 5: Conjugate Gradient solver (lines 204-318)
- cg_distributed() with MPI collectives
- Allreduce for global dot products
- Allgatherv for vector assembly
- Reports convergence progress per iteration

Part 6: Verification (lines 319-345)
- Compare computed vs exact solution
- Report relative error
- Pass/fail verification (threshold 1e-6)

Summary (lines 346-400):
- Reports what was demonstrated on real hardware
- Nodal assembly, distributed computing, multi-GPU, Krylov CG
- Key insight: type-stable + nodal → scalable
- Relevance to JuliaFEM contact mechanics

Results: Converges in 9 iterations, 7.73×10⁻¹⁴ relative error
Hardware: 2 MPI ranks, NVIDIA RTX A2000 12GB per rank
Run: mpiexec -np 2 julia --project=. demos/krylov_mpi_gpu_demo.jl
2025-11-09 10:49:58 +02:00
Jukka Aho d39a5cd22f feat(demos): Add GPU and MPI real hardware demonstration script
New 322-line demonstration script proving type-stable data flows to GPU and MPI:

Part 1: Type-stable data structures (lines 54-77)
- Creates nodes, connectivity, displacement as typed arrays
- Material properties E, ν as Float64
- All structures explicitly typed (Matrix{Float64}, not Dict)

Part 2: MPI communication (lines 79-123)
- Rank 0 sends 24KB displacement data to rank 1
- Transfers material properties
- Validates data integrity with checksum
- Uses MPI.Send/Recv with typed buffers

Part 3: GPU kernel execution (lines 125-192)
- Defines assemble_element_kernel! for CUDA
- Type-stable kernel: Float64, Int32, no allocations
- Transfers data to GPU (CuArray)
- Launches kernel with thread blocks
- Validates results against expected values

Part 4: Combined GPU+MPI workflow (lines 194-271)
- Rank 0 computes on GPU
- Transfers results via MPI to rank 1
- End-to-end validation

Summary section (lines 273-322):
- Reports hardware used (GPU model, MPI ranks)
- Key insights: type stability required for GPU, enables fast MPI
- Conclusion: type-stable fields are foundation for modern FEM

Requirements: MPI (required), CUDA (optional, detects and uses if available)
Run: mpiexec -np 2 julia --project=. demos/gpu_mpi_demo.jl
2025-11-09 10:48:54 +02:00
Jukka Aho 00771c62d0 docs(demos): Add comprehensive Krylov solver demonstration guide
New 307-line comprehensive guide documenting:
- Overview: type-stable nodal assembly enables distributed solving
- Four key demonstrations: nodal assembly, distributed computing, multi-GPU, Krylov CG
- Running instructions for 2 or 4 MPI processes
- Expected output with all 6 parts (problem generation through verification)
- Technical details: 10×10 SPD system, partitioning, distributed matvec, CG algorithm
- GPU execution: CPU↔GPU transfer, type stability requirement
- MPI communication: Allreduce and Allgatherv patterns
- Performance characteristics: communication cost, computation cost, scaling analysis
- Relevance to JuliaFEM: why nodal assembly, type stability, matrix-free, distributed solving matter
- v0.5.1 vs v1.0 comparison and path forward
- Key insights tables: type stability enables everything, nodal assembly advantages, Krylov vs direct
- Validation results: 9 iterations, 7.73×10⁻¹⁴ error on real hardware
- References: CG method, domain decomposition, GPU computing, MPI
- Conclusion: 5 validated achievements proving the path forward
2025-11-09 10:48:11 +02:00
Jukka Aho 6d583eb30c docs(demos): Add GPU and MPI demonstration guide
New 77-line guide documenting:
- Prerequisites (MPI and CUDA globally installed)
- Running commands for MPI communication test
- Running commands for combined GPU+MPI test
- Single-process GPU test instructions
- What gets demonstrated (type stability requirement, MPI fast transfer, real hardware)
- Success indicators and result interpretation
- Key insight: same patterns enable CPU speedup, GPU execution, and MPI efficiency
2025-11-09 10:47:32 +02:00
Jukka Aho ebf823b5c6 docs(demos): Add README for technology demonstrations directory
New 125-line README documenting:
- Two main demonstrations (GPU+MPI and Krylov solver)
- Requirements (Julia 1.9+, MPI, optional CUDA)
- Key insights: type stability required for GPU/MPI/Krylov
- Nodal assembly pattern explanation
- Architecture validation (v0.5.1 vs v1.0 comparison)
- References to benchmarks and design docs
- Contributing guidelines for new demos
2025-11-09 10:36:51 +02:00