Giter VIP home page Giter VIP logo

Comments (3)

epwalsh avatar epwalsh commented on July 25, 2024 2

So, the reason configuration options need to be static is because the batched_fn! macro expands to define a BatchedFn instance and worker thread statically. These things need to be defined statically because batched_fn! is meant to be dropped into a function/method, and if they weren't declared static then they would be recreated every time the function/method is called.

So there is probably no way we could allow non-static expressions to be passed into batched_fn!. However, it would be possible to change the value of certain configuration options (like max_batch_size) on-the-fly. We'd just need to provide a Channel to communicate changes from the main/calling thread to the worker thread.

from batched-fn.

epwalsh avatar epwalsh commented on July 25, 2024

Ah, I see what the issue is. Thanks for bringing that up. #21 should solve this, but requires a small breaking change:

Instead of:

let handler = batched_fn! { ... };
return handler(input).await;

You would have to change the last line to:

return handler.evaluate_in_batch(input).await;

from batched-fn.

epwalsh avatar epwalsh commented on July 25, 2024

Ugh, actually that won't work. There might be another way around this, but I'll have to put some more thought into it. I'll get back to you.

from batched-fn.

Related Issues (7)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.