Jose Celano

Results 382 comments of Jose Celano

[PR](https://github.com/greatest-ape/aquatic/pull/208) merged.

The main function: ![image](https://github.com/torrust/torrust-tracker/assets/58816/ccb15611-bc01-4f20-b21d-d4cfe521b856)

I've added a new binary for profiling. What I'm doing to profile is: - Run the tracker for 60 seconds - At the same time run the Aquatic UDP load...

### Main function ![image](https://github.com/torrust/torrust-tracker/assets/58816/96e4a6aa-4e4b-4963-a53b-54bc8cfde2d7) ![image](https://github.com/torrust/torrust-tracker/assets/58816/187f1d1f-4f93-48fd-aa70-207a272d0cb0) ### Process valid request ![image](https://github.com/torrust/torrust-tracker/assets/58816/1ef5f1d0-8271-426a-8974-5791dbff008a) ### Some potential conclusions (not sure) From the graphs above it seems: - 17.9% of the effective time processing a...

I accidentally changed the number of active requests from 50 to 1000 while I was doing some tests with different parameters: ```rust #[derive(Default)] struct ActiveRequests { rb: StaticRb, // the...

I'm also using [flamegraph](https://crates.io/crates/flamegraph). I think I still have to adjust some OD parameters to get a better graph: ![flamegraph](https://github.com/torrust/torrust-tracker/assets/58816/51317303-035c-4f5a-a652-63f25f3851e6)

Zooming in on the part tho handle the announce request: ![image](https://github.com/torrust/torrust-tracker/assets/58816/f7075b2a-3713-4ab2-9a05-f49ec3f05a71)

Hi, Wow!, that was a very fast reply. Thanks. I'm trying to build a PHP complex library with arbitrary precision based on this extension. I was trying to replace `atan`...

Hi, more feedback. I was able to increase the precision using `n=10000000` and it takes a couple of minutes to execute it. The final result is: ``` -'-0.78539816339745' +'-0.7853981883974458096158484647' ```...

This paper explains al alternative way to calculate it: https://digitalcommons.lmu.edu/cgi/viewcontent.cgi?article=1101&context=math_fac And some python examples: https://stackoverflow.com/questions/44249104/calculating-inverse-trigonometric-functions-with-formulas But no idea what is the maximum precision possible with those methods.