Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
emscripten-core
GitHub Repository: emscripten-core/emscripten
Path: blob/main/system/lib/llvm-libc/config/gpu/app.h
6168 views
1
//===-- Classes to capture properites of GPU applications -------*- C++ -*-===//
2
//
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
// See https://llvm.org/LICENSE.txt for license information.
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
//
7
//===----------------------------------------------------------------------===//
8
9
#ifndef LLVM_LIBC_CONFIG_GPU_APP_H
10
#define LLVM_LIBC_CONFIG_GPU_APP_H
11
12
#include "src/__support/macros/config.h"
13
#include "src/__support/macros/properties/architectures.h"
14
15
#include <stdint.h>
16
17
namespace LIBC_NAMESPACE_DECL {
18
19
// TODO: Move other global values here and export them to the host.
20
struct DataEnvironment {
21
uintptr_t *env_ptr;
22
};
23
24
extern DataEnvironment app;
25
26
} // namespace LIBC_NAMESPACE_DECL
27
28
#endif // LLVM_LIBC_CONFIG_GPU_APP_H
29
30