forked from OSchip/llvm-project
R600/SI: Specify wavefront size for SI and CI
llvm-svn: 213550
This commit is contained in:
parent
8e44d948b6
commit
42639a57de
|
@ -130,10 +130,12 @@ def FeatureNorthernIslands : SubtargetFeatureGeneration<"NORTHERN_ISLANDS",
|
||||||
>;
|
>;
|
||||||
|
|
||||||
def FeatureSouthernIslands : SubtargetFeatureGeneration<"SOUTHERN_ISLANDS",
|
def FeatureSouthernIslands : SubtargetFeatureGeneration<"SOUTHERN_ISLANDS",
|
||||||
[Feature64BitPtr, FeatureFP64, FeatureLocalMemorySize32768]>;
|
[Feature64BitPtr, FeatureFP64, FeatureLocalMemorySize32768,
|
||||||
|
FeatureWavefrontSize64]>;
|
||||||
|
|
||||||
def FeatureSeaIslands : SubtargetFeatureGeneration<"SEA_ISLANDS",
|
def FeatureSeaIslands : SubtargetFeatureGeneration<"SEA_ISLANDS",
|
||||||
[Feature64BitPtr, FeatureFP64, FeatureLocalMemorySize65536]>;
|
[Feature64BitPtr, FeatureFP64, FeatureLocalMemorySize65536,
|
||||||
|
FeatureWavefrontSize64]>;
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
def AMDGPUInstrInfo : InstrInfo {
|
def AMDGPUInstrInfo : InstrInfo {
|
||||||
|
|
Loading…
Reference in New Issue