Skip to content

Commit

Permalink
feat: add Quadro RTX 6000
Browse files Browse the repository at this point in the history
  • Loading branch information
keyvank committed Jun 16, 2020
1 parent fae5e9f commit c529e1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ Currently only Nvidia hardware is supported, see [issue](https://github.com/fina

```
("Device_Name", Cores),
("Quadro RTX 6000", 4608),
("TITAN RTX", 4608),
("Tesla V100", 5120),
("Tesla P100", 3584),
Expand Down
2 changes: 2 additions & 0 deletions src/gpu/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ pub fn get_devices(platform_name: &str) -> GPUResult<Vec<Device>> {
lazy_static::lazy_static! {
static ref CORE_COUNTS: HashMap<String, usize> = {
let mut core_counts : HashMap<String, usize> = vec![
("Quadro RTX 6000".to_string(), 4608),

("TITAN RTX".to_string(), 4608),

("Tesla V100".to_string(), 5120),
Expand Down

0 comments on commit c529e1f

Please sign in to comment.