summaryrefslogtreecommitdiff
path: root/source/core/slang-downstream-compiler.h
diff options
context:
space:
mode:
authorjsmall-nvidia <jsmall@nvidia.com>2020-02-04 15:19:48 -0500
committerGitHub <noreply@github.com>2020-02-04 15:19:48 -0500
commit17c6c6044965629a3ae7e8ef004cc0b2ca657c55 (patch)
tree5b78004808354b32d09ba13c0ec4e32a44f345ab /source/core/slang-downstream-compiler.h
parentb415760d7f166eaad7fa27daa09edc9a8964c37e (diff)
CUDA/C++ backend improvements (#1198)
* WIP with vector float test. * vector-float test working. * Fixed remaing tests broken with init changes. * Improve 64bit-type-support.md * Disable tests broken on CI system for Dx. * WIP: Make type available for comparison. * Moved type conversion into TypeTextUtil. * Add text/type conversions from DownstreamCompiler to TypeTextUtil. * Allow compaison taking into account type. * Removed quantize in vector-float.slang test.
Diffstat (limited to 'source/core/slang-downstream-compiler.h')
-rw-r--r--source/core/slang-downstream-compiler.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/source/core/slang-downstream-compiler.h b/source/core/slang-downstream-compiler.h
index a4238ce38..f9e33ed6c 100644
--- a/source/core/slang-downstream-compiler.h
+++ b/source/core/slang-downstream-compiler.h
@@ -280,22 +280,11 @@ public:
/// Some downstream compilers are backed by a shared library. This allows access to the shared library to access internal functions.
virtual ISlangSharedLibrary* getSharedLibrary() { return nullptr; }
- /// Return the compiler type as name
- static UnownedStringSlice getCompilerTypeAsText(SlangPassThrough type);
-
/// Get info for a compiler type
static const Info& getInfo(SlangPassThrough compiler) { return s_infos.infos[int(compiler)]; }
/// True if this compiler can compile the specified language
static bool canCompile(SlangPassThrough compiler, SlangSourceLanguage sourceLanguage);
- /// Given a source language name returns a source language. Name here is distinct from extension
- static SlangSourceLanguage getSourceLanguageFromName(const UnownedStringSlice& text);
- /// Given a name returns the pass through
- static SlangPassThrough getPassThroughFromName(const UnownedStringSlice& slice);
- static SlangResult getPassThroughFromName(const UnownedStringSlice& slice, SlangPassThrough& outPassThrough);
- /// Get the compilers name
- static UnownedStringSlice getPassThroughName(SlangPassThrough passThru);
-
/// Given a source language return as the equivalent compile target
static SlangCompileTarget getCompileTarget(SlangSourceLanguage sourceLanguage);