AQUAgpusph 4.1.2
Loading...
Searching...
No Matches
TabFile.h
Go to the documentation of this file.
1/*
2 * This file is part of AQUAgpusph, a free CFD program based on SPH.
3 * Copyright (C) 2012 Jose Luis Cercos Pita <jl.cercos@upm.es>
4 *
5 * AQUAgpusph is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * AQUAgpusph is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with AQUAgpusph. If not, see <http://www.gnu.org/licenses/>.
17 */
18
24#ifndef TABFILE_H_INCLUDED
25#define TABFILE_H_INCLUDED
26
27#include <fstream>
29
30namespace Aqua{ namespace CalcServer{ namespace Reports{
31
42{
43public:
54 TabFile(const std::string tool_name,
55 const std::string fields,
56 const std::string output_file);
57
60 ~TabFile();
61
64 void setup();
65
66protected:
71 cl_event _execute(const std::vector<cl_event> events);
72
73private:
75 std::string _output_file;
77 std::ofstream _f;
78};
79
80}}} // namespace
81
82#endif // TABFILE_H_INCLUDED
Runtime output base class. (See Aqua::CalcServer::Reports::Report for details)
Runtime outputs base class.
Definition: Report.h:49
Runtime output file.
Definition: TabFile.h:42
cl_event _execute(const std::vector< cl_event > events)
Definition: TabFile.cpp:72
~TabFile()
Destructor.
Definition: TabFile.cpp:47
void setup()
Initialize the tool.
Definition: TabFile.cpp:52
__kernel void fields(__global const unsigned int *iset, __global const uint *isplit, __global const uint *mybuffer, __global const unsigned int *ilevel, __global const float *split_weight, __global float *m0, __global float *m, __global vec *r, __global vec *u, __global vec *dudt, __global float *rho, __global float *drhodt, __global const uint *icell, __global const uint *ihoc, __constant float *dr_level0, unsigned int N, uivec4 n_cells)
Collect the children, and the seed itself, in order to compute the field values of the buffer partner...
Definition: Coalesce.cl:435
Main AQUAgpusph namespace.
Definition: ArgumentsManager.cpp:45