Darwin Neuroevolution Framework
platform_abstraction_layer.h
1 // Copyright 2018 The Darwin Neuroevolution Framework Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 // portable abstractions for platform specific code
16 
17 #pragma once
18 
19 #include <string>
20 using namespace std;
21 
22 namespace pal {
23 
25 string userHomePath();
26 
28 bool detectAvx2();
29 
31 void setenv(const char* name, const char* value);
32 
33 } // namespace pal
STL namespace.
Platform Abstraction Layer.
Definition: platform_abstraction_layer.cpp:28
string userHomePath()
Returns user home directory path.
Definition: platform_abstraction_layer.cpp:49
bool detectAvx2()
Returns true if AVX2 is detected.
Definition: platform_abstraction_layer.cpp:56
void setenv(const char *name, const char *value)
Sets an enviroment variable.
Definition: platform_abstraction_layer.cpp:76