Skip to content

Commit

Permalink
Reduce AutoJIT thresholds in tests for better coverage
Browse files Browse the repository at this point in the history
Summary: Dropping these down ends up exposing more test errors.

Reviewed By: swtaarrs

Differential Revision: D50122630

fbshipit-source-id: 95f024c66d09e0ac07686614e18d069b46f91844
  • Loading branch information
Alex Malyshev authored and facebook-github-bot committed Oct 10, 2023
1 parent caf9713 commit 1652bf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile.pre.in
Original file line number Diff line number Diff line change
Expand Up @@ -1801,11 +1801,11 @@ define RUN_TESTCINDERJIT
endef

define RUN_TESTCINDERJITAUTO
$(ASAN_TEST_ENV)$(TESTPYTHON) -X usepycompiler -X jit-auto=1000 -X jit-enable-inline-cache-stats-collection $(1) $(JIT_TEST_RUNNER) $(TESTOPTS)
$(ASAN_TEST_ENV)$(TESTPYTHON) -X usepycompiler -X jit-auto=200 -X jit-enable-inline-cache-stats-collection $(1) $(JIT_TEST_RUNNER) $(TESTOPTS)
endef

define RUN_TESTCINDERJIT_AUTOPROFILE
$(ASAN_TEST_ENV)$(TESTPYTHON) -X usepycompiler -X jit-auto=1000 -X jit-auto-profile=10 -X jit-enable-inline-cache-stats-collection $(1) $(JIT_TEST_RUNNER) $(TESTOPTS)
$(ASAN_TEST_ENV)$(TESTPYTHON) -X usepycompiler -X jit-auto=200 -X jit-auto-profile=2 -X jit-enable-inline-cache-stats-collection $(1) $(JIT_TEST_RUNNER) $(TESTOPTS)
endef

testcinder_jit: @DEF_MAKE_RULE@ platform
Expand Down

0 comments on commit 1652bf6

Please sign in to comment.