Taskflow  3.2.0-Master-Branch
Loading...
Searching...
No Matches
taskflow.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "core/executor.hpp"
6
32// TF_VERSION % 100 is the patch level
33// TF_VERSION / 100 % 1000 is the minor version
34// TF_VERSION / 100000 is the major version
35
36// current version: 3.4.0
37#define TF_VERSION 300400
38
39#define TF_MAJOR_VERSION TF_VERSION/100000
40#define TF_MINOR_VERSION TF_VERSION/100%1000
41#define TF_PATCH_VERSION TF_VERSION%100
42
46namespace tf {
47
51namespace detail { }
52
53
57constexpr const char* version() {
58 return "3.4.0";
59}
60
61
62} // end of namespace tf -----------------------------------------------------
63
64
65
66
67
critical include file
executor include file
cuda parallel-iteration algorithms include file
taskflow namespace
Definition small_vector.hpp:27
constexpr const char * version()
queries the version information in a string format major.minor.patch
Definition taskflow.hpp:57