Skip to content
GitLab
Projects Groups Topics Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Register
  • Sign in
  • alya-testsuite4 alya-testsuite4
  • Project information
    • Project information
    • Activity
    • Members
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Container Registry
    • Terraform modules
  • Wiki
    • Wiki
  • Activity
Collapse sidebar
  • alyaalya
  • alya-testsuite4alya-testsuite4
  • Wiki
  • Database UML

Database UML · Changes

Page history
Update Database UML authored Sep 09, 2020 by Damien Dosimont's avatar Damien Dosimont
Hide whitespace changes
Inline Side-by-side
Database-UML.md
View page @ 41be163c
```mermaid ```mermaid
classDiagram classDiagram
class Session class session
Session : +BIGINT[UNSIGNED] id session : +SERIAL id
Session : +CHAR[20] commit session : +CHAR[20] commit
Session : +DATETIME start_date session : +DATETIME start_date
Session : +DATETIME end_date session : +DATETIME end_date
Session : +VARCHAR[20] hpc_system session : +VARCHAR[255] hpc_system
class Benchmark class benchmark
Benchmark : +BIGINT[UNSIGNED] id benchmark : +SERIAL id
Benchmark : +VARCHAR[20] name benchmark : +VARCHAR[255] name
Benchmark : +BIGINT[UNSIGNED] elements benchmark : +BIGINT[UNSIGNED] elements
Benchmark : +BIGINT[UNSIGNED] nodes benchmark : +BIGINT[UNSIGNED] nodes
class Build class build
Build: +BIGINT[UNSIGNED] id build: +SERIAL id
Build: +VARCHAR[20] compiler build: +VARCHAR[255] compiler
Build: +VARCHAR[20] version build: +VARCHAR[255] version
Build: +VARCHAR[20] platform build: +VARCHAR[255] platform
Build: +JSON configuration build: +JSON configuration
class XP class xp
XP : +BIGINT[UNSIGNED] id xp : +BIGINT[UNSIGNED] id
XP : +BIGINT[UNSIGNED] session xp : +BIGINT[UNSIGNED] session
XP : +BIGINT[UNSIGNED] benchmark xp : +BIGINT[UNSIGNED] benchmark
XP : +BIGINT[UNSIGNED] build xp : +BIGINT[UNSIGNED] build
XP : +DATETIME start_date xp : +DATETIME start_date
XP : +DATETIME end_date xp : +DATETIME end_date
XP : +BIGINT[UNSIGNED] mpi xp : +BIGINT[UNSIGNED] mpi
XP : +BIGINT[UNSIGNED] openmp xp : +BIGINT[UNSIGNED] openmp
XP : +JSON nodes xp : +JSON nodes
XP ..> Session xp ..> session
XP ..> Benchmark xp ..> benchmark
XP ..> Build xp ..> build
class Measure class measure
Measure : +BIGINT[UNSIGNED] id measure : +BIGINT[UNSIGNED] id
Measure : +BIGINT[UNSIGNED] xp measure : +BIGINT[UNSIGNED] xp
Measure : +CHAR[5] module measure : +CHAR[5] module
Measure : +VARCHAR[20] function measure : +VARCHAR[255] function
Measure : +VARCHAR[50] measure measure : +VARCHAR[255] measure
Measure : +DOUBLE value measure : +DOUBLE value
measure : +VARCHAR[25] unit
Measure ..> XP measure ..> xp
``` ```
\ No newline at end of file
Clone repository
  • Home
  • User
    • Presentation
    • SSH configuration
    • Get the testsuite
    • Basic usage
    • Advanced configuration
    • Advanced usage
    • Analyze the results
    • Code Coverage
  • Developer
    • Add a new test
    • Test configuration
    • Base file format
    • Manage the tolerances
    • Troubleshooting
  • Benchmarks
    • Database UML