Skip to content
Snippets Groups Projects
Select Git revision
  • 5123076ccc6f9bfc9a2a57333743d9064d73a99c
  • main default protected
  • fortran
  • usertypes
  • must-toolcoverage
  • toolcoverage
  • tools
  • must-json
  • merged
  • tools-parallel
  • coll
  • rma
  • dtypes
  • p2p
  • infrastructure-patch-3
  • infrastructure-patch2
  • devel-TJ
  • infrasructure-patch-1
  • devel-ES
  • instructionblock-lists
  • mbi
21 results

CallOrdering-unmatched-mpi_irsend-001_0.elapsed

Blame
  • colour.h 556 B
    /* SPDX-FileCopyrightText: © 2022 Maik Herbers */
    /* SPDX-License-Identifier: GPL-3.0-or-later */
    
    #pragma once
    
    #include "common.h"
    
    enum colour_type {
    	colour_type_mono,
    	colour_type_cividis,
    	colour_type_viridis,
    };
    
    typedef void (*colour_function_t)(struct rgba_pix *, const mpc_t, struct temporaries, enum colour_type type);
    
    void get_colour_mono(struct rgba_pix *colour, const mpc_t val, struct temporaries tmps, enum colour_type type);
    void get_colour_cmap(struct rgba_pix *colour, const mpc_t val, struct temporaries tmps, enum colour_type type);