コード例 #1
0
ファイル: Quantum15Attribute.cs プロジェクト: xeno-by/libptx
 protected Quantum15Attribute(HardwareIsa hardwareIsa)
     : this(null, SoftwareIsa.PTX_15, hardwareIsa.AssertThat(isa => isa < HardwareIsa.SM_20))
 {
 }
コード例 #2
0
ファイル: Quantum15Attribute.cs プロジェクト: xeno-by/libptx
 protected Quantum15Attribute(String signature, HardwareIsa hardwareIsa)
     : this(signature, SoftwareIsa.PTX_15, hardwareIsa.AssertThat(isa => isa < HardwareIsa.SM_20))
 {
 }
コード例 #3
0
ファイル: Atom15Attribute.cs プロジェクト: xeno-by/libptx
 public Atom15Attribute(HardwareIsa hardwareIsa)
     : this(null, SoftwareIsa.PTX_15, hardwareIsa.AssertThat(isa => isa < HardwareIsa.SM_20))
 {
 }
コード例 #4
0
ファイル: Atom15Attribute.cs プロジェクト: xeno-by/libptx
 public Atom15Attribute(String signature, HardwareIsa hardwareIsa)
     : this(signature, SoftwareIsa.PTX_15, hardwareIsa.AssertThat(isa => isa < HardwareIsa.SM_20))
 {
 }
コード例 #5
0
ファイル: Quantum20Attribute.cs プロジェクト: xeno-by/libptx
 protected Quantum20Attribute(HardwareIsa hardwareIsa, SoftwareIsa softwareIsa)
     : this(null, softwareIsa.AssertThat(isa => isa >= SoftwareIsa.PTX_20), hardwareIsa.AssertThat(isa => isa >= HardwareIsa.SM_20))
 {
 }
コード例 #6
0
ファイル: Quantum20Attribute.cs プロジェクト: xeno-by/libptx
 protected Quantum20Attribute(String signature, HardwareIsa hardwareIsa, SoftwareIsa softwareIsa)
     : base(signature, softwareIsa.AssertThat(isa => isa >= SoftwareIsa.PTX_20), hardwareIsa.AssertThat(isa => isa >= HardwareIsa.SM_20))
 {
 }
コード例 #7
0
ファイル: Atom20Attribute.cs プロジェクト: xeno-by/libptx
 public Atom20Attribute(String signature, SoftwareIsa softwareIsa, HardwareIsa hardwareIsa)
     : base(signature, softwareIsa.AssertThat(isa => isa >= SoftwareIsa.PTX_20), hardwareIsa.AssertThat(isa => isa >= HardwareIsa.SM_20))
 {
 }
コード例 #8
0
ファイル: Atom20Attribute.cs プロジェクト: xeno-by/libptx
 public Atom20Attribute(HardwareIsa hardwareIsa, SoftwareIsa softwareIsa)
     : this(null, softwareIsa.AssertThat(isa => isa >= SoftwareIsa.PTX_20), hardwareIsa.AssertThat(isa => isa >= HardwareIsa.SM_20))
 {
 }
コード例 #9
0
ファイル: Pragma20Attribute.cs プロジェクト: xeno-by/libptx
 public Pragma20Attribute(String signature, HardwareIsa hardwareIsa)
     : this(signature, SoftwareIsa.PTX_20, hardwareIsa.AssertThat(isa => isa >= HardwareIsa.SM_20))
 {
 }
コード例 #10
0
ファイル: Sreg15Attribute.cs プロジェクト: xeno-by/libptx
 public Sreg15Attribute(Type type, HardwareIsa hardwareIsa)
     : this(null, type, SoftwareIsa.PTX_15, hardwareIsa.AssertThat(isa => isa < HardwareIsa.SM_20))
 {
 }
コード例 #11
0
ファイル: Sreg20Attribute.cs プロジェクト: xeno-by/libptx
 public Sreg20Attribute(Type type, HardwareIsa hardwareIsa, SoftwareIsa softwareIsa)
     : this(null, type, softwareIsa.AssertThat(isa => isa >= SoftwareIsa.PTX_20), hardwareIsa.AssertThat(isa => isa >= HardwareIsa.SM_20))
 {
 }