Description:
- 20230329-174512-pr
Torch version: 2.1.0a0+gitd6e220c
Torch config: PyTorch built with:
- GCC 9.4
- C++ Version: 201703
- OpenMP 201511 (a.k.a. OpenMP 4.5)
- CPU capability usage: AVX2
- Build settings: BUILD_TYPE=Release, CXX_COMPILER=/usr/bin/c++, CXX_FLAGS= -D_GLIBCXX_USE_CXX11_ABI=1 -Wno-deprecated -fvisibility-inlines-hidden -DUSE_PTHREADPOOL -DNDEBUG -DUSE_KINETO -DLIBKINETO_NOCUPTI -DLIBKINETO_NOROCTRACER -DUSE_PYTORCH_QNNPACK -DSYMBOLICATE_MOBILE_DEBUG_HANDLE -O2 -fPIC -Wall -Wextra -Werror=return-type -Werror=non-virtual-dtor -Werror=bool-operation -Wnarrowing -Wno-missing-field-initializers -Wno-type-limits -Wno-array-bounds -Wno-unknown-pragmas -Wno-unused-parameter -Wno-unused-function -Wno-unused-result -Wno-strict-overflow -Wno-strict-aliasing -Wno-error=deprecated-declarations -Wno-stringop-overflow -Wno-psabi -Wno-error=pedantic -Wno-error=old-style-cast -fdiagnostics-color=always -faligned-new -Wno-unused-but-set-variable -Wno-maybe-uninitialized -fno-math-errno -f
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import torch | |
import torch.nn as nn | |
import torchvision | |
import torchvision.models as models | |
from functorch.version import __version__ as ft_version | |
from functorch import make_functional_with_buffers, grad, vmap | |
tested_models = [] | |
for model_name in models.__dict__: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import torch | |
import torch.nn as nn | |
import torchvision | |
import torchvision.models.detection as tv_models | |
import functorch | |
from functorch import combine_state_for_ensemble, vmap | |
tested_models = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Torch: 1.12.0.dev20220215+cu111 | |
transformers: 4.16.2 | |
Functorch: 0.2.0a0+c9d03e8 | |
-- Check bert-base-cased model | |
-- Check gpt2 model | |
-- Check facebook/bart-large model |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Torch: 1.12.0.dev20220215+cu111 | |
torchvision: 0.13.0.dev20220215+cu111 | |
Functorch: 0.2.0a0+c9d03e8 | |
-- Check fasterrcnn_resnet50_fpn model | |
-- Check fasterrcnn_mobilenet_v3_large_320_fpn model | |
-- Check fasterrcnn_mobilenet_v3_large_fpn model | |
-- Check maskrcnn_resnet50_fpn model | |
-- Check keypointrcnn_resnet50_fpn model |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pathlib import Path | |
import PIL | |
from PIL import Image | |
import torch | |
import torch.nn as nn | |
import torch.utils.benchmark as benchmark | |
import torchvision | |
import torchvision.transforms as T |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Torch config: PyTorch built with: | |
- GCC 7.3 | |
- C++ Version: 201402 | |
- Intel(R) oneAPI Math Kernel Library Version 2021.3-Product Build 20210617 for Intel(R) 64 architecture applications | |
- Intel(R) MKL-DNN v2.2.3 (Git Hash 7336ca9f055cf1bfa13efb658fe15dc9b41f0740) | |
- OpenMP 201511 (a.k.a. OpenMP 4.5) | |
- LAPACK is enabled (usually provided by MKL) | |
- NNPACK is enabled | |
- CPU capability usage: AVX2 | |
- CUDA Runtime 11.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import PIL | |
from PIL import Image | |
import torch | |
import torch.utils.benchmark as benchmark | |
# Original image size: 906, 438 | |
sizes = [ | |
(320, 196), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pytorch: 1.11.0a0+git12d4b58 | |
skimage: 0.19.0.dev0 | |
opencv: 4.5.4-dev | |
scipy: 1.7.2 | |
Pillow: 8.4.0 | |
TensorFlow: 2.7.0 | |
------ Check resize op ------ |
NewerOlder