We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cc2d13 commit 9fadfb1Copy full SHA for 9fadfb1
include/luxrays/utils/cudacache.h
@@ -58,6 +58,9 @@ class cudaKernelPersistentCache : public cudaKernelCache {
58
59
static std::filesystem::path GetCacheDir(const std::string &applicationName);
60
61
+ std::string getApplicationName() {
62
+ return appName;
63
+ }
64
private:
65
std::string appName;
66
};
@@ -68,3 +71,4 @@ class cudaKernelPersistentCache : public cudaKernelCache {
68
71
69
72
#endif /* _LUXRAYS_CUDACACHE_H */
70
73
74
+// vim: autoindent noexpandtab tabstop=4 shiftwidth=4
0 commit comments