NeoN
A framework for CFD software
Loading...
Searching...
No Matches
initialization.hpp
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2025 NeoN authors
2//
3// SPDX-License-Identifier: MIT
4
5#pragma once
6
8
9#include <Kokkos_Core.hpp>
10#include <chrono>
11
12
13namespace NeoN
14{
15
16inline void initialize(int argc, char* argv[])
17{
18 Kokkos::initialize(argc, argv);
19
21}
22
23inline void finalize()
24{
25 Logging::info("Finalizing NeoN");
26 Kokkos::finalize();
27}
28}
void setNeonDefaultPattern()
void info(std::string formatString, Args... args)
Definition logging.hpp:83
Definition array.hpp:20
void finalize()
void initialize(int argc, char *argv[])