Skip to content

Commit

Permalink
correct _ on CUDA
Browse files Browse the repository at this point in the history
  • Loading branch information
llnns committed May 20, 2023
1 parent af112f2 commit 77a3a06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/phase1_parse_csv.R
Expand Up @@ -124,7 +124,7 @@ read_worker_csv <- function(where = ".",
tibble() %>%
mutate(Resource = as.factor(.data$Resource)) %>%
mutate(Node = as.factor(.data$Node)) %>%
mutate(ResourceType = as.factor(gsub("[[:digit:]]+", "", .data$Resource))) %>%
mutate(ResourceType = as.factor(gsub("[_[:digit:]]+", "", .data$Resource))) %>%
mutate(Resource = as.factor(.data$Resource))
} else {
starvz_log("This is a single-node trace...")
Expand Down

0 comments on commit 77a3a06

Please sign in to comment.