python_code
stringlengths
0
679k
repo_name
stringlengths
9
41
file_path
stringlengths
6
149
# std import os from re import S import sys from typing import Dict, List, Tuple # Add syspath for custom library if __name__ == "__main__": filepath = os.path.dirname(os.path.abspath(__file__)) project_root = os.path.join(filepath, os.pardir) sys.path.append(project_root) # numpy import numpy as np # t...
TensorRT-master
demo/HuggingFace/T5/trt.py
# std import os import sys from typing import List # huggingface from transformers import ( T5ForConditionalGeneration, T5Tokenizer, T5Config, ) # Add syspath for custom library if __name__ == "__main__": filepath = os.path.dirname(os.path.abspath(__file__)) project_root = os.path.join(filepath, ...
TensorRT-master
demo/HuggingFace/T5/frameworks.py
""" Utils specific to T5 network. """ # torch import torch # numpy import numpy as np # numpy from transformers.generation_stopping_criteria import ( MaxLengthCriteria, StoppingCriteriaList, ) # TRT-HuggingFace from NNDF.general_utils import measure_python_inference_code from NNDF.torch_utils import use_cud...
TensorRT-master
demo/HuggingFace/T5/measurements.py
"""Utilities related to Polygraphy""" # std from typing import List # polygraphy from polygraphy.backend.trt import engine_from_bytes, TrtRunner from polygraphy.backend.onnxrt import OnnxrtRunner, SessionFromOnnx, OnnxrtRunner from polygraphy.backend.common import bytes_from_path from polygraphy.logger import G_LOGGE...
TensorRT-master
demo/HuggingFace/NNDF/tensorrt_utils.py
"""Common utils used by demo folder.""" # std import os import shutil import timeit from shutil import rmtree from typing import Callable, Union, List from collections import defaultdict from statistics import mean, median from glob import glob # NNDF from NNDF.networks import NNConfig, NetworkResult, NetworkMetadat...
TensorRT-master
demo/HuggingFace/NNDF/general_utils.py
""" File for containing model file abstraction. Useful for generating models. """ # std import os from abc import ABCMeta, abstractmethod from typing import Union from shutil import copytree, rmtree # polygraphy from polygraphy.backend.trt import ( network_from_onnx_path, engine_from_network, save_engine,...
TensorRT-master
demo/HuggingFace/NNDF/models.py
""" Interface classes required for each registered network script. """ # std import argparse from abc import ABCMeta, abstractmethod from typing import List, Tuple # NNDF from NNDF.networks import ( NetworkResult, NetworkMetadata, NetworkCheckpointResult, NNConfig, NetworkModel, TimingProfile...
TensorRT-master
demo/HuggingFace/NNDF/interface.py
import logging G_LOGGER = logging.getLogger("OSS") G_LOGGER.DEBUG = logging.DEBUG G_LOGGER.INFO = logging.INFO G_LOGGER.WARNING = logging.WARNING G_LOGGER.ERROR = logging.ERROR formatter = logging.Formatter("[%(asctime)s][%(name)s][%(levelname)s] %(message)s") stream = logging.StreamHandler() stream.setFormatter(form...
TensorRT-master
demo/HuggingFace/NNDF/logger.py
""" Helper file for generating common checkpoints. """ # std from typing import List # TRT-HuggingFace from NNDF.networks import NetworkMetadata, NetworkResult # externals import toml class NNTomlCheckpoint: """Loads a toml checkpoint file for comparing labels and inputs.""" def __init__(self, fpath: str,...
TensorRT-master
demo/HuggingFace/NNDF/checkpoints.py
""" Helpers for abstracting hik concepts. Different from 'models.py' which dealsgh-level neural networ with IO abstraction. This file deals with high level network configurations. """ # std import string from typing import Dict, Union, Tuple from collections import namedtuple, OrderedDict # externals # None. Should ...
TensorRT-master
demo/HuggingFace/NNDF/networks.py
"""Torch utils used by demo folder.""" # std import inspect from typing import Callable # pytorch import torch # Function Decorators # def use_cuda(func: Callable): """ Tries to send all parameters of a given function to cuda device if user supports it. Object must have a "to(device: str)" and maps to ta...
TensorRT-master
demo/HuggingFace/NNDF/torch_utils.py
# std import argparse from collections import namedtuple, OrderedDict from itertools import product from typing import Dict # TRT-HuggingFace from NNDF.networks import Precision, NetworkMetadata, NNConfig, Dims from NNDF.interface import MetadataArgparseInteropMixin # Limitation of namedtuples. You must declare name...
TensorRT-master
demo/HuggingFace/GPT2/GPT2ModelConfig.py
""" Contains logic that captures GPT2 HuggingFace models into ONNX models and TRT engines. """ # std from itertools import tee # tensorrt import tensorrt as trt # polygraphy from polygraphy.backend.trt import Profile # torch import torch from torch.nn import Module # # huggingface from transformers.generation_utils...
TensorRT-master
demo/HuggingFace/GPT2/export.py
# std import os import sys from typing import Dict, List, Tuple # Add syspath for custom library if __name__ == "__main__": filepath = os.path.dirname(os.path.abspath(__file__)) project_root = os.path.join(filepath, os.pardir) sys.path.append(project_root) # numpy import numpy as np # torch import torch...
TensorRT-master
demo/HuggingFace/GPT2/trt.py
# std import os import sys import argparse from typing import List # huggingface from transformers import ( GPT2LMHeadModel, GPT2Tokenizer, GPT2Config, ) # Add syspath for custom library if __name__ == "__main__": filepath = os.path.dirname(os.path.abspath(__file__)) project_root = os.path.join(f...
TensorRT-master
demo/HuggingFace/GPT2/frameworks.py
""" Utils specific to GPT2 network. """ # torch import torch # TRT-HuggingFace from NNDF.general_utils import measure_python_inference_code from NNDF.torch_utils import use_cuda @use_cuda def gpt2_inference(gpt2, input_ids, timing_profile, use_cuda=True): gpt2_stmt = lambda: gpt2(input_ids=input_ids) gpt2_e...
TensorRT-master
demo/HuggingFace/GPT2/measurements.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/loss_functions.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/models.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/test_infer.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/inference_perf.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/data_functions.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/preprocess_audio2mel.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/train.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/inference.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/main.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/multiproc.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/waveglow/data_function.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/waveglow/model.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/waveglow/denoiser.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/waveglow/loss_function.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/waveglow/arg_parser.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/common/audio_processing.py
""" BSD 3-Clause License Copyright (c) 2017, Prem Seetharaman All rights reserved. * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of...
TensorRT-master
demo/Tacotron2/common/stft.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/common/utils.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/common/layers.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/tensorrt/test_infer_trt.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/tensorrt/trt_utils.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/tensorrt/inference_trt.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/tensorrt/convert_waveglow2onnx.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/tensorrt/generate_decoder.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/tensorrt/convert_tacotron22onnx.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/tensorrt/convert_onnx2trt.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/tacotron2/data_function.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/tacotron2/model.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/tacotron2/loss_function.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/tacotron2/arg_parser.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/tacotron2/text/cmudict.py
""" from https://github.com/keithito/tacotron """ import re from tacotron2.text import cleaners from tacotron2.text.symbols import symbols # Mappings from symbol to numeric ID and vice versa: _symbol_to_id = {s: i for i, s in enumerate(symbols)} _id_to_symbol = {i: s for i, s in enumerate(symbols)} # Regular express...
TensorRT-master
demo/Tacotron2/tacotron2/text/__init__.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/tacotron2/text/numbers.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/tacotron2/text/symbols.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
demo/Tacotron2/tacotron2/text/cleaners.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/onnx-graphsurgeon/setup.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/onnx-graphsurgeon/tests/onnx_models.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/onnx-graphsurgeon/tests/test_ir.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/onnx-graphsurgeon/tests/test_util.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/onnx-graphsurgeon/tests/test_exporters.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/onnx-graphsurgeon/tests/test_importers.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/onnx-graphsurgeon/tests/test_api.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/onnx-graphsurgeon/tests/test_examples.py
TensorRT-master
tools/onnx-graphsurgeon/tests/ir/__init__.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/onnx-graphsurgeon/tests/ir/test_graph.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/onnx-graphsurgeon/docs/conf.py
#!/usr/bin/env python3 # # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # ...
TensorRT-master
tools/onnx-graphsurgeon/examples/01_creating_a_model/example.py
#!/usr/bin/env python3 # # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # ...
TensorRT-master
tools/onnx-graphsurgeon/examples/07_creating_a_model_with_the_layer_api/generate.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/onnx-graphsurgeon/examples/08_replacing_a_subgraph/generate.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/onnx-graphsurgeon/examples/08_replacing_a_subgraph/replace.py
#!/usr/bin/env python3 # # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # ...
TensorRT-master
tools/onnx-graphsurgeon/examples/04_modifying_a_model/generate.py
#!/usr/bin/env python3 # # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # ...
TensorRT-master
tools/onnx-graphsurgeon/examples/04_modifying_a_model/modify.py
#!/usr/bin/env python3 # # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # ...
TensorRT-master
tools/onnx-graphsurgeon/examples/06_removing_nodes/generate.py
#!/usr/bin/env python3 # # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # ...
TensorRT-master
tools/onnx-graphsurgeon/examples/06_removing_nodes/remove.py
#!/usr/bin/env python3 # # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # ...
TensorRT-master
tools/onnx-graphsurgeon/examples/09_shape_operations_with_the_layer_api/generate.py
#!/usr/bin/env python3 # # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # ...
TensorRT-master
tools/onnx-graphsurgeon/examples/05_folding_constants/generate.py
#!/usr/bin/env python3 # # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # ...
TensorRT-master
tools/onnx-graphsurgeon/examples/05_folding_constants/fold.py
#!/usr/bin/env python3 # # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # ...
TensorRT-master
tools/onnx-graphsurgeon/examples/03_isolating_a_subgraph/generate.py
#!/usr/bin/env python3 # # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # ...
TensorRT-master
tools/onnx-graphsurgeon/examples/03_isolating_a_subgraph/isolate.py
#!/usr/bin/env python3 # # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # ...
TensorRT-master
tools/onnx-graphsurgeon/examples/02_creating_a_model_with_initializer/example.py
from onnx_graphsurgeon.exporters.onnx_exporter import export_onnx from onnx_graphsurgeon.importers.onnx_importer import import_onnx from onnx_graphsurgeon.ir.graph import Graph from onnx_graphsurgeon.ir.node import Node from onnx_graphsurgeon.ir.tensor import Constant, Tensor, Variable from onnx_graphsurgeon.util.excep...
TensorRT-master
tools/onnx-graphsurgeon/onnx_graphsurgeon/__init__.py
from onnx_graphsurgeon.logger.logger import G_LOGGER
TensorRT-master
tools/onnx-graphsurgeon/onnx_graphsurgeon/logger/__init__.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/onnx-graphsurgeon/onnx_graphsurgeon/logger/logger.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/onnx-graphsurgeon/onnx_graphsurgeon/util/misc.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/onnx-graphsurgeon/onnx_graphsurgeon/util/exception.py
TensorRT-master
tools/onnx-graphsurgeon/onnx_graphsurgeon/util/__init__.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/onnx-graphsurgeon/onnx_graphsurgeon/importers/base_importer.py
from onnx_graphsurgeon.importers.base_importer import BaseImporter
TensorRT-master
tools/onnx-graphsurgeon/onnx_graphsurgeon/importers/__init__.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/onnx-graphsurgeon/onnx_graphsurgeon/importers/onnx_importer.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/onnx-graphsurgeon/onnx_graphsurgeon/ir/graph.py
TensorRT-master
tools/onnx-graphsurgeon/onnx_graphsurgeon/ir/__init__.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/onnx-graphsurgeon/onnx_graphsurgeon/ir/tensor.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/onnx-graphsurgeon/onnx_graphsurgeon/ir/node.py
from onnx_graphsurgeon.exporters.base_exporter import BaseExporter
TensorRT-master
tools/onnx-graphsurgeon/onnx_graphsurgeon/exporters/__init__.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/onnx-graphsurgeon/onnx_graphsurgeon/exporters/base_exporter.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/onnx-graphsurgeon/onnx_graphsurgeon/exporters/onnx_exporter.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/pytorch-quantization/setup.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/pytorch-quantization/tests/quant_pooling_test.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/pytorch-quantization/tests/classification_flow_test.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/pytorch-quantization/tests/conftest.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/pytorch-quantization/tests/model_test.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/pytorch-quantization/tests/license_test.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/pytorch-quantization/tests/quant_rnn_test.py
# # Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by appl...
TensorRT-master
tools/pytorch-quantization/tests/functional_test.py