Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump dependencies in perfmetrics/scripts #1747

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

gargnitingoogle
Copy link
Collaborator

@gargnitingoogle gargnitingoogle commented Feb 27, 2024

Description

Includes the following

Link to the issue in case of a bug fix.

NA

Testing details

  1. Manual - NA
  2. Unit tests - NA
  3. Integration tests - NA

@gargnitingoogle
Copy link
Collaborator Author

The change in gcsfuse/perfmetrics/scripts/load_tests/python/requirements.in worked out well locally.

$ pip install -r requirements.txt
$ pip install -r requirements.in

$ python3 load_test.py --tasks-python-file-path cpu_task.py --num-processes 2 --num-threads 2 --output-dir  output --run-time 10

2024-03-04 11:47:00.419778: I tensorflow/tsl/cuda/cudart_stub.cc:28] Could not find cuda drivers on your machine, GPU will not be used.                                                                                                                                                   
2024-03-04 11:47:00.474526: I tensorflow/tsl/cuda/cudart_stub.cc:28] Could not find cuda drivers on your machine, GPU will not be used.                                                                                                                                                   
2024-03-04 11:47:00.475146: I tensorflow/core/platform/cpu_feature_guard.cc:182] This TensorFlow binary is optimized to use available CPU instructions in performance-critical operations.
To enable the following instructions: AVX2 FMA, in other operations, rebuild TensorFlow with the appropriate compiler flags.                                                                                                                                                              
2024-03-04 11:47:01.239924: W tensorflow/compiler/tf2tensorrt/utils/py_utils.cc:38] TF-TRT Warning: Could not find TensorRT                                                                                                                                                               
INFO:root:Initialising Load Generator...                                                                                                                                                                                                                                                  
INFO:root:Starting load generation...                                                                                                                                                                                                                                                     
INFO:root:                                                                                                                                                                                                                                                                                
Sleeping for: 5 seconds                                                                                                                                                                                                                                                                   
INFO:root:                                                                                                                                                                                                                                                                                
Running pre load test task for: CPUTask                                                                                                                                                                                                                                                   
INFO:root:Generating load for: CPUTask                                                                                                                                                                                                                                                    
INFO:root:Load test completed 25.0% for task: CPUTask                                                                                                                                                                                                                                     
INFO:root:Load test completed 50.0% for task: CPUTask                                                                                                                                                                                                                                     
INFO:root:Load test completed 75.0% for task: CPUTask                                                                                                                                                                                                                                     
INFO:root:Load test completed 100% for task: CPUTask                                                                                                                                                                                                                                      
INFO:root:Running post load test task for: CPUTask                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                          
Time:                                                                                                                                                                                                                                                                                     
        Start time (epoch):  1709552827.1694436                                                                                                                                                                                                                                           
        End time (epoch):  1709552837.2094488                                                                                                                                                                                                                                             
        Actual run time (in seconds):  10.040005207061768                                                                                                                                                                                                                                 
                                                                                                                                                                                                                                                                                          
Tasks:                                                                                                                                                                                                                                                                                    
        Tasks count:  372                                                                                                                                                                                                                                                                 
        Tasks per sec:  37.05177361246277                                                                                                                                                                                                                                                 
                                                                                                                                                                                                                                                                                          
Tasks latencies: 
         Pre : 
                Min (in seconds):  2.384185791015625e-07
                Mean (in seconds):  3.981590270996094e-05
                25th Percentile (in seconds):  1.6689300537109375e-06
                50th Percentile (in seconds):  2.384185791015625e-06
                90th Percentile (in seconds):  3.0994415283203125e-06
                95th Percentile (in seconds):  3.337860107421875e-06
                99th Percentile (in seconds):  6.499290466308592e-06
                Max (in seconds):  3.981590270996094e-05
         Task : 
                Min (in seconds):  0.05138397216796875
                Mean (in seconds):  0.14765334129333496
                25th Percentile (in seconds):  0.06215626001358032
                50th Percentile (in seconds):  0.07190513610839844
                90th Percentile (in seconds):  0.10111186504364016
                95th Percentile (in seconds):  0.11171085834503174
                99th Percentile (in seconds):  0.1333767080307007
                Max (in seconds):  0.14765334129333496
         Post : 
                Min (in seconds):  4.76837158203125e-07
                Mean (in seconds):  3.743171691894531e-05
                25th Percentile (in seconds):  1.8477439880371094e-06
                50th Percentile (in seconds):  2.384185791015625e-06
                90th Percentile (in seconds):  3.0994415283203125e-06
                95th Percentile (in seconds):  3.337860107421875e-06
                99th Percentile (in seconds):  4.6753883361816845e-06
                Max (in seconds):  3.743171691894531e-05
INFO:root:Load test completed for task: CPUTask

dependabot bot added 2 commits March 7, 2024 14:42
Bumps [grpcio](https://github.com/grpc/grpc) from 1.54.0 to 1.54.3.
- [Release notes](https://github.com/grpc/grpc/releases)
- [Changelog](https://github.com/grpc/grpc/blob/master/doc/grpc_release_schedule.md)
- [Commits](grpc/grpc@v1.54.0...v1.54.3)

---
updated-dependencies:
- dependency-name: grpcio
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Bumps [grpcio](https://github.com/grpc/grpc) from 1.54.0 to 1.54.3.
- [Release notes](https://github.com/grpc/grpc/releases)
- [Changelog](https://github.com/grpc/grpc/blob/master/doc/grpc_release_schedule.md)
- [Commits](grpc/grpc@v1.54.0...v1.54.3)

---
updated-dependencies:
- dependency-name: grpcio
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
@gargnitingoogle gargnitingoogle force-pushed the gargnitin/bump-perfmetrics-dependencies/v1 branch from 71aba2a to 9ef01a6 Compare March 7, 2024 14:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants