Skip to content

Commit 65d1075

Browse files
fixing errors
1 parent d68b9c1 commit 65d1075

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/Manifest.toml
1+
Manifest.toml

src/features/qualifiers/amd/amd_accelerators.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export TeraScale, TeraScale_1_0, TeraScale_2_0, TeraScale_3_0, TeraScale1, TeraS
4242

4343
# Accelerators
4444

45-
abstract type AMDAccelerator <: Accelerator end
45+
abstract type AMDAccelerator <: Accelerator end; export AMDAccelerator
4646

4747

4848
# families 1

src/features/qualifiers/common.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
abstract type OpenCL_API <: AcceleratorBackend end
88
abstract type OpenCL_1_0 <: OpenCL_API end
99
abstract type OpenCL_1_1 <: OpenCL_1_0 end
10-
abstract type OpenCL_1_2 <: OpenCL_1_1 end
10+
abstract type OpenCL_1_2 <: OpenCL_1_1 end
1111
abstract type OpenCL_2_0 <: OpenCL_1_2 end
1212
abstract type OpenCL_2_1 <: OpenCL_2_0 end
1313
abstract type OpenCL_2_2 <: OpenCL_2_1 end
@@ -89,7 +89,7 @@ abstract type HBM2e <: SDRAM end
8989
abstract type HBM3 <: SDRAM end
9090
abstract type HBM_PIM <: SDRAM end
9191

92-
export RAM, DDR2, DDR3, DDR33L, DDR4, LPDDR4, LPDDR4X, DDR5, LPDDR5
92+
export RAM, SDRAM, DDR2, DDR3, DDR33L, DDR4, LPDDR4, LPDDR4X, DDR5, LPDDR5
9393
export DDR_SDRAM, GDDR2, GDDR3, GDDR4, GDDR5, GDDR5X, GDDR6, GDDR6X
9494

9595
# Storage types
@@ -147,4 +147,4 @@ abstract type PerThread <: WorkerCount end
147147
abstract type PerVCPU <: WorkerCount end
148148
abstract type Unmapped <: WorkerCount end
149149

150-
export PerNode, PerProcessor, PerCore, PerThread, PerVCPU
150+
export WorkerCount, NoCoworkers, PerNode, PerProcessor, PerCore, PerThread, PerVCPU, Unmapped

src/features/qualifiers/ec2/ec2.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1000,7 +1000,7 @@ function getNodeFeatures(provider::Type{<:AmazonEC2}, node_features)
10001000
node_features["node_virtual"] = "Yes"
10011001
node_features["node_dedicated"] = "Yes" # ???
10021002
node_features["node_machinefamily"] = instance_info["node_machinefamily"]
1003-
node_features["node_machinetype"] = instance_info["node_machinesize"]
1003+
node_features["node_machinetype"] = instance_info["node_machinetype"]
10041004
node_features["node_vcpus_count"] = instance_info["node_vcpus_count"]
10051005
end
10061006

src/features/qualifiers/intel/intel.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ abstract type IntelProcessor <: Processor end; export IntelProcessor
1010

1111
# Microarchictetures (from 2010)
1212

13-
abstract type IntelMicroarchitecture <: ProcessorMicroarchitecture end
13+
abstract type IntelMicroarchitecture <: ProcessorMicroarchitecture end; export IntelMicroarchitecture
1414

1515
abstract type Westmere <: IntelMicroarchitecture end
1616
abstract type Saltwell <: IntelMicroarchitecture end
@@ -117,7 +117,7 @@ export Westmere,
117117

118118
# Intel Accelerators
119119

120-
abstract type IntelAccelerator <: Accelerator end
120+
abstract type IntelAccelerator <: Accelerator end; export IntelAccelerator
121121

122122
abstract type IntelAcceleratorArchitecture <: AcceleratorArchitecture end; export IntelAcceleratorArchitecture
123123

src/features/qualifiers/xilinx/xilinx.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
abstract type Xilinx <: Manufacturer end; export Xilinx
66

7-
abstract type UltrascalePlus_HBM_FPGA <: AcceleratorType end; export UltrascalePlus_HBM_FPGA
8-
abstract type UltrascalePlus_VU9P <: AcceleratorType end; export UltrascalePlus_VU9P
7+
abstract type UltrascalePlus_HBM_FPGA <: FPGA end; export UltrascalePlus_HBM_FPGA
8+
abstract type UltrascalePlus_VU9P <: FPGA end; export UltrascalePlus_VU9P
99

1010
#TODO

0 commit comments

Comments
 (0)