Skip to content

Commit

Permalink
[benchmarks/bytecode] Comparison of cell variables in CPython vs. OPy.
Browse files Browse the repository at this point in the history
OPy outputs more for some reason.
  • Loading branch information
Andy Chu committed Oct 14, 2018
1 parent 0ebce48 commit bd59344
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions benchmarks/bytecode.R
Expand Up @@ -296,6 +296,14 @@ Compare = function(cpython_ctx, opy_ctx) {
) -> f1

ShowFrame('Overview', f1)

Banner('Cell Variables')

cpython_ctx$names %>% filter(kind == 'cell') -> f2
opy_ctx$names %>% filter(kind == 'cell') -> f3

ShowFrame('CPython', f2)
ShowFrame('OPy', f3)
}

main = function(argv) {
Expand Down

0 comments on commit bd59344

Please sign in to comment.