コード例 #1
0
 internal GeneratorArgs(
     PTXBackend backend,
     EntryPoint entryPoint,
     PTXDebugInfoGenerator debugInfoGenerator,
     ContextFlags contextFlags)
 {
     Backend            = backend;
     EntryPoint         = entryPoint;
     DebugInfoGenerator = debugInfoGenerator;
     ContextFlags       = contextFlags;
 }
コード例 #2
0
 internal GeneratorArgs(
     PTXBackend backend,
     EntryPoint entryPoint,
     ContextFlags contextFlags,
     PTXDebugInfoGenerator debugInfoGenerator,
     PointerAlignments pointerAlignments)
 {
     Backend            = backend;
     EntryPoint         = entryPoint;
     ContextFlags       = contextFlags;
     DebugInfoGenerator = debugInfoGenerator;
     PointerAlignments  = pointerAlignments;
 }
コード例 #3
0
 internal GeneratorArgs(
     PTXBackend backend,
     EntryPoint entryPoint,
     ContextProperties contextProperties,
     PTXDebugInfoGenerator debugInfoGenerator,
     PointerAlignments.AlignmentInfo pointerAlignments)
 {
     Backend            = backend;
     EntryPoint         = entryPoint;
     Properties         = contextProperties;
     DebugInfoGenerator = debugInfoGenerator;
     PointerAlignments  = pointerAlignments;
 }
コード例 #4
0
ファイル: PTXCodeGenerator.cs プロジェクト: linhdh/ILGPU
 public GeneratorArgs(
     PTXBackend backend,
     EntryPoint entryPoint,
     PTXDebugInfoGenerator debugInfoGenerator,
     StringBuilder stringBuilder,
     ContextFlags contextFlags)
 {
     Backend            = backend;
     EntryPoint         = entryPoint;
     DebugInfoGenerator = debugInfoGenerator;
     StringBuilder      = stringBuilder;
     ContextFlags       = contextFlags;
 }