Skip to content

Commit 088ed35

Browse files
committed
[GR-69333] Run {micro|meso}-small benchmarks on CPython.
PullRequest: graalpython/3985
2 parents 38995b3 + a298568 commit 088ed35

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

ci.jsonnet

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,7 @@
347347
"vm_name:graalpython_enterprise_interpreter" : {"linux:amd64:jdk-latest" : weekly + t("02:00:00")},
348348
"vm_name:graalpython_core_interpreter_multi" : {"linux:amd64:jdk-latest" : on_demand + t("02:00:00")},
349349
"vm_name:graalpython_core_native_interpreter_multi" : {"linux:amd64:jdk-latest" : on_demand + t("02:00:00")},
350+
"vm_name:cpython" : {"linux:amd64:jdk-latest" : weekly + t("02:00:00")},
350351
}),
351352
for bench in ["micro_small", "meso_small"]
352353
} + {

graalpython/com.oracle.graal.python/src/com/oracle/graal/python/compiler/bytecode_dsl/RootNodeCompiler.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4112,14 +4112,6 @@ private void doVisitPattern(PatternTy.MatchAs node, PatternContext pc) {
41124112
b.endBlock();
41134113
}
41144114

4115-
private void emitPatternNotImplemented(String kind) {
4116-
b.beginBlock();
4117-
emitNotImplemented(kind + " pattern matching", b);
4118-
// we need a value producing operation
4119-
b.emitLoadConstant(false);
4120-
b.endBlock();
4121-
}
4122-
41234115
/**
41244116
* Saves subject of the pattern context into BytecodeLocal variable, to be restored
41254117
* eventually.

0 commit comments

Comments
 (0)