From 491d4a916eb56d1c159244b20779eb2e56e99477 Mon Sep 17 00:00:00 2001 From: Felix Wechsler Date: Mon, 21 Apr 2025 16:55:05 +0200 Subject: [PATCH] Fix some function names --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4e404cb..38e27b2 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ > Collection of utilities for testing forward- and reverse-mode AD sensitivities. `ChainRulesTestUtils.jl` is designed to help you test `ChainRulesCore.frule` and `ChainRulesCore.rrule` methods. -The main entry points are `ChainRulesTestUtils.frule_test`, `ChainRulesTestUtils.rrule_test`, and `ChainRulesTestUtils.test_scalar` +The main entry points are `ChainRulesTestUtils.test_frule`, `ChainRulesTestUtils.test_rrule`, and `ChainRulesTestUtils.test_scalar` Currently this is done via testing the rules against numerical differentiation (using [`FiniteDifferences.jl`](https://github.com/JuliaDiff/FiniteDifferences.jl)). `ChainRulesTestUtils.jl` is separate from [`ChainRulesCore.jl`](https://github.com/JuliaDiff/ChainRulesCore.jl) so that it can be a test-only dependency, allowing it to have potentially heavy dependencies, while keeping `ChainRulesCore.jl` as light-weight as possible.