├── .ci ├── bundle_instrument_expected_output.txt ├── bundle_tflite_custom_expected_output.txt ├── bundle_with_extra_objects_expected_output.txt ├── bundle_with_multiple_entries_expected_output.txt ├── lenet_mnist_expected_output.txt └── resnet50_expected_output.txt ├── .circleci ├── lsan_suppressions.txt └── run_coverage.sh ├── .clang-format ├── .clang-tidy ├── .github ├── build.sh ├── stale.yml ├── test.sh └── workflows │ └── glow-build.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS ├── LICENSE ├── PULL_REQUEST.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── cmake └── modules │ ├── CMakeGraphVizOptions.cmake │ ├── CoverageSupport.cmake │ ├── DoxygenSupport.cmake │ ├── FindBackends.cmake │ ├── Gflags.cmake │ ├── Glog.cmake │ ├── GlowAddLibjit.cmake │ ├── GlowDefaults.cmake │ ├── GlowExternalBackends.cmake │ ├── GlowSerialize.cmake │ ├── GlowTestSupport.cmake │ └── SanitizerSupport.cmake ├── docs ├── 3LevelIR.png ├── AOT.md ├── Backends.md ├── Block.md ├── Building.md ├── ClassGen.md ├── CodingStandards.md ├── DAG_example.png ├── Doxyfile.in ├── ExternalBackend.md ├── GlowWindowsBuildx86.md ├── GraphOptimizationPipeline.md ├── HeterogeneousPartition.png ├── IR.md ├── InferenceEngines.md ├── JIT.md ├── LLVMDebugInstrumentation.md ├── Lexicon.md ├── ModelLoader.md ├── ModelTuner.md ├── Network-Debugger.md ├── NewBackendSpecificNode.md ├── NewOperators.md ├── NodeSplitting.md ├── NodeSplitting.png ├── Onnxifi.md ├── Optimizations.md ├── Partitioner.md ├── Quantization.md ├── Runtime.md ├── Serialization.md ├── TensorLayout.md ├── Tensors.md ├── Testing.md ├── Tracing.md ├── XModelRunner.md ├── backend_dm_api.svg ├── chrome-tracing.png ├── glow_runtime.svg ├── logo.png ├── logo.svg ├── mnist.svg ├── module.png ├── network_init.svg ├── network_run.svg ├── nodes.png ├── partition1.png ├── partition2.png ├── partition3.png ├── partners │ ├── bitmain.png │ ├── cadence.png │ ├── ceva.png │ ├── esperanto.png │ ├── habana.png │ ├── intel.png │ ├── marvell.png │ ├── nxp.png │ ├── st.png │ └── synopsys.png ├── pred.png ├── pytorch.md ├── resnet50_quantized_subgraph.png ├── rowwise_quantized_fc.png └── tracing-example.png ├── examples ├── CMakeLists.txt ├── bundles │ ├── CMakeLists.txt │ ├── bundle_instrument │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── bundle_tflite_custom │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ └── tflite_custom.tflite │ ├── bundle_with_extra_objects │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── main.cpp │ │ └── test.o │ ├── bundle_with_multiple_entries │ │ ├── BundleSaver.cpp │ │ ├── CMakeLists.txt │ │ └── main.cpp │ ├── lenet_mnist │ │ ├── CMakeLists.txt │ │ └── main.cpp │ └── resnet50 │ │ ├── CMakeLists.txt │ │ └── main.cpp ├── char-rnn.cpp ├── cifar10.cpp ├── fr2en.cpp ├── lenet-loader.cpp ├── mnist.cpp ├── ptb.cpp ├── resnet-runtime.cpp ├── resnet-verify.cpp ├── tracing-compare.cpp └── training │ ├── CMakeLists.txt │ └── resnet50 │ ├── CMakeLists.txt │ └── main.cpp ├── externalbackends └── README.txt ├── include └── glow │ ├── Backend │ ├── Backend.h │ ├── BackendUtils.h │ ├── BlockStreamBase.h │ └── CompiledFunction.h │ ├── Backends │ ├── BackendOptions.h │ ├── DeviceManager.h │ ├── DummyDeviceManager.h │ ├── Interpreter │ │ ├── Interpreter.h │ │ ├── InterpreterDeviceManager.h │ │ └── InterpreterFunction.h │ ├── LayoutConverter.h │ └── QueueBackedDeviceManager.h │ ├── Base │ ├── DeviceTensorTransferManager.h │ ├── DimType.h │ ├── IO.h │ ├── Image.h │ ├── SliceRange.h │ ├── TaggedList.h │ ├── Tensor.h │ ├── TensorSerialization.h │ ├── Train.h │ ├── Traits.h │ └── Type.h │ ├── CodeGen │ └── MemoryAllocator.h │ ├── Converter │ ├── Float16Converter.h │ ├── FunctionConverter.h │ ├── FusedRowwiseConverter.h │ └── TypeAToTypeBFunctionConverter.h │ ├── ExecutionContext │ ├── ExecutionContext.h │ └── TraceEvents.h │ ├── ExecutionEngine │ └── ExecutionEngine.h │ ├── Exporter │ ├── CommonOperatorWriter.h │ ├── ONNXModelWriter.h │ └── ProtobufWriter.h │ ├── Flags │ └── Flags.h │ ├── Graph │ ├── FXIRUtils.h │ ├── FXIRWrapper.h │ ├── Grad.h │ ├── Graph.h │ ├── Hook.h │ ├── Log.h │ ├── Node.h │ ├── NodeValue.h │ ├── Nodes.h │ ├── PlaceholderBindings.h │ ├── TensorLayout.h │ ├── UseDef.h │ ├── Utils.h │ └── VerifierHelper.h │ ├── IR │ ├── IR.h │ ├── IRBuilder.h │ ├── IRGen.h │ ├── IRUtils.h │ ├── Instrs.h │ └── LLVMAPIMacros.h │ ├── Importer │ ├── Caffe2ModelLoader.h │ ├── CommonOperatorLoader.h │ ├── ONNXIFIModelLoader.h │ ├── ONNXModelLoader.h │ ├── ProtobufLoader.h │ └── TFLiteModelLoader.h │ ├── LLVMIRCodeGen │ ├── AllocationsInfo.h │ ├── BundleSaver.h │ ├── CommandLine.h │ ├── GlowJIT.h │ ├── JITFilePrinter.h │ ├── LLVMBackend.h │ ├── LLVMCompiledFunction.h │ └── LLVMIRGen.h │ ├── Optimizer │ ├── GraphOptimizer │ │ ├── CompilationContext.h │ │ ├── FunctionPass.h │ │ ├── FunctionPassManager.h │ │ ├── FunctionPassPipeline.h │ │ ├── FunctionPasses.def │ │ ├── FunctionPasses.h │ │ ├── GraphOptimizer.h │ │ ├── NodeSplitting.h │ │ └── TrainingPreparation.h │ ├── IROptimizer │ │ ├── CommandLine.h │ │ ├── IRFunctionPass.h │ │ ├── IRFunctionPassManager.h │ │ ├── IRFunctionPassPipeline.h │ │ ├── IRFunctionPasses.h │ │ ├── IROptimizer.h │ │ └── IRPasses.def │ └── Lower │ │ └── Lower.h │ ├── Partitioner │ ├── Partitioner.h │ ├── PartitionerBase.h │ ├── PartitionerOptimizer.h │ ├── PartitionerTypes.h │ ├── PartitionerUtils.h │ └── PartitionerValidation.h │ ├── PassManager │ ├── Pass.h │ ├── PassConfig.h │ ├── PassConfigUtils.h │ ├── PassManager.h │ └── Pipeline.h │ ├── Quantization │ ├── Base │ │ ├── Base.h │ │ ├── Calibration.h │ │ └── Profile.h │ ├── Quantization.h │ └── Serialization.h │ ├── Runtime │ ├── DeferredWeightLoader.h │ ├── DeviceHealthMonitor.h │ ├── ErrorReporter.h │ ├── Executor │ │ ├── Executor.h │ │ ├── NetworkExecutionState.h │ │ └── ThreadPoolExecutor.h │ ├── HostManager │ │ └── HostManager.h │ ├── InputSanitizer.h │ ├── Provisioner │ │ └── Provisioner.h │ ├── RequestData.h │ ├── RuntimeTypes.h │ ├── StatsExporter.h │ └── TraceExporter.h │ ├── Support │ ├── BFloat16.h │ ├── Compiler.h │ ├── Debug.h │ ├── Error.h │ ├── Float16.h │ ├── Memory.h │ ├── Random.h │ ├── Register.h │ ├── Support.h │ ├── TensorPool.h │ ├── ThreadPool.h │ └── ZipUtils.h │ └── Testing │ └── StrCheck.h ├── inference_engines └── x-inference-engines │ ├── CMakeLists.txt │ ├── main.c │ ├── x_inference_lib.c │ ├── x_inference_lib.h │ ├── x_perf_monitor.c │ └── x_perf_monitor.h ├── lib ├── Backend │ ├── Backend.cpp │ ├── BackendUtils.cpp │ ├── CMakeLists.txt │ └── CompiledFunction.cpp ├── Backends │ ├── Backends.cpp │ ├── CMakeLists.txt │ ├── CPU │ │ ├── CMakeLists.txt │ │ ├── CPUBackend.cpp │ │ ├── CPUBackend.h │ │ ├── CPUDeviceManager.cpp │ │ ├── CPUDeviceManager.h │ │ ├── CPUFactory.cpp │ │ ├── CPUFunction.cpp │ │ ├── CPUFunction.h │ │ ├── CPULLVMIRGen.cpp │ │ ├── CPULLVMIRGen.h │ │ ├── ClassGen │ │ │ ├── CMakeLists.txt │ │ │ ├── CPUSpecificInstrs.h │ │ │ ├── CPUSpecificInstrsVerification.h │ │ │ ├── CPUSpecificNodes.h │ │ │ └── CPUSpecificNodesVerification.h │ │ ├── ONNX │ │ │ └── CPUONNXModelWriter.cpp │ │ ├── Transforms.cpp │ │ ├── libjit_cpu │ │ │ ├── libjit_cpu.cpp │ │ │ └── libjit_cpu_conv.cpp │ │ ├── libobj_cpu │ │ │ └── Readme.md │ │ └── tests │ │ │ ├── CPUBackendCorrectnessTest.cpp │ │ │ ├── CPUBackendTest.cpp │ │ │ ├── CPUDeferredWeightLoaderTest.cpp │ │ │ ├── CPUDeviceManagerTest.cpp │ │ │ ├── CPUGradCheckTest.cpp │ │ │ ├── CPUGraphOptzTest.cpp │ │ │ ├── CPUHostManagerTest.cpp │ │ │ ├── CPUMLTest.cpp │ │ │ ├── CPUOperatorGradTest.cpp │ │ │ ├── CPUOperatorTest.cpp │ │ │ ├── CPUQuantizationTest.cpp │ │ │ ├── CPURecommendationSystemTest.cpp │ │ │ └── CPUTraceEventsTest.cpp │ ├── DeviceManagers.cpp │ ├── Habana │ │ ├── CMakeLists.txt │ │ ├── ClassGen │ │ │ ├── CMakeLists.txt │ │ │ ├── HabanaSpecificNodes.h │ │ │ └── HabanaSpecificNodesVerification.h │ │ ├── Habana.cpp │ │ ├── Habana.h │ │ ├── HabanaDeviceManager.cpp │ │ ├── HabanaDeviceManager.h │ │ ├── HabanaFactory.cpp │ │ ├── HabanaFunction.cpp │ │ ├── HabanaFunction.h │ │ ├── HabanaUtils.cpp │ │ ├── HabanaUtils.h │ │ ├── ONNX │ │ │ └── HabanaONNXModelWriter.cpp │ │ └── tests │ │ │ ├── HabanaBackendCorrectnessTest.cpp │ │ │ ├── HabanaBackendTest.cpp │ │ │ ├── HabanaDeferredWeightLoaderTest.cpp │ │ │ ├── HabanaDeviceManagerTest.cpp │ │ │ ├── HabanaGradCheckTest.cpp │ │ │ ├── HabanaGraphOptzTest.cpp │ │ │ ├── HabanaHostManagerTest.cpp │ │ │ ├── HabanaMLTest.cpp │ │ │ ├── HabanaOperatorGradTest.cpp │ │ │ ├── HabanaOperatorTest.cpp │ │ │ ├── HabanaQuantizationTest.cpp │ │ │ ├── HabanaRecommendationSystemTest.cpp │ │ │ └── HabanaTraceEventsTest.cpp │ ├── Interpreter │ │ ├── CMakeLists.txt │ │ ├── Interpreter.cpp │ │ ├── InterpreterDeviceManager.cpp │ │ ├── InterpreterFactory.cpp │ │ ├── InterpreterFunction.cpp │ │ ├── InterpreterNodes.cpp │ │ └── tests │ │ │ ├── InterpreterBackendCorrectnessTest.cpp │ │ │ ├── InterpreterBackendTest.cpp │ │ │ ├── InterpreterDeferredWeightLoaderTest.cpp │ │ │ ├── InterpreterDeviceManagerTest.cpp │ │ │ ├── InterpreterGradCheckTest.cpp │ │ │ ├── InterpreterGraphOptzTest.cpp │ │ │ ├── InterpreterHostManagerTest.cpp │ │ │ ├── InterpreterMLTest.cpp │ │ │ ├── InterpreterOperatorGradTest.cpp │ │ │ ├── InterpreterOperatorTest.cpp │ │ │ ├── InterpreterParameterSweepTest.cpp │ │ │ ├── InterpreterQuantizationTest.cpp │ │ │ ├── InterpreterRecommendationSystemTest.cpp │ │ │ ├── InterpreterTensorLayoutTest.cpp │ │ │ └── InterpreterTraceEventsTest.cpp │ ├── NNPI │ │ ├── BlockStream.cpp │ │ ├── BlockStream.h │ │ ├── CMakeLists.txt │ │ ├── ClassGen │ │ │ ├── CMakeLists.txt │ │ │ ├── NNPISpecificNodes.h │ │ │ ├── NNPISpecificNodesVerification.h │ │ │ └── NNPISpecificTypes.h │ │ ├── CustomKernels │ │ │ ├── CustomKernelInjector.h │ │ │ ├── DSPInjectors │ │ │ │ ├── CmpInt32Injector.cpp │ │ │ │ ├── DSPInjectorUtils.cpp │ │ │ │ ├── DSPInjectorUtils.h │ │ │ │ ├── DSPInjectors.cpp │ │ │ │ ├── DSPInjectors.h │ │ │ │ └── ReluInjector.cpp │ │ │ ├── GetNNPIKernels.cpp │ │ │ ├── GetNNPIKernels.h │ │ │ └── IAInjectors │ │ │ │ ├── IAInjectors.cpp │ │ │ │ └── IAInjectors.h │ │ ├── DebugMacros.h │ │ ├── Importer.cpp │ │ ├── Importer.h │ │ ├── InferenceContext.cpp │ │ ├── InferenceContext.h │ │ ├── InferencePool.cpp │ │ ├── InferencePool.h │ │ ├── NNPI.cpp │ │ ├── NNPI.h │ │ ├── NNPIAdapterContainer.cpp │ │ ├── NNPIAdapterContainer.h │ │ ├── NNPICompiledFunction.cpp │ │ ├── NNPICompiledFunction.h │ │ ├── NNPIDeviceManager.cpp │ │ ├── NNPIDeviceManager.h │ │ ├── NNPIFactory.cpp │ │ ├── NNPIMLTraceWrapper.cpp │ │ ├── NNPIMLTraceWrapper.h │ │ ├── NNPIOptions.cpp │ │ ├── NNPIOptions.h │ │ ├── NNPIResource.cpp │ │ ├── NNPIResource.h │ │ ├── NNPITracing.cpp │ │ ├── NNPITracing.h │ │ ├── NNPIUtils.cpp │ │ ├── NNPIUtils.h │ │ ├── NNPIUtils_AVX512.cpp │ │ ├── ONNX │ │ │ └── NNPIONNXModelWriter.cpp │ │ ├── SpecializedLookupTables.cpp │ │ └── tests │ │ │ ├── NNPIBackendCorrectnessTest.cpp │ │ │ ├── NNPIBackendTest.cpp │ │ │ ├── NNPIDeferredWeightLoaderTest.cpp │ │ │ ├── NNPIDeviceManagerTest.cpp │ │ │ ├── NNPIGradCheckTest.cpp │ │ │ ├── NNPIGraphOptzTest.cpp │ │ │ ├── NNPIHostManagerTest.cpp │ │ │ ├── NNPIMLTest.cpp │ │ │ ├── NNPINumericsTest.cpp │ │ │ ├── NNPIOperatorGradTest.cpp │ │ │ ├── NNPIOperatorTest.cpp │ │ │ ├── NNPIParameterSweepTest.cpp │ │ │ ├── NNPIQuantizationTest.cpp │ │ │ ├── NNPIRecommendationSystemTest.cpp │ │ │ ├── NNPISparseLengthsSumTest.cpp │ │ │ ├── NNPITraceEventsTest.cpp │ │ │ └── TestBlacklist.h │ └── OpenCL │ │ ├── CMakeLists.txt │ │ ├── ClassGen │ │ ├── CMakeLists.txt │ │ ├── OpenCLSpecificInstrs.h │ │ ├── OpenCLSpecificInstrsVerification.h │ │ ├── OpenCLSpecificNodes.h │ │ └── OpenCLSpecificNodesVerification.h │ │ ├── ONNX │ │ └── OpenCLONNXModelWriter.cpp │ │ ├── OpenCL.cpp │ │ ├── OpenCL.h │ │ ├── OpenCLDeviceManager.cpp │ │ ├── OpenCLDeviceManager.h │ │ ├── OpenCLFactory.cpp │ │ ├── OpenCLTensorLayout.cpp │ │ ├── OpenCLTensorLayout.h │ │ ├── Transforms.cpp │ │ ├── kernels.cl │ │ ├── kernels_fwd_conv.cl │ │ ├── kernels_fwd_quantized_conv.cl │ │ ├── kernels_specialized_no_local_mem_conv.cl │ │ └── tests │ │ ├── OpenCLBackendCorrectnessTest.cpp │ │ ├── OpenCLBackendTest.cpp │ │ ├── OpenCLDeferredWeightLoaderTest.cpp │ │ ├── OpenCLDeviceManagerTest.cpp │ │ ├── OpenCLDiskCacheTest.cmake │ │ ├── OpenCLGradCheckTest.cpp │ │ ├── OpenCLGraphOptzTest.cpp │ │ ├── OpenCLHostManagerTest.cpp │ │ ├── OpenCLMLTest.cpp │ │ ├── OpenCLOperatorGradTest.cpp │ │ ├── OpenCLOperatorTest.cpp │ │ ├── OpenCLQuantizationTest.cpp │ │ ├── OpenCLRecommendationSystemTest.cpp │ │ ├── OpenCLTensorLayoutTest.cpp │ │ └── OpenCLTraceEventsTest.cpp ├── Base │ ├── CMakeLists.txt │ ├── IO.cpp │ ├── Image.cpp │ ├── NumpyReader.cpp │ ├── TaggedList.cpp │ ├── Tensor.cpp │ ├── TensorSerialization.cpp │ └── Type.cpp ├── CMakeLists.txt ├── CodeGen │ ├── CMakeLists.txt │ └── MemoryAllocator.cpp ├── Converter │ ├── CMakeLists.txt │ ├── Float16Converter.cpp │ ├── FunctionConverter.cpp │ ├── FusedRowwiseConverter.cpp │ └── TypeAToTypeBFunctionConverter.cpp ├── ExecutionContext │ ├── CMakeLists.txt │ └── TraceEvents.cpp ├── ExecutionEngine │ ├── CMakeLists.txt │ └── ExecutionEngine.cpp ├── Exporter │ ├── CMakeLists.txt │ ├── ONNXModelWriter.cpp │ └── ProtobufWriter.cpp ├── Flags │ ├── CMakeLists.txt │ └── Flags.cpp ├── Graph │ ├── CMakeLists.txt │ ├── FXIRUtils.cpp │ ├── FXIRWrapper.cpp │ ├── Grad.cpp │ ├── Graph.cpp │ ├── Hook.cpp │ ├── Log.cpp │ ├── Node.cpp │ ├── NodeValue.cpp │ ├── Nodes.cpp │ ├── PlaceholderBindings.cpp │ ├── TensorLayout.cpp │ └── VerifierHelper.cpp ├── IR │ ├── CMakeLists.txt │ ├── ChildMemSizeBasedScheduler.cpp │ ├── GraphScheduler.cpp │ ├── GraphScheduler.h │ ├── IR.cpp │ ├── IRBuilder.cpp │ ├── IRGen.cpp │ ├── IRUtils.cpp │ ├── Instrs.cpp │ └── TopologicalSortBasedScheduler.cpp ├── Importer │ ├── CMakeLists.txt │ ├── Caffe2ModelLoader.cpp │ ├── ONNXIFIModelLoader.cpp │ ├── ONNXModelLoader.cpp │ ├── ProtobufLoader.cpp │ ├── TFLiteModelLoader.cpp │ └── caffe2.proto ├── LLVMIRCodeGen │ ├── AllocationsInfo.cpp │ ├── BundleSaver.cpp │ ├── CMakeLists.txt │ ├── CommandLine.cpp │ ├── DebugInfo.cpp │ ├── DebugInstrumentation.cpp │ ├── FunctionSpecializer.cpp │ ├── GlowJIT.cpp │ ├── JITFilePrinter.cpp │ ├── LLVMBackend.cpp │ ├── LLVMCompiledFunction.cpp │ ├── LLVMIRGen.cpp │ ├── Pipeline.cpp │ └── libjit │ │ ├── libjit.cpp │ │ ├── libjit_conv.cpp │ │ ├── libjit_defs.h │ │ ├── libjit_dim_t.h │ │ └── libjit_matmul.cpp ├── Onnxifi │ ├── Base.cpp │ ├── Base.h │ ├── CMakeLists.txt │ ├── GlowOnnxifiManager.cpp │ ├── GlowOnnxifiManager.h │ ├── HostManagerOnnxifi.cpp │ ├── HostManagerOnnxifi.h │ ├── InlineOnnxifi.cpp │ ├── InlineOnnxifi.h │ └── onnxifiGlow.cpp ├── Optimizer │ ├── CMakeLists.txt │ ├── GraphOptimizer │ │ ├── CMakeLists.txt │ │ ├── ConstantFolding.cpp │ │ ├── FunctionPassManager.cpp │ │ ├── GraphOptimizer.cpp │ │ ├── Lower.cpp │ │ ├── NodeSplitting.cpp │ │ ├── Quantization.cpp │ │ └── TrainingPreparation.cpp │ ├── GraphOptimizerPipeline │ │ ├── CMakeLists.txt │ │ └── FunctionPassPipeline.cpp │ ├── IROptimizer │ │ ├── CMakeLists.txt │ │ ├── IRFunctionPassManager.cpp │ │ ├── IRInstrumentation.cpp │ │ └── IROptimizer.cpp │ ├── IROptimizerPipeline │ │ ├── CMakeLists.txt │ │ ├── CommandLine.cpp │ │ └── IRFunctionPassPipeline.cpp │ └── Lower │ │ ├── CMakeLists.txt │ │ └── Lower.cpp ├── Partitioner │ ├── CMakeLists.txt │ ├── Partitioner.cpp │ ├── PartitionerBase.cpp │ ├── PartitionerOptimizer.cpp │ ├── PartitionerUtils.cpp │ └── PartitionerValidation.cpp ├── PassManager │ ├── CMakeLists.txt │ ├── PassConfig.cpp │ ├── PassManager.cpp │ └── PassPipeline.cpp ├── Quantization │ ├── Base │ │ ├── Base.cpp │ │ ├── CMakeLists.txt │ │ ├── Calibration.cpp │ │ └── Profile.cpp │ ├── CMakeLists.txt │ ├── Quantization.cpp │ └── Serialization.cpp ├── Runtime │ ├── CMakeLists.txt │ ├── DeferredWeightLoader.cpp │ ├── DeviceHealthMonitor.cpp │ ├── ErrorReporter.cpp │ ├── Executor │ │ ├── CMakeLists.txt │ │ ├── NetworkExecutionState.cpp │ │ └── ThreadPoolExecutor.cpp │ ├── HostManager │ │ ├── CMakeLists.txt │ │ └── HostManager.cpp │ ├── InputSanitizer.cpp │ ├── Provisioner │ │ ├── CMakeLists.txt │ │ └── Provisioner.cpp │ ├── StatsExporter.cpp │ └── TraceExporter.cpp └── Support │ ├── CMakeLists.txt │ ├── Debug.cpp │ ├── Error.cpp │ ├── Random.cpp │ ├── Support.cpp │ ├── TensorPool │ ├── CMakeLists.txt │ └── TensorPool.cpp │ ├── ThreadPool.cpp │ └── ZipUtils.cpp ├── tests ├── CMakeLists.txt ├── Testing │ ├── CMakeLists.txt │ └── StrCheck.cpp ├── benchmark │ ├── AddBench.cpp │ ├── BERTProxyLayerBench.cpp │ ├── BatchGemmBench.cpp │ ├── Bench.h │ ├── CMakeLists.txt │ ├── CommonSLSEB.h │ ├── ConcatBench.cpp │ ├── ConvBench.cpp │ ├── ConvUtils.h │ ├── EmbeddingBagBench.cpp │ ├── GatherBench.cpp │ ├── GemmBench.cpp │ ├── GemmParallelBench.cpp │ ├── Int8AvgPool2dParallelBench.cpp │ ├── Int8Conv2dParallelBench.cpp │ ├── Int8Conv3dParallelBench.cpp │ ├── Int8GemmBench.cpp │ ├── Int8GemmBench.h │ ├── Int8GemmParallelBench.cpp │ ├── ResNetBench.cpp │ ├── RuntimeBench.cpp │ ├── SLSBench.cpp │ ├── TBEBench.cpp │ └── TransposeBench.cpp ├── examples_tests │ └── resnet-runtime-test.sh ├── images │ ├── CMakeLists.txt │ ├── EmotionSampleImages │ │ ├── README │ │ ├── angry_baby.png │ │ ├── angry_man.png │ │ ├── fear.png │ │ ├── happy.png │ │ ├── neutral.png │ │ ├── neutral_girl.png │ │ ├── sad_baby.png │ │ ├── sad_baby2.png │ │ ├── surprised_boy.png │ │ └── surprised_woman.png │ ├── imagenet │ │ ├── cat_285.png │ │ ├── dog_207.png │ │ └── zebra_340.png │ ├── imagenet_299 │ │ ├── cat_281_299.png │ │ ├── dog_207_299.png │ │ └── zebra_340_299.png │ ├── mnist │ │ ├── 0_1009.png │ │ ├── 1_1008.png │ │ ├── 2_1065.png │ │ ├── 3_1020.png │ │ ├── 4_1059.png │ │ ├── 5_1087.png │ │ ├── 6_1099.png │ │ ├── 7_1055.png │ │ ├── 8_1026.png │ │ └── 9_1088.png │ ├── npy │ │ ├── cat_285_i8_224.npy │ │ ├── cat_285_u8_224.npy │ │ ├── input1List_3D.txt │ │ ├── input1List_3D_f32.txt │ │ ├── input1List_3D_f32_2.txt │ │ ├── input1List_3D_i16.txt │ │ ├── input1List_3D_u16.txt │ │ ├── input1List_4D.txt │ │ ├── input2List_3D.txt │ │ ├── input2List_3D_2.txt │ │ ├── input2List_3D_f32.txt │ │ ├── input2List_3D_f32_2.txt │ │ ├── input2List_3D_i16.txt │ │ ├── input2List_3D_u16.txt │ │ ├── input2List_4D.txt │ │ ├── tensor10_i64.npy │ │ ├── tensor16_i16.npy │ │ ├── tensor16_u16.npy │ │ ├── tensor1x2x3x8_u8.npy │ │ ├── tensor1x4x2x2_u8.npy │ │ ├── tensor1x4x2x2x3_f32.npy │ │ ├── tensor2x3x8_u8.npy │ │ ├── tensor3x16_u8.npy │ │ ├── tensor3x4x2_i8.npy │ │ ├── tensor3x4x2_u32.npy │ │ ├── tensor3x4x2_u8.npy │ │ ├── tensor3x4x2x2_i8.npy │ │ ├── tensor3x4x2x2_u16.npy │ │ ├── tensor3x4x2x2_u8.npy │ │ ├── tensor48_i8.npy │ │ ├── tensor48_u8.npy │ │ ├── tensor_1x2x4_f32.npy │ │ ├── tensor_1x2x4_f32_2.npy │ │ ├── tensor_1x2x4_i16.npy │ │ ├── tensor_1x2x4_i16_2.npy │ │ ├── tensor_1x2x4_u16.npy │ │ ├── tensor_1x2x4_u8.npy │ │ ├── tensor_1x2x4x4_u8.npy │ │ └── tensor_2x4x4_u8.npy │ ├── other │ │ ├── corrupt_dog.png │ │ ├── tensor_2x4x3.png │ │ └── vga_image.png │ ├── ppm │ │ └── cat_285.ppm │ └── run.sh ├── models │ ├── CMakeLists.txt │ ├── caffe2Models │ │ ├── 4bit_fused_rowwise_quantized_sparse_lengths_sum_init_net.pbtxt │ │ ├── 4bit_fused_rowwise_quantized_sparse_lengths_sum_predict_net.pbtxt │ │ ├── NCHW2NHWC_predict_net.pbtxt │ │ ├── alias_op_net.pbtxt │ │ ├── argmin.pbtxt │ │ ├── avgpool_nhwc_predict_net.pbtxt │ │ ├── avgpool_predict_net.pbtxt │ │ ├── batch_box_cox_predict_net.pbtxt │ │ ├── batch_sparse_to_dense_last_dim_1.pbtxt │ │ ├── batched_matmul.pbtxt │ │ ├── bucketize_op_net.pbtxt │ │ ├── cast_int64_to_int64.pbtxt │ │ ├── clip_op_default_net.pbtxt │ │ ├── clip_op_net.pbtxt │ │ ├── concat_add_axis_at_edge.pbtxt │ │ ├── concat_add_axis_predict_net.pbtxt │ │ ├── concat_predict_net.pbtxt │ │ ├── constant_fill_input_as_shape.pbtxt │ │ ├── constant_fill_input_as_shape_init.pbtxt │ │ ├── constant_fill_use_input_shape.pbtxt │ │ ├── constant_fill_use_provided_shape.pbtxt │ │ ├── conv_group_quantized_init_net.pbtxt │ │ ├── conv_group_quantized_pred_net.pbtxt │ │ ├── conv_nhwc_init_net.pbtxt │ │ ├── conv_nhwc_predict_net.pbtxt │ │ ├── convrelu_init_net.pbtxt │ │ ├── convrelu_pred_net.pbtxt │ │ ├── convtranspose.pbtxt │ │ ├── convtranspose_init.pbtxt │ │ ├── convtranspose_net.pbtxt │ │ ├── convtranspose_nhwc.pbtxt │ │ ├── convtranspose_nhwc_init.pbtxt │ │ ├── convtranspose_pads.pbtxt │ │ ├── dce_test_init_net.pbtxt │ │ ├── dce_test_predict_net.pbtxt │ │ ├── dot_product_predict_net.pbtxt │ │ ├── dropout.pbtxt │ │ ├── dynamic_quantized_fc_init.pbtxt │ │ ├── dynamic_quantized_fc_predict_net.pbtxt │ │ ├── elementwise_linear_broadcast_net.pbtxt │ │ ├── elementwise_linear_default_net.pbtxt │ │ ├── elementwise_linear_net.pbtxt │ │ ├── empty_init_net.pbtxt │ │ ├── empty_predict_net.pbtxt │ │ ├── eq_op_net.pbtxt │ │ ├── exp_op_net.pbtxt │ │ ├── fbfcpacked_3d_second_axis_init.pbtxt │ │ ├── fbfcpacked_3d_second_axis_predict.pbtxt │ │ ├── fbfcpacked_4d_first_axis_init_net.pbtxt │ │ ├── fbfcpacked_4d_first_axis_predict_net.pbtxt │ │ ├── fcTransposed_4d_init_net.pbtxt │ │ ├── fcTransposed_4d_predict_net.pbtxt │ │ ├── fcTransposed_init_net.pbtxt │ │ ├── fcTransposed_predict_net.pbtxt │ │ ├── fc_3d_second_axis_init.pbtxt │ │ ├── fc_3d_second_axis_predict.pbtxt │ │ ├── fc_4d_first_axis_init_net.pbtxt │ │ ├── fc_4d_first_axis_predict_net.pbtxt │ │ ├── fc_4d_init_net.pbtxt │ │ ├── fc_4d_predict_net.pbtxt │ │ ├── fc_init_net.pbtxt │ │ ├── fc_predict_net.pbtxt │ │ ├── fill_examples_with_indicator.pbtxt │ │ ├── fill_test_init_net.pbtxt │ │ ├── fill_test_predict_net.pbtxt │ │ ├── fused_rowwise_quantized_sparse_lengths_sum_init_net.pbtxt │ │ ├── fused_rowwise_quantized_sparse_lengths_sum_predict_net.pbtxt │ │ ├── fused_rowwise_quantized_sparse_lengths_sum_predict_net_length1.pbtxt │ │ ├── fused_rowwise_quantized_sparse_lengths_weighted_sum_avg_length_predict_net.pbtxt │ │ ├── fused_rowwise_quantized_sparse_lengths_weighted_sum_init_net.pbtxt │ │ ├── fused_rowwise_quantized_sparse_lengths_weighted_sum_predict_net.pbtxt │ │ ├── gather_const_fold.pbtxt │ │ ├── gather_const_fold_init.pbtxt │ │ ├── gather_ranges.pbtxt │ │ ├── gaussian_fill_input_as_shape.pbtxt │ │ ├── gaussian_fill_input_as_shape_init.pbtxt │ │ ├── gaussian_fill_use_input_shape.pbtxt │ │ ├── gaussian_fill_use_input_shape_with_extra_shape.pbtxt │ │ ├── gaussian_fill_use_provided_shape.pbtxt │ │ ├── gelu.pbtxt │ │ ├── halftofloat_op_net.pbtxt │ │ ├── init_net.pbtxt │ │ ├── int8convrelu_init_net.pbtxt │ │ ├── int8convrelu_pred_net.pbtxt │ │ ├── int8fc_3d_second_axis_init.pbtxt │ │ ├── int8fc_3d_second_axis_predict.pbtxt │ │ ├── int8fc_4d_first_axis_init_net.pbtxt │ │ ├── int8fc_4d_first_axis_predict_net.pbtxt │ │ ├── int8sumrelu_init_net.pbtxt │ │ ├── int8sumrelu_large_range_init_net.pbtxt │ │ ├── int8sumrelu_large_range_pred_net.pbtxt │ │ ├── int8sumrelu_pred_net.pbtxt │ │ ├── int8sumrelu_tiny_scale_init_net.pbtxt │ │ ├── int8sumrelu_tiny_scale_pred_net.pbtxt │ │ ├── layernorm_neg_axis_pred_net.pbtxt │ │ ├── layernorm_pred_net.pbtxt │ │ ├── layernorm_weight_bias_init_net.pbtxt │ │ ├── layernorm_weight_bias_pred_net.pbtxt │ │ ├── lengths_range_fill_predict_net.pbtxt │ │ ├── lengths_sum.pbtxt │ │ ├── lengths_to_ranges.pbtxt │ │ ├── lengths_to_ranges_init_net.pbtxt │ │ ├── log1p.pbtxt │ │ ├── logit_op_net.pbtxt │ │ ├── lpnorm_p1.pbtxt │ │ ├── lpnorm_p2.pbtxt │ │ ├── matmul_trans_RHS_predict_net.pbtxt │ │ ├── maxpool_legacy_padding_predict_net.pbtxt │ │ ├── maxpool_nhwc_predict_net.pbtxt │ │ ├── maxpool_predict_net.pbtxt │ │ ├── mean_3inputs.pbtxt │ │ ├── modulo_op_net.pbtxt │ │ ├── multiple_inputs_graph.pbtxt │ │ ├── negative.pbtxt │ │ ├── parallel_matmul_predict_net.pbtxt │ │ ├── pre_partitioned_fill_test_predict_net.pbtxt │ │ ├── pre_partitioned_multi_op_predict_net.pbtxt │ │ ├── predict_net.pbtxt │ │ ├── prelu.pbtxt │ │ ├── reduce_back_sum.pbtxt │ │ ├── reducebackmean.pbtxt │ │ ├── replace_nan_predict_net.pbtxt │ │ ├── resize_nearest_op_net.pbtxt │ │ ├── rmsnorm.pbtxt │ │ ├── rowwise_quantized_sparse_lengths_sum_init_net.pbtxt │ │ ├── rowwise_quantized_sparse_lengths_sum_predict_net.pbtxt │ │ ├── rowwise_quantized_sparse_lengths_weighted_sum_init_net.pbtxt │ │ ├── rowwise_quantized_sparse_lengths_weighted_sum_predict_net.pbtxt │ │ ├── scale.pbtxt │ │ ├── sigmoid.pbtxt │ │ ├── sign.pbtxt │ │ ├── softplus.pbtxt │ │ ├── sparse_to_dense.pbtxt │ │ ├── sparse_to_dense_mask_op_net.pbtxt │ │ ├── sparselabelsplit.pbtxt │ │ ├── sqr_predict_net.pbtxt │ │ ├── swish_op_net.pbtxt │ │ ├── topk_k2.pbtxt │ │ ├── uniform_fill_input_as_shape.pbtxt │ │ └── uniform_fill_use_input_shape.pbtxt │ ├── onnxModels │ │ ├── Acos.onnxtxt │ │ ├── ArgMaxDefault.onnxtxt │ │ ├── ArgMaxKeepDim.onnxtxt │ │ ├── ArgMaxNoKeepDim.onnxtxt │ │ ├── ArgMinDefault.onnxtxt │ │ ├── ArgMinKeepDim.onnxtxt │ │ ├── ArgMinNoKeepDim.onnxtxt │ │ ├── Asin.onnxtxt │ │ ├── Atan.onnxtxt │ │ ├── CmpLTE.onnxtxt │ │ ├── Cos.onnxtxt │ │ ├── Equal.onnxtxt │ │ ├── Erf.onnxtxt │ │ ├── FCTransposed.onnxtxt │ │ ├── IntermediateOutput.onnxtxt │ │ ├── Less.onnxtxt │ │ ├── MatMul4D.onnxtxt │ │ ├── Mean.onnxtxt │ │ ├── Mean_broadcast.onnxtxt │ │ ├── NonMaxSuppression.onnxtxt │ │ ├── NonMaxSuppressionOptionalParams.onnxtxt │ │ ├── NonMaxSuppressionSSD.onnxtxt │ │ ├── NonMaxSuppressionSSD_ONNX.onnxtxt │ │ ├── NonZero.onnxtxt │ │ ├── QuantizeLinearDequantizeLinear.onnxtxt │ │ ├── ROIAlign_onnx.onnxtxt │ │ ├── RangeFloat.onnxtxt │ │ ├── RangeInt32.onnxtxt │ │ ├── ReduceL2KeepDims.onnxtxt │ │ ├── ReduceL2NegAxis.onnxtxt │ │ ├── ReduceL2NoAxis.onnxtxt │ │ ├── ReduceL2NoKeepDims.onnxtxt │ │ ├── Sin.onnxtxt │ │ ├── TopK.onnxtxt │ │ ├── UniBroadcastIssue2135.onnxtxt │ │ ├── Where.onnxtxt │ │ ├── abs.onnxtxt │ │ ├── addMultiBroadcastOp7.onnxtxt │ │ ├── addUniBroadcastOp6Axis.onnxtxt │ │ ├── addUniBroadcastOp6NoAxis.onnxtxt │ │ ├── add_2inputs_3D.onnx │ │ ├── add_2inputs_4D.onnx │ │ ├── audioSpectrogramNonSquared.onnxtxt │ │ ├── audioSpectrogramOneWindow.onnxtxt │ │ ├── audioSpectrogramTwoWindow.onnxtxt │ │ ├── averagePool2DAutoPadSameLower.onnxtxt │ │ ├── averagePool2DAutoPadSameUpper.onnxtxt │ │ ├── averagePool2DAutoPadValid.onnxtxt │ │ ├── averagePool2DCountExcludePads.onnxtxt │ │ ├── averagePool3D.onnxtxt │ │ ├── batchBoxCox.onnxtxt │ │ ├── batchNormPR2304.onnxtxt │ │ ├── batch_matmul.onnxtxt │ │ ├── bool_from_int.onnxtxt │ │ ├── castInt-32-64.onnxtxt │ │ ├── castToBool.onnxtxt │ │ ├── castToFloat.onnxtxt │ │ ├── castToFloat16.onnxtxt │ │ ├── castToInt32.onnxtxt │ │ ├── castToInt64.onnxtxt │ │ ├── ceil.onnxtxt │ │ ├── clip.onnxtxt │ │ ├── clip_default.onnxtxt │ │ ├── clipv11.onnxtxt │ │ ├── constRelu.onnxtxt │ │ ├── constant.onnxtxt │ │ ├── constantOfShape.onnxtxt │ │ ├── constantOfShapeInt32.onnxtxt │ │ ├── constantOfShapeInt32Fail.onnxtxt │ │ ├── constantOfShapeInt64.onnxtxt │ │ ├── constantOfShapeInt64Fail.onnxtxt │ │ ├── conv1D.onnxtxt │ │ ├── convPadNotset.onnxtxt │ │ ├── convTransposeAsymmetric.onnxtxt │ │ ├── convTransposeGroup.onnxtxt │ │ ├── cumsum.onnxtxt │ │ ├── depthToSpace.onnxtxt │ │ ├── depthToSpace_crd.onnxtxt │ │ ├── dim32 │ │ │ └── sparseToDense.onnxtxt │ │ ├── dimParam.onnxtxt │ │ ├── divMultiBroadcastOp7.onnxtxt │ │ ├── divUniBroadcastOp6Axis.onnxtxt │ │ ├── divUniBroadcastOp6NoAxis.onnxtxt │ │ ├── dot_product.onnxtxt │ │ ├── exp.onnxtxt │ │ ├── expandDims.onnxtxt │ │ ├── expandnodeDiffShape.onnxtxt │ │ ├── expandnodeSameShape.onnxtxt │ │ ├── flipNoAxis.onnxtxt │ │ ├── flipWithAxis.onnxtxt │ │ ├── floor.onnxtxt │ │ ├── fp16FullyConnected.onnxtxt │ │ ├── fusedSLWS.onnxtxt │ │ ├── gather.onnxtxt │ │ ├── gatherConstantFolding.onnxtxt │ │ ├── gatherND.onnxtxt │ │ ├── gatherranges.onnxtxt │ │ ├── gemmBatchedC.onnxtxt │ │ ├── gemmNoC.onnxtxt │ │ ├── gemmSingleC.onnxtxt │ │ ├── gemmTransA.onnxtxt │ │ ├── gemmTransB.onnxtxt │ │ ├── getInputsOnnxDefineSample.onnxtxt │ │ ├── glow_custom_dag_multi_op.onnxtxt │ │ ├── glow_custom_op_channelwise_quantized_group_conv.onnxtxt │ │ ├── glow_custom_op_node_opts.onnxtxt │ │ ├── glow_custom_op_topk_quantized.onnxtxt │ │ ├── glow_custom_with_strides.onnxtxt │ │ ├── gruBidirectional.onnxtxt │ │ ├── gruForward.onnxtxt │ │ ├── gruForwardLinearBeforeReset.onnxtxt │ │ ├── gruForwardNoBias.onnxtxt │ │ ├── gruForwardNoState.onnxtxt │ │ ├── gruReverse.onnxtxt │ │ ├── hardsigmoid.onnxtxt │ │ ├── if_false.onnxtxt │ │ ├── if_true.onnxtxt │ │ ├── instNorm.onnxtxt │ │ ├── leakyRelu.onnxtxt │ │ ├── leakyReluDefault.onnxtxt │ │ ├── legalizeNames.onnxtxt │ │ ├── lengths_sum.onnxtxt │ │ ├── lengths_to_ranges.onnxtxt │ │ ├── log.onnxtxt │ │ ├── logicalAnd.onnxtxt │ │ ├── logicalAndBcast.onnxtxt │ │ ├── logicalNot.onnxtxt │ │ ├── logicalOr.onnxtxt │ │ ├── logicalOrBcast.onnxtxt │ │ ├── logicalXor.onnxtxt │ │ ├── logicalXorBcast.onnxtxt │ │ ├── logsoftmax.onnxtxt │ │ ├── loop_cond.onnxtxt │ │ ├── loop_empty_tripcount.onnxtxt │ │ ├── loop_emptycond.onnxtxt │ │ ├── loop_no_iteration.onnxtxt │ │ ├── loop_static.onnxtxt │ │ ├── loop_tripcount.onnxtxt │ │ ├── loop_withoutN.onnxtxt │ │ ├── lstmBidirectional.onnxtxt │ │ ├── lstmForward.onnxtxt │ │ ├── lstmForwardInputForget.onnxtxt │ │ ├── lstmForwardNoBias.onnxtxt │ │ ├── lstmForwardNoState.onnxtxt │ │ ├── lstmForwardWithPeephole.onnxtxt │ │ ├── lstmReverse.onnxtxt │ │ ├── matmul.onnxtxt │ │ ├── maxPool1D.onnxtxt │ │ ├── maxPoolWithArgmax.onnxtxt │ │ ├── mfccOneWindow.onnxtxt │ │ ├── mfccTwoWindow.onnxtxt │ │ ├── mscatterND.onnxtxt │ │ ├── mulMultiBroadcastOp7.onnxtxt │ │ ├── mulUniBroadcastOp6Axis.onnxtxt │ │ ├── mulUniBroadcastOp6NoAxis.onnxtxt │ │ ├── multipleInputsGraph.onnxtxt │ │ ├── neg.onnxtxt │ │ ├── padConstant.onnxtxt │ │ ├── padConstantInput.onnxtxt │ │ ├── padConstantPositive.onnxtxt │ │ ├── padDefault.onnxtxt │ │ ├── padDefaultInputPad.onnxtxt │ │ ├── padEdge.onnxtxt │ │ ├── padReflect.onnxtxt │ │ ├── powMultiBroadcastOp7.onnxtxt │ │ ├── pow_array_broadcast.onnxtxt │ │ ├── pow_element_wise.onnxtxt │ │ ├── pow_scalar_broadcast.onnxtxt │ │ ├── preluBroadcastSlope.onnxtxt │ │ ├── preluInvalidBroadcastSlope.onnxtxt │ │ ├── preluSlopeHasSameShape.onnxtxt │ │ ├── reduceMax.onnxtxt │ │ ├── reduceMaxDefaultAxis.onnxtxt │ │ ├── reduceMaxNoKeep.onnxtxt │ │ ├── reduceMean2AvgPool.onnxtxt │ │ ├── reduceMean2AvgPoolNoKeep.onnxtxt │ │ ├── reduceMean4Dto3D.onnxtxt │ │ ├── reduceMean4Dto4D.onnxtxt │ │ ├── reduceMin.onnxtxt │ │ ├── reduceMinDefaultAxis.onnxtxt │ │ ├── reduceMinNoKeep.onnxtxt │ │ ├── reduceProd.onnxtxt │ │ ├── reduceSum4D.onnxtxt │ │ ├── reduceSumSquare4D.onnxtxt │ │ ├── replaceNaN.onnxtxt │ │ ├── resizeBilinear.onnxtxt │ │ ├── resizeBilinearV11compat.onnxtxt │ │ ├── resizeBilinearV11compat_sizes.onnxtxt │ │ ├── resizeNearest.onnxtxt │ │ ├── resizeNearestV11compat.onnxtxt │ │ ├── resizeNearestV11compat_sizes.onnxtxt │ │ ├── rnnBidirectional.onnxtxt │ │ ├── rnnForward.onnxtxt │ │ ├── rnnForwardNoBias.onnxtxt │ │ ├── rnnForwardNoState.onnxtxt │ │ ├── rnnReverse.onnxtxt │ │ ├── scatterND.onnxtxt │ │ ├── shape.onnxtxt │ │ ├── sign.onnxtxt │ │ ├── simpleConv.onnxtxt │ │ ├── simpleConv3D.onnxtxt │ │ ├── simpleConv3DAutoPadSameLower.onnxtxt │ │ ├── simpleConv3DAutoPadSameUpper.onnxtxt │ │ ├── simpleConv3DAutoPadValid.onnxtxt │ │ ├── simpleConv3DNonCubicPads.onnxtxt │ │ ├── simpleConv3DNonSquareDilation.onnxtxt │ │ ├── simpleConvAutoPadSameLower.onnxtxt │ │ ├── simpleConvAutoPadSameUpper.onnxtxt │ │ ├── simpleConvAutoPadValid.onnxtxt │ │ ├── simpleConvBiasFail.onnxtxt │ │ ├── simpleConvNonSquareDilation.onnxtxt │ │ ├── simpleConvTranspose.onnxtxt │ │ ├── simpleConvTransposeAutoPadSameLower.onnxtxt │ │ ├── simpleConvTransposeAutoPadSameUpper.onnxtxt │ │ ├── simpleConvTransposeAutoPadValid.onnxtxt │ │ ├── simpleConvTransposeOutShape.onnxtxt │ │ ├── simpleConvTransposeOutShapeDilation.onnxtxt │ │ ├── simpleConvTransposeOutShapeSameLower.onnxtxt │ │ ├── simpleConvTransposeOutShapeSameUpper.onnxtxt │ │ ├── simpleConvTransposePads.onnxtxt │ │ ├── sliceAxesAnyOrder.onnxtxt │ │ ├── sliceAxesFull.onnxtxt │ │ ├── sliceAxesOverwrite.onnxtxt │ │ ├── sliceAxesPartial.onnxtxt │ │ ├── sliceDynamic.onnxtxt │ │ ├── sliceInvalidAxes.onnxtxt │ │ ├── sliceNoAxes.onnxtxt │ │ ├── sliceWithStep.onnxtxt │ │ ├── sliceWithUnsupportedStep.onnxtxt │ │ ├── softmax11.onnxtxt │ │ ├── softmax13.onnxtxt │ │ ├── spaceToDepth.onnxtxt │ │ ├── sparseLengthsSum.onnxtxt │ │ ├── sparseToDense.onnxtxt │ │ ├── subMultiBroadcastOp7.onnxtxt │ │ ├── subUniBroadcastOp6Axis.onnxtxt │ │ ├── subUniBroadcastOp6NoAxis.onnxtxt │ │ ├── sum1.onnxtxt │ │ ├── sumN.onnxtxt │ │ ├── tile.onnxtxt │ │ ├── transpose_null_perm.onnxtxt │ │ ├── upsampleOpset7.onnxtxt │ │ └── upsampleOpset9.onnxtxt │ ├── pytorchModels │ │ └── resnet18.pt │ └── tfliteModels │ │ ├── abs.inp0 │ │ ├── abs.out0 │ │ ├── abs.tflite │ │ ├── add.inp0 │ │ ├── add.inp1 │ │ ├── add.out0 │ │ ├── add.tflite │ │ ├── add_broadcast.inp0 │ │ ├── add_broadcast.inp1 │ │ ├── add_broadcast.out0 │ │ ├── add_broadcast.tflite │ │ ├── arg_max.inp0 │ │ ├── arg_max.out0 │ │ ├── arg_max.tflite │ │ ├── arg_min.inp0 │ │ ├── arg_min.out0 │ │ ├── arg_min.tflite │ │ ├── avgpool2d_same.inp0 │ │ ├── avgpool2d_same.out0 │ │ ├── avgpool2d_same.tflite │ │ ├── avgpool2d_valid.inp0 │ │ ├── avgpool2d_valid.out0 │ │ ├── avgpool2d_valid.tflite │ │ ├── batchToSpaceNd.inp0 │ │ ├── batchToSpaceNd.out0 │ │ ├── batchToSpaceNd.tflite │ │ ├── cast_f32_to_int32.inp0 │ │ ├── cast_f32_to_int32.out0 │ │ ├── cast_f32_to_int32.tflite │ │ ├── ceil.inp0 │ │ ├── ceil.out0 │ │ ├── ceil.tflite │ │ ├── concat.inp0 │ │ ├── concat.inp1 │ │ ├── concat.out0 │ │ ├── concat.tflite │ │ ├── concat_neg_axis.inp0 │ │ ├── concat_neg_axis.inp1 │ │ ├── concat_neg_axis.out0 │ │ ├── concat_neg_axis.tflite │ │ ├── conv2d_relu.inp0 │ │ ├── conv2d_relu.out0 │ │ ├── conv2d_relu.tflite │ │ ├── conv2d_same.inp0 │ │ ├── conv2d_same.out0 │ │ ├── conv2d_same.tflite │ │ ├── conv2d_valid.inp0 │ │ ├── conv2d_valid.out0 │ │ ├── conv2d_valid.tflite │ │ ├── cos.inp0 │ │ ├── cos.out0 │ │ ├── cos.tflite │ │ ├── depth_to_space.inp0 │ │ ├── depth_to_space.out0 │ │ ├── depth_to_space.tflite │ │ ├── depthwise_conv2d_c1_m1.inp0 │ │ ├── depthwise_conv2d_c1_m1.out0 │ │ ├── depthwise_conv2d_c1_m1.tflite │ │ ├── depthwise_conv2d_c1_m2.inp0 │ │ ├── depthwise_conv2d_c1_m2.out0 │ │ ├── depthwise_conv2d_c1_m2.tflite │ │ ├── depthwise_conv2d_c2_m1.inp0 │ │ ├── depthwise_conv2d_c2_m1.out0 │ │ ├── depthwise_conv2d_c2_m1.tflite │ │ ├── depthwise_conv2d_c2_m2.inp0 │ │ ├── depthwise_conv2d_c2_m2.out0 │ │ ├── depthwise_conv2d_c2_m2.tflite │ │ ├── div.inp0 │ │ ├── div.inp1 │ │ ├── div.out0 │ │ ├── div.tflite │ │ ├── div_broadcast.inp0 │ │ ├── div_broadcast.inp1 │ │ ├── div_broadcast.out0 │ │ ├── div_broadcast.tflite │ │ ├── equal.inp0 │ │ ├── equal.inp1 │ │ ├── equal.out0 │ │ ├── equal.tflite │ │ ├── exp.inp0 │ │ ├── exp.out0 │ │ ├── exp.tflite │ │ ├── floor.inp0 │ │ ├── floor.out0 │ │ ├── floor.tflite │ │ ├── fully_connected.inp0 │ │ ├── fully_connected.out0 │ │ ├── fully_connected.tflite │ │ ├── gather_axis0.inp0 │ │ ├── gather_axis0.inp1 │ │ ├── gather_axis0.out0 │ │ ├── gather_axis0.tflite │ │ ├── gather_axis1.inp0 │ │ ├── gather_axis1.inp1 │ │ ├── gather_axis1.out0 │ │ ├── gather_axis1.tflite │ │ ├── gather_nd.inp0 │ │ ├── gather_nd.inp1 │ │ ├── gather_nd.out0 │ │ ├── gather_nd.tflite │ │ ├── greater.inp0 │ │ ├── greater.inp1 │ │ ├── greater.out0 │ │ ├── greater.tflite │ │ ├── greater_equal.inp0 │ │ ├── greater_equal.inp1 │ │ ├── greater_equal.out0 │ │ ├── greater_equal.tflite │ │ ├── hardSwish.inp0 │ │ ├── hardSwish.out0 │ │ ├── hardSwish.tflite │ │ ├── leaky_relu.inp0 │ │ ├── leaky_relu.out0 │ │ ├── leaky_relu.tflite │ │ ├── less.inp0 │ │ ├── less.inp1 │ │ ├── less.out0 │ │ ├── less.tflite │ │ ├── less_equal.inp0 │ │ ├── less_equal.inp1 │ │ ├── less_equal.out0 │ │ ├── less_equal.tflite │ │ ├── log.inp0 │ │ ├── log.out0 │ │ ├── log.tflite │ │ ├── log_softmax.inp0 │ │ ├── log_softmax.out0 │ │ ├── log_softmax.tflite │ │ ├── logical_and.inp0 │ │ ├── logical_and.inp1 │ │ ├── logical_and.out0 │ │ ├── logical_and.tflite │ │ ├── logical_not.inp0 │ │ ├── logical_not.out0 │ │ ├── logical_not.tflite │ │ ├── logical_or.inp0 │ │ ├── logical_or.inp1 │ │ ├── logical_or.out0 │ │ ├── logical_or.tflite │ │ ├── max.inp0 │ │ ├── max.inp1 │ │ ├── max.out0 │ │ ├── max.tflite │ │ ├── max_broadcast.inp0 │ │ ├── max_broadcast.inp1 │ │ ├── max_broadcast.out0 │ │ ├── max_broadcast.tflite │ │ ├── maxpool2d_same.inp0 │ │ ├── maxpool2d_same.out0 │ │ ├── maxpool2d_same.tflite │ │ ├── maxpool2d_valid.inp0 │ │ ├── maxpool2d_valid.out0 │ │ ├── maxpool2d_valid.tflite │ │ ├── mean_keep_dims.inp0 │ │ ├── mean_keep_dims.out0 │ │ ├── mean_keep_dims.tflite │ │ ├── mean_multiple_axis_keep_dims.inp0 │ │ ├── mean_multiple_axis_keep_dims.out0 │ │ ├── mean_multiple_axis_keep_dims.tflite │ │ ├── mean_multiple_axis_no_keep_dims.inp0 │ │ ├── mean_multiple_axis_no_keep_dims.out0 │ │ ├── mean_multiple_axis_no_keep_dims.tflite │ │ ├── mean_no_keep_dims.inp0 │ │ ├── mean_no_keep_dims.out0 │ │ ├── mean_no_keep_dims.tflite │ │ ├── min.inp0 │ │ ├── min.inp1 │ │ ├── min.out0 │ │ ├── min.tflite │ │ ├── min_broadcast.inp0 │ │ ├── min_broadcast.inp1 │ │ ├── min_broadcast.out0 │ │ ├── min_broadcast.tflite │ │ ├── mul.inp0 │ │ ├── mul.inp1 │ │ ├── mul.out0 │ │ ├── mul.tflite │ │ ├── mul_broadcast.inp0 │ │ ├── mul_broadcast.inp1 │ │ ├── mul_broadcast.out0 │ │ ├── mul_broadcast.tflite │ │ ├── neg.inp0 │ │ ├── neg.out0 │ │ ├── neg.tflite │ │ ├── not_equal.inp0 │ │ ├── not_equal.inp1 │ │ ├── not_equal.out0 │ │ ├── not_equal.tflite │ │ ├── pack.inp0 │ │ ├── pack.inp1 │ │ ├── pack.out0 │ │ ├── pack.tflite │ │ ├── pad.inp0 │ │ ├── pad.out0 │ │ ├── pad.tflite │ │ ├── pow.inp0 │ │ ├── pow.inp1 │ │ ├── pow.out0 │ │ ├── pow.tflite │ │ ├── prelu.inp0 │ │ ├── prelu.out0 │ │ ├── prelu.tflite │ │ ├── relu.inp0 │ │ ├── relu.out0 │ │ ├── relu.tflite │ │ ├── relu6.inp0 │ │ ├── relu6.out0 │ │ ├── relu6.tflite │ │ ├── relu_n1to1.inp0 │ │ ├── relu_n1to1.out0 │ │ ├── relu_n1to1.tflite │ │ ├── reshape.inp0 │ │ ├── reshape.out0 │ │ ├── reshape.tflite │ │ ├── reshape_neg_shape.inp0 │ │ ├── reshape_neg_shape.out0 │ │ ├── reshape_neg_shape.tflite │ │ ├── resize_bilinear.inp0 │ │ ├── resize_bilinear.out0 │ │ ├── resize_bilinear.tflite │ │ ├── resize_nearest.inp0 │ │ ├── resize_nearest.out0 │ │ ├── resize_nearest.tflite │ │ ├── round.inp0 │ │ ├── round.out0 │ │ ├── round.tflite │ │ ├── rsqrt.inp0 │ │ ├── rsqrt.out0 │ │ ├── rsqrt.tflite │ │ ├── select.inp0 │ │ ├── select.inp1 │ │ ├── select.inp2 │ │ ├── select.out0 │ │ ├── select.tflite │ │ ├── sigmoid.inp0 │ │ ├── sigmoid.out0 │ │ ├── sigmoid.tflite │ │ ├── sin.inp0 │ │ ├── sin.out0 │ │ ├── sin.tflite │ │ ├── slice.inp0 │ │ ├── slice.out0 │ │ ├── slice.tflite │ │ ├── slice_neg_size.inp0 │ │ ├── slice_neg_size.out0 │ │ ├── slice_neg_size.tflite │ │ ├── softmax.inp0 │ │ ├── softmax.out0 │ │ ├── softmax.tflite │ │ ├── spaceToBatchNd.inp0 │ │ ├── spaceToBatchNd.out0 │ │ ├── spaceToBatchNd.tflite │ │ ├── space_to_depth.inp0 │ │ ├── space_to_depth.out0 │ │ ├── space_to_depth.tflite │ │ ├── split.inp0 │ │ ├── split.out0 │ │ ├── split.out1 │ │ ├── split.out2 │ │ ├── split.tflite │ │ ├── sqrt.inp0 │ │ ├── sqrt.out0 │ │ ├── sqrt.tflite │ │ ├── square.inp0 │ │ ├── square.out0 │ │ ├── square.tflite │ │ ├── strided_slice_test0.inp0 │ │ ├── strided_slice_test0.out0 │ │ ├── strided_slice_test0.tflite │ │ ├── strided_slice_test1.inp0 │ │ ├── strided_slice_test1.out0 │ │ ├── strided_slice_test1.tflite │ │ ├── strided_slice_test2.inp0 │ │ ├── strided_slice_test2.out0 │ │ ├── strided_slice_test2.tflite │ │ ├── strided_slice_test3.inp0 │ │ ├── strided_slice_test3.out0 │ │ ├── strided_slice_test3.tflite │ │ ├── strided_slice_test4.inp0 │ │ ├── strided_slice_test4.out0 │ │ ├── strided_slice_test4.tflite │ │ ├── strided_slice_test5.inp0 │ │ ├── strided_slice_test5.out0 │ │ ├── strided_slice_test5.tflite │ │ ├── strided_slice_test6.inp0 │ │ ├── strided_slice_test6.out0 │ │ ├── strided_slice_test6.tflite │ │ ├── sub.inp0 │ │ ├── sub.inp1 │ │ ├── sub.out0 │ │ ├── sub.tflite │ │ ├── sub_broadcast.inp0 │ │ ├── sub_broadcast.inp1 │ │ ├── sub_broadcast.out0 │ │ ├── sub_broadcast.tflite │ │ ├── tanh.inp0 │ │ ├── tanh.out0 │ │ ├── tanh.tflite │ │ ├── tflite_detection_post_processing_boxes.bin │ │ ├── tflite_detection_post_processing_fast.tflite │ │ ├── tflite_detection_post_processing_regular.tflite │ │ ├── tflite_detection_post_processing_scores.bin │ │ ├── tile.inp0 │ │ ├── tile.out0 │ │ ├── tile.tflite │ │ ├── transpose.inp0 │ │ ├── transpose.out0 │ │ ├── transpose.tflite │ │ ├── unpack.inp0 │ │ ├── unpack.out0 │ │ ├── unpack.out1 │ │ ├── unpack.out2 │ │ └── unpack.tflite ├── run_outputcheck.sh ├── runtime_test │ ├── CMakeLists.txt │ ├── backendSpecificOpts.yaml │ ├── cpuConfigs.yaml │ └── heterogeneousConfigs.yaml ├── stress │ ├── CMakeLists.txt │ ├── ParameterSweepTest.cpp │ └── SparseLengthsSumTest.cpp ├── text-translator │ ├── en2gr_cpu_config_test.sh │ ├── en2gr_cpu_partition_test.sh │ ├── en2gr_cpu_test.sh │ └── en2gr_quantization_test.sh ├── unittests │ ├── BackendCorrectnessTest.cpp │ ├── BackendTest.cpp │ ├── BackendTestUtils.cpp │ ├── BackendTestUtils.h │ ├── BasicIRTest.cpp │ ├── BundleSaverTest.cpp │ ├── CMakeLists.txt │ ├── CPUJITTest.cpp │ ├── Caffe2ImporterTest.cpp │ ├── DeferredWeightLoaderTest.cpp │ ├── DeviceManagerTest.cpp │ ├── ErrorTest.cpp │ ├── Float16Test.cpp │ ├── FollyTest.cpp │ ├── GemmTest.cpp │ ├── GlowOnnxifiManagerTest.cpp │ ├── GradCheckTest.cpp │ ├── GraphGradTest.cpp │ ├── GraphOptzTest.cpp │ ├── GraphSchedulerTest.cpp │ ├── GraphTest.cpp │ ├── HabanaGlowTest.cpp │ ├── HabanaTest.cpp │ ├── HostManagerTest.cpp │ ├── HyphenTest.cpp │ ├── IROptTest.cpp │ ├── ImageLoaderTest.cpp │ ├── ImageTest.cpp │ ├── ImporterTestUtils.h │ ├── InputSanitizerTest.cpp │ ├── LLVMIRGenTest.cpp │ ├── LoaderTest.cpp │ ├── MLTest.cpp │ ├── MemoryAllocatorTest.cpp │ ├── MemoryAllocatorTestModels.txt │ ├── NNPIOptPipelineTest.cpp │ ├── NameScrambler.cpp │ ├── NodeSplittingTest.cpp │ ├── NumericsTest.cpp │ ├── OCLTest.cpp │ ├── OnnxExporterTest.cpp │ ├── OnnxImporterTest.cpp │ ├── OperatorGradTest.cpp │ ├── OperatorTest.cpp │ ├── PartitionerTest.cpp │ ├── PassManagerTest.cpp │ ├── ProvisionerTest.cpp │ ├── QuantizationTest.cpp │ ├── RecommendationSystemTest.cpp │ ├── Repro.cpp │ ├── StatsExporterTest.cpp │ ├── StrCheck.cpp │ ├── SupportTest.cpp │ ├── TFLiteImporterTest.cpp │ ├── TaggedListTest.cpp │ ├── TensorLayoutTest.cpp │ ├── TensorPoolTest.cpp │ ├── TensorsTest.cpp │ ├── TestMain.cpp │ ├── ThreadPoolExecutorTest.cpp │ ├── ThreadPoolTest.cpp │ ├── TraceEventsTest.cpp │ ├── TraceExporterTest.cpp │ ├── TypeAToTypeBFunctionConverterTest.cpp │ ├── UtilsTest.cpp │ └── test_libjit.cpp └── utils │ └── genNetwork.py ├── thirdparty ├── miniz-2.0.8 │ ├── ChangeLog.md │ ├── LICENSE │ ├── examples │ │ ├── example1.c │ │ ├── example2.c │ │ ├── example3.c │ │ ├── example4.c │ │ ├── example5.c │ │ └── example6.c │ ├── miniz.c │ ├── miniz.h │ └── readme.md └── tflite │ ├── Readme.md │ ├── flatbuffers │ ├── base.h │ ├── flatbuffers.h │ ├── flexbuffers.h │ ├── stl_emulation.h │ └── util.h │ └── schema_generated.h ├── tools ├── CMakeLists.txt ├── ClassGen │ ├── CMakeLists.txt │ ├── InstrBuilder.cpp │ ├── InstrBuilder.h │ ├── InstrGen.cpp │ ├── MemberType.cpp │ ├── MemberType.h │ ├── NodeBuilder.cpp │ ├── NodeBuilder.h │ └── NodeGen.cpp ├── Debugger │ ├── CMakeLists.txt │ ├── NetworkComparator.cpp │ ├── NetworkComparator.h │ └── network-debugger.cpp ├── IncludeBin │ ├── CMakeLists.txt │ └── IncludeBin.cpp ├── loader │ ├── CMakeLists.txt │ ├── ExecutorCore.cpp │ ├── ExecutorCore.h │ ├── ExecutorCoreHelperFunctions.cpp │ ├── ExecutorCoreHelperFunctions.h │ ├── ImageClassifier.cpp │ ├── Loader.cpp │ ├── Loader.h │ ├── LoaderUtils.cpp │ ├── LoaderUtils.h │ ├── ModelCompiler.cpp │ ├── ModelProfiler.cpp │ ├── ModelRunner.cpp │ ├── ModelTuner.cpp │ ├── ObjectDetector.cpp │ ├── TextTranslator.cpp │ └── XModelBuilder.cpp └── png2bin │ ├── CMakeLists.txt │ └── png2bin.cpp ├── torch_glow ├── examples │ ├── basic_example.py │ ├── profiling_executor_example.py │ └── resnet_example.py ├── setup.cfg ├── setup.py ├── src │ ├── CMakeLists.txt │ ├── CachingGraphRunner.cpp │ ├── CachingGraphRunner.h │ ├── CustomPyTorchOpLoader.cpp │ ├── CustomPyTorchOpLoader.h │ ├── FuseKnownPatterns.cpp │ ├── FuseKnownPatterns.h │ ├── GlowCompileSpec.cpp │ ├── GlowCompileSpec.h │ ├── GlowFuser.cpp │ ├── GlowFuser.h │ ├── GlowIValue.cpp │ ├── GlowIValue.h │ ├── InputMeta.cpp │ ├── InputMeta.h │ ├── PyTorchCommon.cpp │ ├── PyTorchCommon.h │ ├── PyTorchModelLoader.cpp │ ├── PyTorchModelLoader.h │ ├── Registration.cpp │ ├── Registration.h │ ├── ShapeInferenceEngine.cpp │ ├── ShapeInferenceEngine.h │ ├── TorchGlowBackend.cpp │ ├── TorchGlowBackend.h │ └── binding.cpp ├── tests │ ├── __init__.py │ ├── backends │ │ └── NNPI │ │ │ ├── model_serialization_test.py │ │ │ └── qconv_big_stride_small_kernel_test.py │ ├── conftest.py │ ├── functionality │ │ ├── __init__.py │ │ ├── blocklist_test.py │ │ ├── compilation_spec_test.py │ │ ├── conv_to_glow_test.py │ │ ├── fuse_necessary_getattrs_only.py │ │ ├── fuse_parallel_branches_test.py │ │ ├── fused_linear_test.py │ │ ├── input_spec_test.py │ │ ├── jit_vs_glow_path_test.py │ │ ├── load_backend_specific_options_test.py │ │ ├── max_fusion_merge_size_test.py │ │ ├── min_graph_size_test.py │ │ ├── only_tensor_outputs_test.py │ │ ├── print_jit_index_test.py │ │ ├── quantized_cut_in_the_middle_test.py │ │ ├── randomize_constants_test.py │ │ ├── remove_exceptions_test.py │ │ ├── set_glow_backend_test.py │ │ ├── shape_inference_test.py │ │ ├── to_glow_multiple_input_sets_test.py │ │ ├── to_glow_num_devices_to_use_test.py │ │ ├── to_glow_save_preprocessed_test.py │ │ ├── to_glow_selective_test.py │ │ ├── to_glow_tuple_output_test.py │ │ └── to_glow_write_to_onnx_test.py │ ├── nodes │ │ ├── Int_test.py │ │ ├── __init__.py │ │ ├── abs_test.py │ │ ├── adaptive_avg_pool2d_test.py │ │ ├── add_test.py │ │ ├── addmm_test.py │ │ ├── and_test.py │ │ ├── arange_test.py │ │ ├── arg_min_max_test.py │ │ ├── argsort_test.py │ │ ├── attention_test.py │ │ ├── avgpool1d_test.py │ │ ├── avgpool2d_test.py │ │ ├── avgpool3d_test.py │ │ ├── baddbmm_test.py │ │ ├── batch_permutation_test.py │ │ ├── batchnorm0d_test.py │ │ ├── batchnorm1d_test.py │ │ ├── batchnorm2d_test.py │ │ ├── batchnorm3d_test.py │ │ ├── bbox_transform_test.py │ │ ├── bitwise_and_test.py │ │ ├── bitwise_not_test.py │ │ ├── bitwise_or_test.py │ │ ├── bitwise_xor_test.py │ │ ├── bmm_test.py │ │ ├── cat_test.py │ │ ├── ceil_test.py │ │ ├── clamp_min_test.py │ │ ├── clamp_test.py │ │ ├── clone_test.py │ │ ├── cmp_test.py │ │ ├── constant_chunk_test.py │ │ ├── contiguous_test.py │ │ ├── conv2d_test.py │ │ ├── conv3d_test.py │ │ ├── conv_transpose2d_test.py │ │ ├── copy_test.py │ │ ├── cumsum_test.py │ │ ├── detach_test.py │ │ ├── div_test.py │ │ ├── dropout_test.py │ │ ├── dynamic_qlinear_test.py │ │ ├── embedding_bag_test.py │ │ ├── embedding_test.py │ │ ├── erf_test.py │ │ ├── exp_test.py │ │ ├── expand_as_test.py │ │ ├── expand_test.py │ │ ├── flatten_test.py │ │ ├── floor_div_test.py │ │ ├── floor_test.py │ │ ├── fmod_test.py │ │ ├── full_like_test.py │ │ ├── gather_test.py │ │ ├── gelu_test.py │ │ ├── getattr_test.py │ │ ├── iand_test.py │ │ ├── index_put_test.py │ │ ├── index_select_test.py │ │ ├── layernorm_test.py │ │ ├── leaky_relu_test.py │ │ ├── linear_test.py │ │ ├── log_softmax_test.py │ │ ├── log_test.py │ │ ├── logical_ops_test.py │ │ ├── lstm_test.py │ │ ├── masked_fill_test.py │ │ ├── matmul_test.py │ │ ├── max_test.py │ │ ├── maxpool2d_test.py │ │ ├── mean_test.py │ │ ├── min_test.py │ │ ├── mm_test.py │ │ ├── mul_test.py │ │ ├── norm_test.py │ │ ├── num_to_tensor_test.py │ │ ├── permute_test.py │ │ ├── pixel_shuffle_test.py │ │ ├── pixel_unshuffle_test.py │ │ ├── pow_test.py │ │ ├── prelu_test.py │ │ ├── quantized_add_relu_test.py │ │ ├── quantized_add_test.py │ │ ├── quantized_avgpool2d_test.py │ │ ├── quantized_avgpool3d_test.py │ │ ├── quantized_batchnorm2d_test.py │ │ ├── quantized_batchnorm3d_relu_test.py │ │ ├── quantized_batchnorm3d_test.py │ │ ├── quantized_cat_test.py │ │ ├── quantized_conv2d_relu_test.py │ │ ├── quantized_conv2d_test.py │ │ ├── quantized_conv3d_relu_test.py │ │ ├── quantized_conv3d_test.py │ │ ├── quantized_layernorm_test.py │ │ ├── quantized_leaky_relu_test.py │ │ ├── quantized_linear_test.py │ │ ├── quantized_maxpool_test.py │ │ ├── quantized_mul_test.py │ │ ├── quantized_relu_test.py │ │ ├── reciprocal_test.py │ │ ├── relu_test.py │ │ ├── repeat_test.py │ │ ├── reshape_test.py │ │ ├── roi_align_rotated_test.py │ │ ├── roi_align_test.py │ │ ├── rsub_test.py │ │ ├── select_test.py │ │ ├── shape_as_tensor_test.py │ │ ├── sigmoid_test.py │ │ ├── size_test.py │ │ ├── slice_test.py │ │ ├── softmax_test.py │ │ ├── softplus_test.py │ │ ├── split_test.py │ │ ├── sqrt_test.py │ │ ├── squeeze_test.py │ │ ├── stack_test.py │ │ ├── sub_test.py │ │ ├── sum_test.py │ │ ├── tanh_test.py │ │ ├── to_test.py │ │ ├── topk_test.py │ │ ├── transpose_test.py │ │ ├── trig_ops_test.py │ │ ├── typeas_test.py │ │ ├── unsqueeze_test.py │ │ ├── upsample_test.py │ │ ├── view_test.py │ │ └── zero_test.py │ ├── unittests │ │ ├── GlowIValueTests.cpp │ │ ├── NominalInputBatchIdxTests.cpp │ │ └── PyTorchCommonTests.cpp │ └── utils.py ├── torch_glow │ ├── __init__.py │ └── to_glow.py └── utils │ ├── __init__.py │ └── torchvision_fake │ ├── __init__.py │ ├── resnet.py │ └── transforms.py └── utils ├── build_llvm.sh ├── caffe2_model_runner.py ├── caffe2_pb_runner.py ├── caffe2_train_and_dump_pb.py ├── compilation_filter.py ├── decode_caffe2_protoc.sh ├── docker ├── Dockerfile ├── README.md └── build.sh ├── download_datasets_and_models.py ├── encode_caffe2_protoc.sh ├── export_onnx_model.py ├── format.sh ├── glow-trace-concat.sh ├── imagenet-process.py ├── imagenet_topk_accuracy_driver.py ├── install_protobuf.sh ├── license.sh ├── log_parser.py ├── s3put.sh ├── scripts ├── dce_caffe2_model.py ├── gen_caffe2_model.py ├── gen_onnx_gru_model.py ├── gen_onnx_lstm_model.py ├── gen_onnx_mfcc_model.py ├── gen_onnx_model.py ├── gen_onnx_rnn_model.py ├── gen_onnx_spectrogram_model.py ├── gen_tflite_models.py ├── plot_histogram.py └── visualize_allocations.py └── trace_parser.py /.ci/lenet_mnist_expected_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/.ci/lenet_mnist_expected_output.txt -------------------------------------------------------------------------------- /.ci/resnet50_expected_output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/.ci/resnet50_expected_output.txt -------------------------------------------------------------------------------- /.circleci/lsan_suppressions.txt: -------------------------------------------------------------------------------- 1 | leak:RegisterHandlers 2 | -------------------------------------------------------------------------------- /.circleci/run_coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/.circleci/run_coverage.sh -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.github/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/.github/build.sh -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/.github/test.sh -------------------------------------------------------------------------------- /.github/workflows/glow-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/.github/workflows/glow-build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/PULL_REQUEST.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/README.md -------------------------------------------------------------------------------- /cmake/modules/CMakeGraphVizOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/cmake/modules/CMakeGraphVizOptions.cmake -------------------------------------------------------------------------------- /cmake/modules/CoverageSupport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/cmake/modules/CoverageSupport.cmake -------------------------------------------------------------------------------- /cmake/modules/DoxygenSupport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/cmake/modules/DoxygenSupport.cmake -------------------------------------------------------------------------------- /cmake/modules/FindBackends.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/cmake/modules/FindBackends.cmake -------------------------------------------------------------------------------- /cmake/modules/Gflags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/cmake/modules/Gflags.cmake -------------------------------------------------------------------------------- /cmake/modules/Glog.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/cmake/modules/Glog.cmake -------------------------------------------------------------------------------- /cmake/modules/GlowAddLibjit.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/cmake/modules/GlowAddLibjit.cmake -------------------------------------------------------------------------------- /cmake/modules/GlowDefaults.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/cmake/modules/GlowDefaults.cmake -------------------------------------------------------------------------------- /cmake/modules/GlowExternalBackends.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/cmake/modules/GlowExternalBackends.cmake -------------------------------------------------------------------------------- /cmake/modules/GlowSerialize.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/cmake/modules/GlowSerialize.cmake -------------------------------------------------------------------------------- /cmake/modules/GlowTestSupport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/cmake/modules/GlowTestSupport.cmake -------------------------------------------------------------------------------- /cmake/modules/SanitizerSupport.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/cmake/modules/SanitizerSupport.cmake -------------------------------------------------------------------------------- /docs/3LevelIR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/3LevelIR.png -------------------------------------------------------------------------------- /docs/AOT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/AOT.md -------------------------------------------------------------------------------- /docs/Backends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/Backends.md -------------------------------------------------------------------------------- /docs/Block.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/Block.md -------------------------------------------------------------------------------- /docs/Building.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/Building.md -------------------------------------------------------------------------------- /docs/ClassGen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/ClassGen.md -------------------------------------------------------------------------------- /docs/CodingStandards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/CodingStandards.md -------------------------------------------------------------------------------- /docs/DAG_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/DAG_example.png -------------------------------------------------------------------------------- /docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/Doxyfile.in -------------------------------------------------------------------------------- /docs/ExternalBackend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/ExternalBackend.md -------------------------------------------------------------------------------- /docs/GlowWindowsBuildx86.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/GlowWindowsBuildx86.md -------------------------------------------------------------------------------- /docs/GraphOptimizationPipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/GraphOptimizationPipeline.md -------------------------------------------------------------------------------- /docs/HeterogeneousPartition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/HeterogeneousPartition.png -------------------------------------------------------------------------------- /docs/IR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/IR.md -------------------------------------------------------------------------------- /docs/InferenceEngines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/InferenceEngines.md -------------------------------------------------------------------------------- /docs/JIT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/JIT.md -------------------------------------------------------------------------------- /docs/LLVMDebugInstrumentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/LLVMDebugInstrumentation.md -------------------------------------------------------------------------------- /docs/Lexicon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/Lexicon.md -------------------------------------------------------------------------------- /docs/ModelLoader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/ModelLoader.md -------------------------------------------------------------------------------- /docs/ModelTuner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/ModelTuner.md -------------------------------------------------------------------------------- /docs/Network-Debugger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/Network-Debugger.md -------------------------------------------------------------------------------- /docs/NewBackendSpecificNode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/NewBackendSpecificNode.md -------------------------------------------------------------------------------- /docs/NewOperators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/NewOperators.md -------------------------------------------------------------------------------- /docs/NodeSplitting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/NodeSplitting.md -------------------------------------------------------------------------------- /docs/NodeSplitting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/NodeSplitting.png -------------------------------------------------------------------------------- /docs/Onnxifi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/Onnxifi.md -------------------------------------------------------------------------------- /docs/Optimizations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/Optimizations.md -------------------------------------------------------------------------------- /docs/Partitioner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/Partitioner.md -------------------------------------------------------------------------------- /docs/Quantization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/Quantization.md -------------------------------------------------------------------------------- /docs/Runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/Runtime.md -------------------------------------------------------------------------------- /docs/Serialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/Serialization.md -------------------------------------------------------------------------------- /docs/TensorLayout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/TensorLayout.md -------------------------------------------------------------------------------- /docs/Tensors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/Tensors.md -------------------------------------------------------------------------------- /docs/Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/Testing.md -------------------------------------------------------------------------------- /docs/Tracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/Tracing.md -------------------------------------------------------------------------------- /docs/XModelRunner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/XModelRunner.md -------------------------------------------------------------------------------- /docs/backend_dm_api.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/backend_dm_api.svg -------------------------------------------------------------------------------- /docs/chrome-tracing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/chrome-tracing.png -------------------------------------------------------------------------------- /docs/glow_runtime.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/glow_runtime.svg -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/logo.svg -------------------------------------------------------------------------------- /docs/mnist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/mnist.svg -------------------------------------------------------------------------------- /docs/module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/module.png -------------------------------------------------------------------------------- /docs/network_init.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/network_init.svg -------------------------------------------------------------------------------- /docs/network_run.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/network_run.svg -------------------------------------------------------------------------------- /docs/nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/nodes.png -------------------------------------------------------------------------------- /docs/partition1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/partition1.png -------------------------------------------------------------------------------- /docs/partition2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/partition2.png -------------------------------------------------------------------------------- /docs/partition3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/partition3.png -------------------------------------------------------------------------------- /docs/partners/bitmain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/partners/bitmain.png -------------------------------------------------------------------------------- /docs/partners/cadence.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/partners/cadence.png -------------------------------------------------------------------------------- /docs/partners/ceva.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/partners/ceva.png -------------------------------------------------------------------------------- /docs/partners/esperanto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/partners/esperanto.png -------------------------------------------------------------------------------- /docs/partners/habana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/partners/habana.png -------------------------------------------------------------------------------- /docs/partners/intel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/partners/intel.png -------------------------------------------------------------------------------- /docs/partners/marvell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/partners/marvell.png -------------------------------------------------------------------------------- /docs/partners/nxp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/partners/nxp.png -------------------------------------------------------------------------------- /docs/partners/st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/partners/st.png -------------------------------------------------------------------------------- /docs/partners/synopsys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/partners/synopsys.png -------------------------------------------------------------------------------- /docs/pred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/pred.png -------------------------------------------------------------------------------- /docs/pytorch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/pytorch.md -------------------------------------------------------------------------------- /docs/resnet50_quantized_subgraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/resnet50_quantized_subgraph.png -------------------------------------------------------------------------------- /docs/rowwise_quantized_fc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/rowwise_quantized_fc.png -------------------------------------------------------------------------------- /docs/tracing-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/docs/tracing-example.png -------------------------------------------------------------------------------- /examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/examples/CMakeLists.txt -------------------------------------------------------------------------------- /examples/bundles/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/examples/bundles/CMakeLists.txt -------------------------------------------------------------------------------- /examples/bundles/bundle_with_extra_objects/.gitignore: -------------------------------------------------------------------------------- 1 | !*.o 2 | 3 | -------------------------------------------------------------------------------- /examples/bundles/lenet_mnist/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/examples/bundles/lenet_mnist/main.cpp -------------------------------------------------------------------------------- /examples/bundles/resnet50/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/examples/bundles/resnet50/CMakeLists.txt -------------------------------------------------------------------------------- /examples/bundles/resnet50/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/examples/bundles/resnet50/main.cpp -------------------------------------------------------------------------------- /examples/char-rnn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/examples/char-rnn.cpp -------------------------------------------------------------------------------- /examples/cifar10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/examples/cifar10.cpp -------------------------------------------------------------------------------- /examples/fr2en.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/examples/fr2en.cpp -------------------------------------------------------------------------------- /examples/lenet-loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/examples/lenet-loader.cpp -------------------------------------------------------------------------------- /examples/mnist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/examples/mnist.cpp -------------------------------------------------------------------------------- /examples/ptb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/examples/ptb.cpp -------------------------------------------------------------------------------- /examples/resnet-runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/examples/resnet-runtime.cpp -------------------------------------------------------------------------------- /examples/resnet-verify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/examples/resnet-verify.cpp -------------------------------------------------------------------------------- /examples/tracing-compare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/examples/tracing-compare.cpp -------------------------------------------------------------------------------- /examples/training/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(resnet50) 2 | -------------------------------------------------------------------------------- /examples/training/resnet50/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/examples/training/resnet50/main.cpp -------------------------------------------------------------------------------- /externalbackends/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/externalbackends/README.txt -------------------------------------------------------------------------------- /include/glow/Backend/Backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Backend/Backend.h -------------------------------------------------------------------------------- /include/glow/Backend/BackendUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Backend/BackendUtils.h -------------------------------------------------------------------------------- /include/glow/Backend/BlockStreamBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Backend/BlockStreamBase.h -------------------------------------------------------------------------------- /include/glow/Backend/CompiledFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Backend/CompiledFunction.h -------------------------------------------------------------------------------- /include/glow/Backends/BackendOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Backends/BackendOptions.h -------------------------------------------------------------------------------- /include/glow/Backends/DeviceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Backends/DeviceManager.h -------------------------------------------------------------------------------- /include/glow/Backends/LayoutConverter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Backends/LayoutConverter.h -------------------------------------------------------------------------------- /include/glow/Base/DimType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Base/DimType.h -------------------------------------------------------------------------------- /include/glow/Base/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Base/IO.h -------------------------------------------------------------------------------- /include/glow/Base/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Base/Image.h -------------------------------------------------------------------------------- /include/glow/Base/SliceRange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Base/SliceRange.h -------------------------------------------------------------------------------- /include/glow/Base/TaggedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Base/TaggedList.h -------------------------------------------------------------------------------- /include/glow/Base/Tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Base/Tensor.h -------------------------------------------------------------------------------- /include/glow/Base/TensorSerialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Base/TensorSerialization.h -------------------------------------------------------------------------------- /include/glow/Base/Train.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Base/Train.h -------------------------------------------------------------------------------- /include/glow/Base/Traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Base/Traits.h -------------------------------------------------------------------------------- /include/glow/Base/Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Base/Type.h -------------------------------------------------------------------------------- /include/glow/CodeGen/MemoryAllocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/CodeGen/MemoryAllocator.h -------------------------------------------------------------------------------- /include/glow/Exporter/ONNXModelWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Exporter/ONNXModelWriter.h -------------------------------------------------------------------------------- /include/glow/Exporter/ProtobufWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Exporter/ProtobufWriter.h -------------------------------------------------------------------------------- /include/glow/Flags/Flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Flags/Flags.h -------------------------------------------------------------------------------- /include/glow/Graph/FXIRUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Graph/FXIRUtils.h -------------------------------------------------------------------------------- /include/glow/Graph/FXIRWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Graph/FXIRWrapper.h -------------------------------------------------------------------------------- /include/glow/Graph/Grad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Graph/Grad.h -------------------------------------------------------------------------------- /include/glow/Graph/Graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Graph/Graph.h -------------------------------------------------------------------------------- /include/glow/Graph/Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Graph/Hook.h -------------------------------------------------------------------------------- /include/glow/Graph/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Graph/Log.h -------------------------------------------------------------------------------- /include/glow/Graph/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Graph/Node.h -------------------------------------------------------------------------------- /include/glow/Graph/NodeValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Graph/NodeValue.h -------------------------------------------------------------------------------- /include/glow/Graph/Nodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Graph/Nodes.h -------------------------------------------------------------------------------- /include/glow/Graph/PlaceholderBindings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Graph/PlaceholderBindings.h -------------------------------------------------------------------------------- /include/glow/Graph/TensorLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Graph/TensorLayout.h -------------------------------------------------------------------------------- /include/glow/Graph/UseDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Graph/UseDef.h -------------------------------------------------------------------------------- /include/glow/Graph/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Graph/Utils.h -------------------------------------------------------------------------------- /include/glow/Graph/VerifierHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Graph/VerifierHelper.h -------------------------------------------------------------------------------- /include/glow/IR/IR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/IR/IR.h -------------------------------------------------------------------------------- /include/glow/IR/IRBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/IR/IRBuilder.h -------------------------------------------------------------------------------- /include/glow/IR/IRGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/IR/IRGen.h -------------------------------------------------------------------------------- /include/glow/IR/IRUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/IR/IRUtils.h -------------------------------------------------------------------------------- /include/glow/IR/Instrs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/IR/Instrs.h -------------------------------------------------------------------------------- /include/glow/IR/LLVMAPIMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/IR/LLVMAPIMacros.h -------------------------------------------------------------------------------- /include/glow/Importer/ONNXModelLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Importer/ONNXModelLoader.h -------------------------------------------------------------------------------- /include/glow/Importer/ProtobufLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Importer/ProtobufLoader.h -------------------------------------------------------------------------------- /include/glow/LLVMIRCodeGen/BundleSaver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/LLVMIRCodeGen/BundleSaver.h -------------------------------------------------------------------------------- /include/glow/LLVMIRCodeGen/CommandLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/LLVMIRCodeGen/CommandLine.h -------------------------------------------------------------------------------- /include/glow/LLVMIRCodeGen/GlowJIT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/LLVMIRCodeGen/GlowJIT.h -------------------------------------------------------------------------------- /include/glow/LLVMIRCodeGen/LLVMBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/LLVMIRCodeGen/LLVMBackend.h -------------------------------------------------------------------------------- /include/glow/LLVMIRCodeGen/LLVMIRGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/LLVMIRCodeGen/LLVMIRGen.h -------------------------------------------------------------------------------- /include/glow/Optimizer/Lower/Lower.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Optimizer/Lower/Lower.h -------------------------------------------------------------------------------- /include/glow/Partitioner/Partitioner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Partitioner/Partitioner.h -------------------------------------------------------------------------------- /include/glow/PassManager/Pass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/PassManager/Pass.h -------------------------------------------------------------------------------- /include/glow/PassManager/PassConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/PassManager/PassConfig.h -------------------------------------------------------------------------------- /include/glow/PassManager/PassManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/PassManager/PassManager.h -------------------------------------------------------------------------------- /include/glow/PassManager/Pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/PassManager/Pipeline.h -------------------------------------------------------------------------------- /include/glow/Quantization/Base/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Quantization/Base/Base.h -------------------------------------------------------------------------------- /include/glow/Quantization/Base/Profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Quantization/Base/Profile.h -------------------------------------------------------------------------------- /include/glow/Quantization/Quantization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Quantization/Quantization.h -------------------------------------------------------------------------------- /include/glow/Runtime/ErrorReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Runtime/ErrorReporter.h -------------------------------------------------------------------------------- /include/glow/Runtime/Executor/Executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Runtime/Executor/Executor.h -------------------------------------------------------------------------------- /include/glow/Runtime/InputSanitizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Runtime/InputSanitizer.h -------------------------------------------------------------------------------- /include/glow/Runtime/RequestData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Runtime/RequestData.h -------------------------------------------------------------------------------- /include/glow/Runtime/RuntimeTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Runtime/RuntimeTypes.h -------------------------------------------------------------------------------- /include/glow/Runtime/StatsExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Runtime/StatsExporter.h -------------------------------------------------------------------------------- /include/glow/Runtime/TraceExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Runtime/TraceExporter.h -------------------------------------------------------------------------------- /include/glow/Support/BFloat16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Support/BFloat16.h -------------------------------------------------------------------------------- /include/glow/Support/Compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Support/Compiler.h -------------------------------------------------------------------------------- /include/glow/Support/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Support/Debug.h -------------------------------------------------------------------------------- /include/glow/Support/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Support/Error.h -------------------------------------------------------------------------------- /include/glow/Support/Float16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Support/Float16.h -------------------------------------------------------------------------------- /include/glow/Support/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Support/Memory.h -------------------------------------------------------------------------------- /include/glow/Support/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Support/Random.h -------------------------------------------------------------------------------- /include/glow/Support/Register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Support/Register.h -------------------------------------------------------------------------------- /include/glow/Support/Support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Support/Support.h -------------------------------------------------------------------------------- /include/glow/Support/TensorPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Support/TensorPool.h -------------------------------------------------------------------------------- /include/glow/Support/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Support/ThreadPool.h -------------------------------------------------------------------------------- /include/glow/Support/ZipUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Support/ZipUtils.h -------------------------------------------------------------------------------- /include/glow/Testing/StrCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/include/glow/Testing/StrCheck.h -------------------------------------------------------------------------------- /lib/Backend/Backend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backend/Backend.cpp -------------------------------------------------------------------------------- /lib/Backend/BackendUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backend/BackendUtils.cpp -------------------------------------------------------------------------------- /lib/Backend/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backend/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Backend/CompiledFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backend/CompiledFunction.cpp -------------------------------------------------------------------------------- /lib/Backends/Backends.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/Backends.cpp -------------------------------------------------------------------------------- /lib/Backends/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Backends/CPU/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/CPU/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Backends/CPU/CPUBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/CPU/CPUBackend.cpp -------------------------------------------------------------------------------- /lib/Backends/CPU/CPUBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/CPU/CPUBackend.h -------------------------------------------------------------------------------- /lib/Backends/CPU/CPUDeviceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/CPU/CPUDeviceManager.cpp -------------------------------------------------------------------------------- /lib/Backends/CPU/CPUDeviceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/CPU/CPUDeviceManager.h -------------------------------------------------------------------------------- /lib/Backends/CPU/CPUFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/CPU/CPUFactory.cpp -------------------------------------------------------------------------------- /lib/Backends/CPU/CPUFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/CPU/CPUFunction.cpp -------------------------------------------------------------------------------- /lib/Backends/CPU/CPUFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/CPU/CPUFunction.h -------------------------------------------------------------------------------- /lib/Backends/CPU/CPULLVMIRGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/CPU/CPULLVMIRGen.cpp -------------------------------------------------------------------------------- /lib/Backends/CPU/CPULLVMIRGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/CPU/CPULLVMIRGen.h -------------------------------------------------------------------------------- /lib/Backends/CPU/ClassGen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/CPU/ClassGen/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Backends/CPU/Transforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/CPU/Transforms.cpp -------------------------------------------------------------------------------- /lib/Backends/CPU/libobj_cpu/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/CPU/libobj_cpu/Readme.md -------------------------------------------------------------------------------- /lib/Backends/CPU/tests/CPUMLTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/CPU/tests/CPUMLTest.cpp -------------------------------------------------------------------------------- /lib/Backends/DeviceManagers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/DeviceManagers.cpp -------------------------------------------------------------------------------- /lib/Backends/Habana/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/Habana/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Backends/Habana/Habana.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/Habana/Habana.cpp -------------------------------------------------------------------------------- /lib/Backends/Habana/Habana.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/Habana/Habana.h -------------------------------------------------------------------------------- /lib/Backends/Habana/HabanaFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/Habana/HabanaFactory.cpp -------------------------------------------------------------------------------- /lib/Backends/Habana/HabanaFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/Habana/HabanaFunction.cpp -------------------------------------------------------------------------------- /lib/Backends/Habana/HabanaFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/Habana/HabanaFunction.h -------------------------------------------------------------------------------- /lib/Backends/Habana/HabanaUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/Habana/HabanaUtils.cpp -------------------------------------------------------------------------------- /lib/Backends/Habana/HabanaUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/Habana/HabanaUtils.h -------------------------------------------------------------------------------- /lib/Backends/Interpreter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/Interpreter/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Backends/Interpreter/Interpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/Interpreter/Interpreter.cpp -------------------------------------------------------------------------------- /lib/Backends/NNPI/BlockStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/BlockStream.cpp -------------------------------------------------------------------------------- /lib/Backends/NNPI/BlockStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/BlockStream.h -------------------------------------------------------------------------------- /lib/Backends/NNPI/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Backends/NNPI/DebugMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/DebugMacros.h -------------------------------------------------------------------------------- /lib/Backends/NNPI/Importer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/Importer.cpp -------------------------------------------------------------------------------- /lib/Backends/NNPI/Importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/Importer.h -------------------------------------------------------------------------------- /lib/Backends/NNPI/InferenceContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/InferenceContext.cpp -------------------------------------------------------------------------------- /lib/Backends/NNPI/InferenceContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/InferenceContext.h -------------------------------------------------------------------------------- /lib/Backends/NNPI/InferencePool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/InferencePool.cpp -------------------------------------------------------------------------------- /lib/Backends/NNPI/InferencePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/InferencePool.h -------------------------------------------------------------------------------- /lib/Backends/NNPI/NNPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/NNPI.cpp -------------------------------------------------------------------------------- /lib/Backends/NNPI/NNPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/NNPI.h -------------------------------------------------------------------------------- /lib/Backends/NNPI/NNPIAdapterContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/NNPIAdapterContainer.h -------------------------------------------------------------------------------- /lib/Backends/NNPI/NNPICompiledFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/NNPICompiledFunction.h -------------------------------------------------------------------------------- /lib/Backends/NNPI/NNPIDeviceManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/NNPIDeviceManager.cpp -------------------------------------------------------------------------------- /lib/Backends/NNPI/NNPIDeviceManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/NNPIDeviceManager.h -------------------------------------------------------------------------------- /lib/Backends/NNPI/NNPIFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/NNPIFactory.cpp -------------------------------------------------------------------------------- /lib/Backends/NNPI/NNPIMLTraceWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/NNPIMLTraceWrapper.cpp -------------------------------------------------------------------------------- /lib/Backends/NNPI/NNPIMLTraceWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/NNPIMLTraceWrapper.h -------------------------------------------------------------------------------- /lib/Backends/NNPI/NNPIOptions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/NNPIOptions.cpp -------------------------------------------------------------------------------- /lib/Backends/NNPI/NNPIOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/NNPIOptions.h -------------------------------------------------------------------------------- /lib/Backends/NNPI/NNPIResource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/NNPIResource.cpp -------------------------------------------------------------------------------- /lib/Backends/NNPI/NNPIResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/NNPIResource.h -------------------------------------------------------------------------------- /lib/Backends/NNPI/NNPITracing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/NNPITracing.cpp -------------------------------------------------------------------------------- /lib/Backends/NNPI/NNPITracing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/NNPITracing.h -------------------------------------------------------------------------------- /lib/Backends/NNPI/NNPIUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/NNPIUtils.cpp -------------------------------------------------------------------------------- /lib/Backends/NNPI/NNPIUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/NNPIUtils.h -------------------------------------------------------------------------------- /lib/Backends/NNPI/NNPIUtils_AVX512.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/NNPIUtils_AVX512.cpp -------------------------------------------------------------------------------- /lib/Backends/NNPI/tests/NNPIMLTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/tests/NNPIMLTest.cpp -------------------------------------------------------------------------------- /lib/Backends/NNPI/tests/TestBlacklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/NNPI/tests/TestBlacklist.h -------------------------------------------------------------------------------- /lib/Backends/OpenCL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/OpenCL/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Backends/OpenCL/OpenCL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/OpenCL/OpenCL.cpp -------------------------------------------------------------------------------- /lib/Backends/OpenCL/OpenCL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/OpenCL/OpenCL.h -------------------------------------------------------------------------------- /lib/Backends/OpenCL/OpenCLFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/OpenCL/OpenCLFactory.cpp -------------------------------------------------------------------------------- /lib/Backends/OpenCL/OpenCLTensorLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/OpenCL/OpenCLTensorLayout.h -------------------------------------------------------------------------------- /lib/Backends/OpenCL/Transforms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/OpenCL/Transforms.cpp -------------------------------------------------------------------------------- /lib/Backends/OpenCL/kernels.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/OpenCL/kernels.cl -------------------------------------------------------------------------------- /lib/Backends/OpenCL/kernels_fwd_conv.cl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Backends/OpenCL/kernels_fwd_conv.cl -------------------------------------------------------------------------------- /lib/Base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Base/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Base/IO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Base/IO.cpp -------------------------------------------------------------------------------- /lib/Base/Image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Base/Image.cpp -------------------------------------------------------------------------------- /lib/Base/NumpyReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Base/NumpyReader.cpp -------------------------------------------------------------------------------- /lib/Base/TaggedList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Base/TaggedList.cpp -------------------------------------------------------------------------------- /lib/Base/Tensor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Base/Tensor.cpp -------------------------------------------------------------------------------- /lib/Base/TensorSerialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Base/TensorSerialization.cpp -------------------------------------------------------------------------------- /lib/Base/Type.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Base/Type.cpp -------------------------------------------------------------------------------- /lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/CMakeLists.txt -------------------------------------------------------------------------------- /lib/CodeGen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/CodeGen/CMakeLists.txt -------------------------------------------------------------------------------- /lib/CodeGen/MemoryAllocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/CodeGen/MemoryAllocator.cpp -------------------------------------------------------------------------------- /lib/Converter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Converter/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Converter/Float16Converter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Converter/Float16Converter.cpp -------------------------------------------------------------------------------- /lib/Converter/FunctionConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Converter/FunctionConverter.cpp -------------------------------------------------------------------------------- /lib/Converter/FusedRowwiseConverter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Converter/FusedRowwiseConverter.cpp -------------------------------------------------------------------------------- /lib/ExecutionContext/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/ExecutionContext/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ExecutionContext/TraceEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/ExecutionContext/TraceEvents.cpp -------------------------------------------------------------------------------- /lib/ExecutionEngine/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/ExecutionEngine/CMakeLists.txt -------------------------------------------------------------------------------- /lib/ExecutionEngine/ExecutionEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/ExecutionEngine/ExecutionEngine.cpp -------------------------------------------------------------------------------- /lib/Exporter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Exporter/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Exporter/ONNXModelWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Exporter/ONNXModelWriter.cpp -------------------------------------------------------------------------------- /lib/Exporter/ProtobufWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Exporter/ProtobufWriter.cpp -------------------------------------------------------------------------------- /lib/Flags/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Flags/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Flags/Flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Flags/Flags.cpp -------------------------------------------------------------------------------- /lib/Graph/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Graph/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Graph/FXIRUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Graph/FXIRUtils.cpp -------------------------------------------------------------------------------- /lib/Graph/FXIRWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Graph/FXIRWrapper.cpp -------------------------------------------------------------------------------- /lib/Graph/Grad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Graph/Grad.cpp -------------------------------------------------------------------------------- /lib/Graph/Graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Graph/Graph.cpp -------------------------------------------------------------------------------- /lib/Graph/Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Graph/Hook.cpp -------------------------------------------------------------------------------- /lib/Graph/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Graph/Log.cpp -------------------------------------------------------------------------------- /lib/Graph/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Graph/Node.cpp -------------------------------------------------------------------------------- /lib/Graph/NodeValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Graph/NodeValue.cpp -------------------------------------------------------------------------------- /lib/Graph/Nodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Graph/Nodes.cpp -------------------------------------------------------------------------------- /lib/Graph/PlaceholderBindings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Graph/PlaceholderBindings.cpp -------------------------------------------------------------------------------- /lib/Graph/TensorLayout.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Graph/TensorLayout.cpp -------------------------------------------------------------------------------- /lib/Graph/VerifierHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Graph/VerifierHelper.cpp -------------------------------------------------------------------------------- /lib/IR/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/IR/CMakeLists.txt -------------------------------------------------------------------------------- /lib/IR/ChildMemSizeBasedScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/IR/ChildMemSizeBasedScheduler.cpp -------------------------------------------------------------------------------- /lib/IR/GraphScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/IR/GraphScheduler.cpp -------------------------------------------------------------------------------- /lib/IR/GraphScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/IR/GraphScheduler.h -------------------------------------------------------------------------------- /lib/IR/IR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/IR/IR.cpp -------------------------------------------------------------------------------- /lib/IR/IRBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/IR/IRBuilder.cpp -------------------------------------------------------------------------------- /lib/IR/IRGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/IR/IRGen.cpp -------------------------------------------------------------------------------- /lib/IR/IRUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/IR/IRUtils.cpp -------------------------------------------------------------------------------- /lib/IR/Instrs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/IR/Instrs.cpp -------------------------------------------------------------------------------- /lib/IR/TopologicalSortBasedScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/IR/TopologicalSortBasedScheduler.cpp -------------------------------------------------------------------------------- /lib/Importer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Importer/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Importer/Caffe2ModelLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Importer/Caffe2ModelLoader.cpp -------------------------------------------------------------------------------- /lib/Importer/ONNXIFIModelLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Importer/ONNXIFIModelLoader.cpp -------------------------------------------------------------------------------- /lib/Importer/ONNXModelLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Importer/ONNXModelLoader.cpp -------------------------------------------------------------------------------- /lib/Importer/ProtobufLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Importer/ProtobufLoader.cpp -------------------------------------------------------------------------------- /lib/Importer/TFLiteModelLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Importer/TFLiteModelLoader.cpp -------------------------------------------------------------------------------- /lib/Importer/caffe2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Importer/caffe2.proto -------------------------------------------------------------------------------- /lib/LLVMIRCodeGen/AllocationsInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/LLVMIRCodeGen/AllocationsInfo.cpp -------------------------------------------------------------------------------- /lib/LLVMIRCodeGen/BundleSaver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/LLVMIRCodeGen/BundleSaver.cpp -------------------------------------------------------------------------------- /lib/LLVMIRCodeGen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/LLVMIRCodeGen/CMakeLists.txt -------------------------------------------------------------------------------- /lib/LLVMIRCodeGen/CommandLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/LLVMIRCodeGen/CommandLine.cpp -------------------------------------------------------------------------------- /lib/LLVMIRCodeGen/DebugInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/LLVMIRCodeGen/DebugInfo.cpp -------------------------------------------------------------------------------- /lib/LLVMIRCodeGen/GlowJIT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/LLVMIRCodeGen/GlowJIT.cpp -------------------------------------------------------------------------------- /lib/LLVMIRCodeGen/JITFilePrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/LLVMIRCodeGen/JITFilePrinter.cpp -------------------------------------------------------------------------------- /lib/LLVMIRCodeGen/LLVMBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/LLVMIRCodeGen/LLVMBackend.cpp -------------------------------------------------------------------------------- /lib/LLVMIRCodeGen/LLVMIRGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/LLVMIRCodeGen/LLVMIRGen.cpp -------------------------------------------------------------------------------- /lib/LLVMIRCodeGen/Pipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/LLVMIRCodeGen/Pipeline.cpp -------------------------------------------------------------------------------- /lib/LLVMIRCodeGen/libjit/libjit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/LLVMIRCodeGen/libjit/libjit.cpp -------------------------------------------------------------------------------- /lib/LLVMIRCodeGen/libjit/libjit_conv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/LLVMIRCodeGen/libjit/libjit_conv.cpp -------------------------------------------------------------------------------- /lib/LLVMIRCodeGen/libjit/libjit_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/LLVMIRCodeGen/libjit/libjit_defs.h -------------------------------------------------------------------------------- /lib/LLVMIRCodeGen/libjit/libjit_dim_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/LLVMIRCodeGen/libjit/libjit_dim_t.h -------------------------------------------------------------------------------- /lib/Onnxifi/Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Onnxifi/Base.cpp -------------------------------------------------------------------------------- /lib/Onnxifi/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Onnxifi/Base.h -------------------------------------------------------------------------------- /lib/Onnxifi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Onnxifi/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Onnxifi/GlowOnnxifiManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Onnxifi/GlowOnnxifiManager.cpp -------------------------------------------------------------------------------- /lib/Onnxifi/GlowOnnxifiManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Onnxifi/GlowOnnxifiManager.h -------------------------------------------------------------------------------- /lib/Onnxifi/HostManagerOnnxifi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Onnxifi/HostManagerOnnxifi.cpp -------------------------------------------------------------------------------- /lib/Onnxifi/HostManagerOnnxifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Onnxifi/HostManagerOnnxifi.h -------------------------------------------------------------------------------- /lib/Onnxifi/InlineOnnxifi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Onnxifi/InlineOnnxifi.cpp -------------------------------------------------------------------------------- /lib/Onnxifi/InlineOnnxifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Onnxifi/InlineOnnxifi.h -------------------------------------------------------------------------------- /lib/Onnxifi/onnxifiGlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Onnxifi/onnxifiGlow.cpp -------------------------------------------------------------------------------- /lib/Optimizer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Optimizer/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Optimizer/GraphOptimizer/Lower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Optimizer/GraphOptimizer/Lower.cpp -------------------------------------------------------------------------------- /lib/Optimizer/IROptimizer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Optimizer/IROptimizer/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Optimizer/Lower/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Optimizer/Lower/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Optimizer/Lower/Lower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Optimizer/Lower/Lower.cpp -------------------------------------------------------------------------------- /lib/Partitioner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Partitioner/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Partitioner/Partitioner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Partitioner/Partitioner.cpp -------------------------------------------------------------------------------- /lib/Partitioner/PartitionerBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Partitioner/PartitionerBase.cpp -------------------------------------------------------------------------------- /lib/Partitioner/PartitionerOptimizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Partitioner/PartitionerOptimizer.cpp -------------------------------------------------------------------------------- /lib/Partitioner/PartitionerUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Partitioner/PartitionerUtils.cpp -------------------------------------------------------------------------------- /lib/PassManager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/PassManager/CMakeLists.txt -------------------------------------------------------------------------------- /lib/PassManager/PassConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/PassManager/PassConfig.cpp -------------------------------------------------------------------------------- /lib/PassManager/PassManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/PassManager/PassManager.cpp -------------------------------------------------------------------------------- /lib/PassManager/PassPipeline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/PassManager/PassPipeline.cpp -------------------------------------------------------------------------------- /lib/Quantization/Base/Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Quantization/Base/Base.cpp -------------------------------------------------------------------------------- /lib/Quantization/Base/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Quantization/Base/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Quantization/Base/Calibration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Quantization/Base/Calibration.cpp -------------------------------------------------------------------------------- /lib/Quantization/Base/Profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Quantization/Base/Profile.cpp -------------------------------------------------------------------------------- /lib/Quantization/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Quantization/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Quantization/Quantization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Quantization/Quantization.cpp -------------------------------------------------------------------------------- /lib/Quantization/Serialization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Quantization/Serialization.cpp -------------------------------------------------------------------------------- /lib/Runtime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Runtime/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Runtime/DeferredWeightLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Runtime/DeferredWeightLoader.cpp -------------------------------------------------------------------------------- /lib/Runtime/DeviceHealthMonitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Runtime/DeviceHealthMonitor.cpp -------------------------------------------------------------------------------- /lib/Runtime/ErrorReporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Runtime/ErrorReporter.cpp -------------------------------------------------------------------------------- /lib/Runtime/Executor/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Runtime/Executor/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Runtime/HostManager/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Runtime/HostManager/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Runtime/HostManager/HostManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Runtime/HostManager/HostManager.cpp -------------------------------------------------------------------------------- /lib/Runtime/InputSanitizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Runtime/InputSanitizer.cpp -------------------------------------------------------------------------------- /lib/Runtime/Provisioner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Runtime/Provisioner/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Runtime/Provisioner/Provisioner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Runtime/Provisioner/Provisioner.cpp -------------------------------------------------------------------------------- /lib/Runtime/StatsExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Runtime/StatsExporter.cpp -------------------------------------------------------------------------------- /lib/Runtime/TraceExporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Runtime/TraceExporter.cpp -------------------------------------------------------------------------------- /lib/Support/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Support/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Support/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Support/Debug.cpp -------------------------------------------------------------------------------- /lib/Support/Error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Support/Error.cpp -------------------------------------------------------------------------------- /lib/Support/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Support/Random.cpp -------------------------------------------------------------------------------- /lib/Support/Support.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Support/Support.cpp -------------------------------------------------------------------------------- /lib/Support/TensorPool/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Support/TensorPool/CMakeLists.txt -------------------------------------------------------------------------------- /lib/Support/TensorPool/TensorPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Support/TensorPool/TensorPool.cpp -------------------------------------------------------------------------------- /lib/Support/ThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Support/ThreadPool.cpp -------------------------------------------------------------------------------- /lib/Support/ZipUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/lib/Support/ZipUtils.cpp -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Testing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/Testing/CMakeLists.txt -------------------------------------------------------------------------------- /tests/Testing/StrCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/Testing/StrCheck.cpp -------------------------------------------------------------------------------- /tests/benchmark/AddBench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/benchmark/AddBench.cpp -------------------------------------------------------------------------------- /tests/benchmark/BERTProxyLayerBench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/benchmark/BERTProxyLayerBench.cpp -------------------------------------------------------------------------------- /tests/benchmark/BatchGemmBench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/benchmark/BatchGemmBench.cpp -------------------------------------------------------------------------------- /tests/benchmark/Bench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/benchmark/Bench.h -------------------------------------------------------------------------------- /tests/benchmark/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/benchmark/CMakeLists.txt -------------------------------------------------------------------------------- /tests/benchmark/CommonSLSEB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/benchmark/CommonSLSEB.h -------------------------------------------------------------------------------- /tests/benchmark/ConcatBench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/benchmark/ConcatBench.cpp -------------------------------------------------------------------------------- /tests/benchmark/ConvBench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/benchmark/ConvBench.cpp -------------------------------------------------------------------------------- /tests/benchmark/ConvUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/benchmark/ConvUtils.h -------------------------------------------------------------------------------- /tests/benchmark/EmbeddingBagBench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/benchmark/EmbeddingBagBench.cpp -------------------------------------------------------------------------------- /tests/benchmark/GatherBench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/benchmark/GatherBench.cpp -------------------------------------------------------------------------------- /tests/benchmark/GemmBench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/benchmark/GemmBench.cpp -------------------------------------------------------------------------------- /tests/benchmark/GemmParallelBench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/benchmark/GemmParallelBench.cpp -------------------------------------------------------------------------------- /tests/benchmark/Int8GemmBench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/benchmark/Int8GemmBench.cpp -------------------------------------------------------------------------------- /tests/benchmark/Int8GemmBench.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/benchmark/Int8GemmBench.h -------------------------------------------------------------------------------- /tests/benchmark/ResNetBench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/benchmark/ResNetBench.cpp -------------------------------------------------------------------------------- /tests/benchmark/RuntimeBench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/benchmark/RuntimeBench.cpp -------------------------------------------------------------------------------- /tests/benchmark/SLSBench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/benchmark/SLSBench.cpp -------------------------------------------------------------------------------- /tests/benchmark/TBEBench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/benchmark/TBEBench.cpp -------------------------------------------------------------------------------- /tests/benchmark/TransposeBench.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/benchmark/TransposeBench.cpp -------------------------------------------------------------------------------- /tests/images/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/CMakeLists.txt -------------------------------------------------------------------------------- /tests/images/EmotionSampleImages/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/EmotionSampleImages/README -------------------------------------------------------------------------------- /tests/images/imagenet/cat_285.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/imagenet/cat_285.png -------------------------------------------------------------------------------- /tests/images/imagenet/dog_207.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/imagenet/dog_207.png -------------------------------------------------------------------------------- /tests/images/imagenet/zebra_340.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/imagenet/zebra_340.png -------------------------------------------------------------------------------- /tests/images/mnist/0_1009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/mnist/0_1009.png -------------------------------------------------------------------------------- /tests/images/mnist/1_1008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/mnist/1_1008.png -------------------------------------------------------------------------------- /tests/images/mnist/2_1065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/mnist/2_1065.png -------------------------------------------------------------------------------- /tests/images/mnist/3_1020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/mnist/3_1020.png -------------------------------------------------------------------------------- /tests/images/mnist/4_1059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/mnist/4_1059.png -------------------------------------------------------------------------------- /tests/images/mnist/5_1087.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/mnist/5_1087.png -------------------------------------------------------------------------------- /tests/images/mnist/6_1099.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/mnist/6_1099.png -------------------------------------------------------------------------------- /tests/images/mnist/7_1055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/mnist/7_1055.png -------------------------------------------------------------------------------- /tests/images/mnist/8_1026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/mnist/8_1026.png -------------------------------------------------------------------------------- /tests/images/mnist/9_1088.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/mnist/9_1088.png -------------------------------------------------------------------------------- /tests/images/npy/cat_285_i8_224.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/cat_285_i8_224.npy -------------------------------------------------------------------------------- /tests/images/npy/cat_285_u8_224.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/cat_285_u8_224.npy -------------------------------------------------------------------------------- /tests/images/npy/input1List_3D.txt: -------------------------------------------------------------------------------- 1 | tests/images/npy/tensor_1x2x4_u8.npy 2 | -------------------------------------------------------------------------------- /tests/images/npy/input1List_3D_f32.txt: -------------------------------------------------------------------------------- 1 | tests/images/npy/tensor_1x2x4_f32.npy 2 | -------------------------------------------------------------------------------- /tests/images/npy/input1List_3D_f32_2.txt: -------------------------------------------------------------------------------- 1 | tests/images/npy/tensor_1x2x4_f32_2.npy 2 | -------------------------------------------------------------------------------- /tests/images/npy/input1List_3D_i16.txt: -------------------------------------------------------------------------------- 1 | tests/images/npy/tensor_1x2x4_i16.npy 2 | -------------------------------------------------------------------------------- /tests/images/npy/input1List_3D_u16.txt: -------------------------------------------------------------------------------- 1 | tests/images/npy/tensor_1x2x4_u16.npy 2 | 3 | -------------------------------------------------------------------------------- /tests/images/npy/input1List_4D.txt: -------------------------------------------------------------------------------- 1 | tests/images/npy/tensor_1x2x4x4_u8.npy 2 | -------------------------------------------------------------------------------- /tests/images/npy/input2List_3D.txt: -------------------------------------------------------------------------------- 1 | tests/images/npy/tensor_1x2x4_u8.npy 2 | -------------------------------------------------------------------------------- /tests/images/npy/input2List_3D_2.txt: -------------------------------------------------------------------------------- 1 | tests/images/npy/tensor_2x4x4_u8.npy 2 | -------------------------------------------------------------------------------- /tests/images/npy/input2List_3D_f32.txt: -------------------------------------------------------------------------------- 1 | tests/images/npy/tensor_1x2x4_f32.npy 2 | -------------------------------------------------------------------------------- /tests/images/npy/input2List_3D_f32_2.txt: -------------------------------------------------------------------------------- 1 | tests/images/npy/tensor_1x2x4_f32_2.npy 2 | -------------------------------------------------------------------------------- /tests/images/npy/input2List_3D_i16.txt: -------------------------------------------------------------------------------- 1 | tests/images/npy/tensor_1x2x4_i16_2.npy 2 | -------------------------------------------------------------------------------- /tests/images/npy/input2List_3D_u16.txt: -------------------------------------------------------------------------------- 1 | tests/images/npy/tensor_1x2x4_u16.npy 2 | 3 | -------------------------------------------------------------------------------- /tests/images/npy/input2List_4D.txt: -------------------------------------------------------------------------------- 1 | tests/images/npy/tensor_1x2x4x4_u8.npy 2 | -------------------------------------------------------------------------------- /tests/images/npy/tensor10_i64.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor10_i64.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor16_i16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor16_i16.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor16_u16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor16_u16.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor1x2x3x8_u8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor1x2x3x8_u8.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor1x4x2x2_u8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor1x4x2x2_u8.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor1x4x2x2x3_f32.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor1x4x2x2x3_f32.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor2x3x8_u8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor2x3x8_u8.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor3x16_u8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor3x16_u8.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor3x4x2_i8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor3x4x2_i8.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor3x4x2_u32.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor3x4x2_u32.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor3x4x2_u8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor3x4x2_u8.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor3x4x2x2_i8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor3x4x2x2_i8.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor3x4x2x2_u16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor3x4x2x2_u16.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor3x4x2x2_u8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor3x4x2x2_u8.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor48_i8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor48_i8.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor48_u8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor48_u8.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor_1x2x4_f32.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor_1x2x4_f32.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor_1x2x4_f32_2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor_1x2x4_f32_2.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor_1x2x4_i16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor_1x2x4_i16.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor_1x2x4_i16_2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor_1x2x4_i16_2.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor_1x2x4_u16.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor_1x2x4_u16.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor_1x2x4_u8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor_1x2x4_u8.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor_1x2x4x4_u8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor_1x2x4x4_u8.npy -------------------------------------------------------------------------------- /tests/images/npy/tensor_2x4x4_u8.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/npy/tensor_2x4x4_u8.npy -------------------------------------------------------------------------------- /tests/images/other/corrupt_dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/other/corrupt_dog.png -------------------------------------------------------------------------------- /tests/images/other/tensor_2x4x3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/other/tensor_2x4x3.png -------------------------------------------------------------------------------- /tests/images/other/vga_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/other/vga_image.png -------------------------------------------------------------------------------- /tests/images/ppm/cat_285.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/ppm/cat_285.ppm -------------------------------------------------------------------------------- /tests/images/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/images/run.sh -------------------------------------------------------------------------------- /tests/models/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/CMakeLists.txt -------------------------------------------------------------------------------- /tests/models/caffe2Models/argmin.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/caffe2Models/argmin.pbtxt -------------------------------------------------------------------------------- /tests/models/caffe2Models/dropout.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/caffe2Models/dropout.pbtxt -------------------------------------------------------------------------------- /tests/models/caffe2Models/empty_init_net.pbtxt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models/caffe2Models/gelu.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/caffe2Models/gelu.pbtxt -------------------------------------------------------------------------------- /tests/models/caffe2Models/init_net.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/caffe2Models/init_net.pbtxt -------------------------------------------------------------------------------- /tests/models/caffe2Models/log1p.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/caffe2Models/log1p.pbtxt -------------------------------------------------------------------------------- /tests/models/caffe2Models/negative.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/caffe2Models/negative.pbtxt -------------------------------------------------------------------------------- /tests/models/caffe2Models/prelu.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/caffe2Models/prelu.pbtxt -------------------------------------------------------------------------------- /tests/models/caffe2Models/rmsnorm.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/caffe2Models/rmsnorm.pbtxt -------------------------------------------------------------------------------- /tests/models/caffe2Models/scale.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/caffe2Models/scale.pbtxt -------------------------------------------------------------------------------- /tests/models/caffe2Models/sigmoid.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/caffe2Models/sigmoid.pbtxt -------------------------------------------------------------------------------- /tests/models/caffe2Models/sign.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/caffe2Models/sign.pbtxt -------------------------------------------------------------------------------- /tests/models/caffe2Models/softplus.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/caffe2Models/softplus.pbtxt -------------------------------------------------------------------------------- /tests/models/caffe2Models/topk_k2.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/caffe2Models/topk_k2.pbtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/Acos.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/Acos.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/Asin.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/Asin.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/Atan.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/Atan.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/CmpLTE.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/CmpLTE.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/Cos.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/Cos.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/Equal.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/Equal.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/Erf.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/Erf.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/Less.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/Less.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/MatMul4D.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/MatMul4D.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/Mean.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/Mean.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/NonZero.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/NonZero.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/Sin.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/Sin.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/TopK.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/TopK.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/Where.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/Where.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/abs.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/abs.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/ceil.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/ceil.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/clip.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/clip.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/clipv11.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/clipv11.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/constant.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/constant.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/conv1D.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/conv1D.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/cumsum.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/cumsum.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/dimParam.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/dimParam.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/exp.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/exp.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/floor.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/floor.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/gather.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/gather.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/gatherND.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/gatherND.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/gemmNoC.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/gemmNoC.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/if_false.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/if_false.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/if_true.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/if_true.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/instNorm.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/instNorm.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/log.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/log.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/matmul.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/matmul.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/neg.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/neg.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/padEdge.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/padEdge.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/shape.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/shape.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/sign.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/sign.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/sum1.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/sum1.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/sumN.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/sumN.onnxtxt -------------------------------------------------------------------------------- /tests/models/onnxModels/tile.onnxtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/onnxModels/tile.onnxtxt -------------------------------------------------------------------------------- /tests/models/pytorchModels/resnet18.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/pytorchModels/resnet18.pt -------------------------------------------------------------------------------- /tests/models/tfliteModels/abs.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/abs.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/abs.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/abs.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/abs.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/abs.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/add.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/add.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/add.inp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/add.inp1 -------------------------------------------------------------------------------- /tests/models/tfliteModels/add.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/add.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/add.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/add.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/arg_max.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/arg_max.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/arg_max.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/arg_max.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/arg_max.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/arg_max.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/arg_min.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/arg_min.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/arg_min.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/arg_min.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/arg_min.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/arg_min.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/ceil.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/ceil.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/ceil.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/ceil.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/ceil.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/ceil.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/concat.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/concat.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/concat.inp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/concat.inp1 -------------------------------------------------------------------------------- /tests/models/tfliteModels/concat.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/concat.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/concat.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/concat.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/cos.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/cos.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/cos.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/cos.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/cos.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/cos.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/div.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/div.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/div.inp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/div.inp1 -------------------------------------------------------------------------------- /tests/models/tfliteModels/div.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/div.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/div.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/div.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/equal.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/equal.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/equal.inp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/equal.inp1 -------------------------------------------------------------------------------- /tests/models/tfliteModels/equal.out0: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/models/tfliteModels/equal.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/equal.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/exp.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/exp.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/exp.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/exp.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/exp.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/exp.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/floor.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/floor.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/floor.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/floor.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/floor.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/floor.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/gather_nd.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/gather_nd.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/gather_nd.inp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/gather_nd.inp1 -------------------------------------------------------------------------------- /tests/models/tfliteModels/gather_nd.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/gather_nd.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/greater.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/greater.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/greater.inp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/greater.inp1 -------------------------------------------------------------------------------- /tests/models/tfliteModels/greater.out0: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/models/tfliteModels/greater.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/greater.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/greater_equal.out0: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/models/tfliteModels/hardSwish.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/hardSwish.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/hardSwish.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/hardSwish.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/less.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/less.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/less.inp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/less.inp1 -------------------------------------------------------------------------------- /tests/models/tfliteModels/less.out0: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/models/tfliteModels/less.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/less.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/less_equal.out0: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/models/tfliteModels/log.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/log.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/log.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/log.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/log.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/log.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/logical_and.inp0: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/models/tfliteModels/logical_and.inp1: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/models/tfliteModels/logical_and.out0: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/models/tfliteModels/logical_not.inp0: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/models/tfliteModels/logical_not.out0: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/models/tfliteModels/logical_or.inp0: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/models/tfliteModels/logical_or.inp1: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/models/tfliteModels/logical_or.out0: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/models/tfliteModels/max.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/max.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/max.inp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/max.inp1 -------------------------------------------------------------------------------- /tests/models/tfliteModels/max.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/max.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/max.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/max.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/min.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/min.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/min.inp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/min.inp1 -------------------------------------------------------------------------------- /tests/models/tfliteModels/min.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/min.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/min.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/min.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/mul.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/mul.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/mul.inp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/mul.inp1 -------------------------------------------------------------------------------- /tests/models/tfliteModels/mul.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/mul.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/mul.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/mul.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/neg.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/neg.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/neg.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/neg.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/neg.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/neg.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/not_equal.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/not_equal.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/not_equal.inp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/not_equal.inp1 -------------------------------------------------------------------------------- /tests/models/tfliteModels/not_equal.out0: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/models/tfliteModels/pack.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/pack.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/pack.inp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/pack.inp1 -------------------------------------------------------------------------------- /tests/models/tfliteModels/pack.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/pack.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/pack.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/pack.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/pad.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/pad.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/pad.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/pad.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/pad.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/pad.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/pow.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/pow.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/pow.inp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/pow.inp1 -------------------------------------------------------------------------------- /tests/models/tfliteModels/pow.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/pow.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/pow.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/pow.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/prelu.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/prelu.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/prelu.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/prelu.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/prelu.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/prelu.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/relu.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/relu.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/relu.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/relu.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/relu.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/relu.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/relu6.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/relu6.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/relu6.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/relu6.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/relu6.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/relu6.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/reshape.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/reshape.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/reshape.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/reshape.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/reshape.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/reshape.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/round.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/round.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/round.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/round.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/round.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/round.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/rsqrt.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/rsqrt.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/rsqrt.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/rsqrt.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/rsqrt.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/rsqrt.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/select.inp0: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /tests/models/tfliteModels/select.inp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/select.inp1 -------------------------------------------------------------------------------- /tests/models/tfliteModels/select.inp2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/select.inp2 -------------------------------------------------------------------------------- /tests/models/tfliteModels/select.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/select.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/select.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/select.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/sigmoid.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/sigmoid.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/sigmoid.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/sigmoid.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/sin.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/sin.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/sin.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/sin.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/sin.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/sin.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/slice.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/slice.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/slice.out0: -------------------------------------------------------------------------------- 1 | QY%? -------------------------------------------------------------------------------- /tests/models/tfliteModels/slice_neg_size.out0: -------------------------------------------------------------------------------- 1 | QY%? -------------------------------------------------------------------------------- /tests/models/tfliteModels/split.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/split.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/split.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/split.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/split.out1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/split.out1 -------------------------------------------------------------------------------- /tests/models/tfliteModels/split.out2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/split.out2 -------------------------------------------------------------------------------- /tests/models/tfliteModels/sqrt.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/sqrt.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/sqrt.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/sqrt.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/sqrt.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/sqrt.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/square.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/square.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/square.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/square.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/strided_slice_test0.out0: -------------------------------------------------------------------------------- 1 |  ? -------------------------------------------------------------------------------- /tests/models/tfliteModels/sub.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/sub.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/sub.inp1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/sub.inp1 -------------------------------------------------------------------------------- /tests/models/tfliteModels/sub.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/sub.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/sub.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/sub.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/tanh.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/tanh.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/tanh.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/tanh.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/tanh.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/tanh.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/tile.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/tile.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/tile.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/tile.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/tile.tflite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/tile.tflite -------------------------------------------------------------------------------- /tests/models/tfliteModels/unpack.inp0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/unpack.inp0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/unpack.out0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/unpack.out0 -------------------------------------------------------------------------------- /tests/models/tfliteModels/unpack.out1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/unpack.out1 -------------------------------------------------------------------------------- /tests/models/tfliteModels/unpack.out2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/models/tfliteModels/unpack.out2 -------------------------------------------------------------------------------- /tests/run_outputcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/run_outputcheck.sh -------------------------------------------------------------------------------- /tests/runtime_test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/runtime_test/CMakeLists.txt -------------------------------------------------------------------------------- /tests/runtime_test/cpuConfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/runtime_test/cpuConfigs.yaml -------------------------------------------------------------------------------- /tests/stress/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/stress/CMakeLists.txt -------------------------------------------------------------------------------- /tests/stress/ParameterSweepTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/stress/ParameterSweepTest.cpp -------------------------------------------------------------------------------- /tests/stress/SparseLengthsSumTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/stress/SparseLengthsSumTest.cpp -------------------------------------------------------------------------------- /tests/unittests/BackendTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/BackendTest.cpp -------------------------------------------------------------------------------- /tests/unittests/BackendTestUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/BackendTestUtils.cpp -------------------------------------------------------------------------------- /tests/unittests/BackendTestUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/BackendTestUtils.h -------------------------------------------------------------------------------- /tests/unittests/BasicIRTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/BasicIRTest.cpp -------------------------------------------------------------------------------- /tests/unittests/BundleSaverTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/BundleSaverTest.cpp -------------------------------------------------------------------------------- /tests/unittests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/unittests/CPUJITTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/CPUJITTest.cpp -------------------------------------------------------------------------------- /tests/unittests/DeviceManagerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/DeviceManagerTest.cpp -------------------------------------------------------------------------------- /tests/unittests/ErrorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/ErrorTest.cpp -------------------------------------------------------------------------------- /tests/unittests/Float16Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/Float16Test.cpp -------------------------------------------------------------------------------- /tests/unittests/FollyTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/FollyTest.cpp -------------------------------------------------------------------------------- /tests/unittests/GemmTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/GemmTest.cpp -------------------------------------------------------------------------------- /tests/unittests/GradCheckTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/GradCheckTest.cpp -------------------------------------------------------------------------------- /tests/unittests/GraphGradTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/GraphGradTest.cpp -------------------------------------------------------------------------------- /tests/unittests/GraphOptzTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/GraphOptzTest.cpp -------------------------------------------------------------------------------- /tests/unittests/GraphTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/GraphTest.cpp -------------------------------------------------------------------------------- /tests/unittests/HabanaGlowTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/HabanaGlowTest.cpp -------------------------------------------------------------------------------- /tests/unittests/HabanaTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/HabanaTest.cpp -------------------------------------------------------------------------------- /tests/unittests/HostManagerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/HostManagerTest.cpp -------------------------------------------------------------------------------- /tests/unittests/HyphenTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/HyphenTest.cpp -------------------------------------------------------------------------------- /tests/unittests/IROptTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/IROptTest.cpp -------------------------------------------------------------------------------- /tests/unittests/ImageLoaderTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/ImageLoaderTest.cpp -------------------------------------------------------------------------------- /tests/unittests/ImageTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/ImageTest.cpp -------------------------------------------------------------------------------- /tests/unittests/ImporterTestUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/ImporterTestUtils.h -------------------------------------------------------------------------------- /tests/unittests/LLVMIRGenTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/LLVMIRGenTest.cpp -------------------------------------------------------------------------------- /tests/unittests/LoaderTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/LoaderTest.cpp -------------------------------------------------------------------------------- /tests/unittests/MLTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/MLTest.cpp -------------------------------------------------------------------------------- /tests/unittests/NameScrambler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/NameScrambler.cpp -------------------------------------------------------------------------------- /tests/unittests/NodeSplittingTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/NodeSplittingTest.cpp -------------------------------------------------------------------------------- /tests/unittests/NumericsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/NumericsTest.cpp -------------------------------------------------------------------------------- /tests/unittests/OCLTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/OCLTest.cpp -------------------------------------------------------------------------------- /tests/unittests/OnnxExporterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/OnnxExporterTest.cpp -------------------------------------------------------------------------------- /tests/unittests/OnnxImporterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/OnnxImporterTest.cpp -------------------------------------------------------------------------------- /tests/unittests/OperatorGradTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/OperatorGradTest.cpp -------------------------------------------------------------------------------- /tests/unittests/OperatorTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/OperatorTest.cpp -------------------------------------------------------------------------------- /tests/unittests/PartitionerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/PartitionerTest.cpp -------------------------------------------------------------------------------- /tests/unittests/PassManagerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/PassManagerTest.cpp -------------------------------------------------------------------------------- /tests/unittests/ProvisionerTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/ProvisionerTest.cpp -------------------------------------------------------------------------------- /tests/unittests/QuantizationTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/QuantizationTest.cpp -------------------------------------------------------------------------------- /tests/unittests/Repro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/Repro.cpp -------------------------------------------------------------------------------- /tests/unittests/StatsExporterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/StatsExporterTest.cpp -------------------------------------------------------------------------------- /tests/unittests/StrCheck.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/StrCheck.cpp -------------------------------------------------------------------------------- /tests/unittests/SupportTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/SupportTest.cpp -------------------------------------------------------------------------------- /tests/unittests/TaggedListTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/TaggedListTest.cpp -------------------------------------------------------------------------------- /tests/unittests/TensorLayoutTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/TensorLayoutTest.cpp -------------------------------------------------------------------------------- /tests/unittests/TensorPoolTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/TensorPoolTest.cpp -------------------------------------------------------------------------------- /tests/unittests/TensorsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/TensorsTest.cpp -------------------------------------------------------------------------------- /tests/unittests/TestMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/TestMain.cpp -------------------------------------------------------------------------------- /tests/unittests/ThreadPoolTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/ThreadPoolTest.cpp -------------------------------------------------------------------------------- /tests/unittests/TraceEventsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/TraceEventsTest.cpp -------------------------------------------------------------------------------- /tests/unittests/TraceExporterTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/TraceExporterTest.cpp -------------------------------------------------------------------------------- /tests/unittests/UtilsTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/UtilsTest.cpp -------------------------------------------------------------------------------- /tests/unittests/test_libjit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/unittests/test_libjit.cpp -------------------------------------------------------------------------------- /tests/utils/genNetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tests/utils/genNetwork.py -------------------------------------------------------------------------------- /thirdparty/miniz-2.0.8/ChangeLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/thirdparty/miniz-2.0.8/ChangeLog.md -------------------------------------------------------------------------------- /thirdparty/miniz-2.0.8/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/thirdparty/miniz-2.0.8/LICENSE -------------------------------------------------------------------------------- /thirdparty/miniz-2.0.8/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/thirdparty/miniz-2.0.8/miniz.c -------------------------------------------------------------------------------- /thirdparty/miniz-2.0.8/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/thirdparty/miniz-2.0.8/miniz.h -------------------------------------------------------------------------------- /thirdparty/miniz-2.0.8/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/thirdparty/miniz-2.0.8/readme.md -------------------------------------------------------------------------------- /thirdparty/tflite/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/thirdparty/tflite/Readme.md -------------------------------------------------------------------------------- /thirdparty/tflite/flatbuffers/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/thirdparty/tflite/flatbuffers/base.h -------------------------------------------------------------------------------- /thirdparty/tflite/flatbuffers/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/thirdparty/tflite/flatbuffers/util.h -------------------------------------------------------------------------------- /thirdparty/tflite/schema_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/thirdparty/tflite/schema_generated.h -------------------------------------------------------------------------------- /tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/ClassGen/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/ClassGen/CMakeLists.txt -------------------------------------------------------------------------------- /tools/ClassGen/InstrBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/ClassGen/InstrBuilder.cpp -------------------------------------------------------------------------------- /tools/ClassGen/InstrBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/ClassGen/InstrBuilder.h -------------------------------------------------------------------------------- /tools/ClassGen/InstrGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/ClassGen/InstrGen.cpp -------------------------------------------------------------------------------- /tools/ClassGen/MemberType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/ClassGen/MemberType.cpp -------------------------------------------------------------------------------- /tools/ClassGen/MemberType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/ClassGen/MemberType.h -------------------------------------------------------------------------------- /tools/ClassGen/NodeBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/ClassGen/NodeBuilder.cpp -------------------------------------------------------------------------------- /tools/ClassGen/NodeBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/ClassGen/NodeBuilder.h -------------------------------------------------------------------------------- /tools/ClassGen/NodeGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/ClassGen/NodeGen.cpp -------------------------------------------------------------------------------- /tools/Debugger/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/Debugger/CMakeLists.txt -------------------------------------------------------------------------------- /tools/Debugger/NetworkComparator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/Debugger/NetworkComparator.cpp -------------------------------------------------------------------------------- /tools/Debugger/NetworkComparator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/Debugger/NetworkComparator.h -------------------------------------------------------------------------------- /tools/Debugger/network-debugger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/Debugger/network-debugger.cpp -------------------------------------------------------------------------------- /tools/IncludeBin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/IncludeBin/CMakeLists.txt -------------------------------------------------------------------------------- /tools/IncludeBin/IncludeBin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/IncludeBin/IncludeBin.cpp -------------------------------------------------------------------------------- /tools/loader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/loader/CMakeLists.txt -------------------------------------------------------------------------------- /tools/loader/ExecutorCore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/loader/ExecutorCore.cpp -------------------------------------------------------------------------------- /tools/loader/ExecutorCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/loader/ExecutorCore.h -------------------------------------------------------------------------------- /tools/loader/ImageClassifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/loader/ImageClassifier.cpp -------------------------------------------------------------------------------- /tools/loader/Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/loader/Loader.cpp -------------------------------------------------------------------------------- /tools/loader/Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/loader/Loader.h -------------------------------------------------------------------------------- /tools/loader/LoaderUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/loader/LoaderUtils.cpp -------------------------------------------------------------------------------- /tools/loader/LoaderUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/loader/LoaderUtils.h -------------------------------------------------------------------------------- /tools/loader/ModelCompiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/loader/ModelCompiler.cpp -------------------------------------------------------------------------------- /tools/loader/ModelProfiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/loader/ModelProfiler.cpp -------------------------------------------------------------------------------- /tools/loader/ModelRunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/loader/ModelRunner.cpp -------------------------------------------------------------------------------- /tools/loader/ModelTuner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/loader/ModelTuner.cpp -------------------------------------------------------------------------------- /tools/loader/ObjectDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/loader/ObjectDetector.cpp -------------------------------------------------------------------------------- /tools/loader/TextTranslator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/loader/TextTranslator.cpp -------------------------------------------------------------------------------- /tools/loader/XModelBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/loader/XModelBuilder.cpp -------------------------------------------------------------------------------- /tools/png2bin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/png2bin/CMakeLists.txt -------------------------------------------------------------------------------- /tools/png2bin/png2bin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/tools/png2bin/png2bin.cpp -------------------------------------------------------------------------------- /torch_glow/examples/basic_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/examples/basic_example.py -------------------------------------------------------------------------------- /torch_glow/examples/resnet_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/examples/resnet_example.py -------------------------------------------------------------------------------- /torch_glow/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/setup.cfg -------------------------------------------------------------------------------- /torch_glow/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/setup.py -------------------------------------------------------------------------------- /torch_glow/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/CMakeLists.txt -------------------------------------------------------------------------------- /torch_glow/src/CachingGraphRunner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/CachingGraphRunner.cpp -------------------------------------------------------------------------------- /torch_glow/src/CachingGraphRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/CachingGraphRunner.h -------------------------------------------------------------------------------- /torch_glow/src/FuseKnownPatterns.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/FuseKnownPatterns.cpp -------------------------------------------------------------------------------- /torch_glow/src/FuseKnownPatterns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/FuseKnownPatterns.h -------------------------------------------------------------------------------- /torch_glow/src/GlowCompileSpec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/GlowCompileSpec.cpp -------------------------------------------------------------------------------- /torch_glow/src/GlowCompileSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/GlowCompileSpec.h -------------------------------------------------------------------------------- /torch_glow/src/GlowFuser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/GlowFuser.cpp -------------------------------------------------------------------------------- /torch_glow/src/GlowFuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/GlowFuser.h -------------------------------------------------------------------------------- /torch_glow/src/GlowIValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/GlowIValue.cpp -------------------------------------------------------------------------------- /torch_glow/src/GlowIValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/GlowIValue.h -------------------------------------------------------------------------------- /torch_glow/src/InputMeta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/InputMeta.cpp -------------------------------------------------------------------------------- /torch_glow/src/InputMeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/InputMeta.h -------------------------------------------------------------------------------- /torch_glow/src/PyTorchCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/PyTorchCommon.cpp -------------------------------------------------------------------------------- /torch_glow/src/PyTorchCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/PyTorchCommon.h -------------------------------------------------------------------------------- /torch_glow/src/PyTorchModelLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/PyTorchModelLoader.cpp -------------------------------------------------------------------------------- /torch_glow/src/PyTorchModelLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/PyTorchModelLoader.h -------------------------------------------------------------------------------- /torch_glow/src/Registration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/Registration.cpp -------------------------------------------------------------------------------- /torch_glow/src/Registration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/Registration.h -------------------------------------------------------------------------------- /torch_glow/src/ShapeInferenceEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/ShapeInferenceEngine.h -------------------------------------------------------------------------------- /torch_glow/src/TorchGlowBackend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/TorchGlowBackend.cpp -------------------------------------------------------------------------------- /torch_glow/src/TorchGlowBackend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/TorchGlowBackend.h -------------------------------------------------------------------------------- /torch_glow/src/binding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/src/binding.cpp -------------------------------------------------------------------------------- /torch_glow/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /torch_glow/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/conftest.py -------------------------------------------------------------------------------- /torch_glow/tests/functionality/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /torch_glow/tests/nodes/Int_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/Int_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /torch_glow/tests/nodes/abs_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/abs_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/add_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/add_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/addmm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/addmm_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/and_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/and_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/arange_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/arange_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/bmm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/bmm_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/cat_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/cat_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/ceil_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/ceil_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/clamp_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/clamp_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/clone_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/clone_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/cmp_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/cmp_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/conv2d_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/conv2d_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/conv3d_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/conv3d_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/copy_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/copy_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/cumsum_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/cumsum_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/detach_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/detach_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/div_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/div_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/erf_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/erf_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/exp_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/exp_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/expand_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/expand_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/floor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/floor_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/fmod_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/fmod_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/gather_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/gather_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/gelu_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/gelu_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/iand_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/iand_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/linear_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/linear_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/log_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/log_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/lstm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/lstm_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/matmul_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/matmul_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/max_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/max_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/mean_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/mean_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/min_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/min_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/mm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/mm_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/mul_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/mul_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/norm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/norm_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/pow_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/pow_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/prelu_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/prelu_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/relu_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/relu_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/repeat_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/repeat_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/rsub_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/rsub_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/select_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/select_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/size_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/size_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/slice_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/slice_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/split_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/split_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/sqrt_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/sqrt_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/stack_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/stack_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/sub_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/sub_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/sum_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/sum_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/tanh_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/tanh_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/to_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/to_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/topk_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/topk_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/typeas_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/typeas_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/view_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/view_test.py -------------------------------------------------------------------------------- /torch_glow/tests/nodes/zero_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/nodes/zero_test.py -------------------------------------------------------------------------------- /torch_glow/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/tests/utils.py -------------------------------------------------------------------------------- /torch_glow/torch_glow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/torch_glow/__init__.py -------------------------------------------------------------------------------- /torch_glow/torch_glow/to_glow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/torch_glow/torch_glow/to_glow.py -------------------------------------------------------------------------------- /torch_glow/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /torch_glow/utils/torchvision_fake/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/build_llvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/build_llvm.sh -------------------------------------------------------------------------------- /utils/caffe2_model_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/caffe2_model_runner.py -------------------------------------------------------------------------------- /utils/caffe2_pb_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/caffe2_pb_runner.py -------------------------------------------------------------------------------- /utils/caffe2_train_and_dump_pb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/caffe2_train_and_dump_pb.py -------------------------------------------------------------------------------- /utils/compilation_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/compilation_filter.py -------------------------------------------------------------------------------- /utils/decode_caffe2_protoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/decode_caffe2_protoc.sh -------------------------------------------------------------------------------- /utils/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/docker/Dockerfile -------------------------------------------------------------------------------- /utils/docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/docker/README.md -------------------------------------------------------------------------------- /utils/docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/docker/build.sh -------------------------------------------------------------------------------- /utils/download_datasets_and_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/download_datasets_and_models.py -------------------------------------------------------------------------------- /utils/encode_caffe2_protoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/encode_caffe2_protoc.sh -------------------------------------------------------------------------------- /utils/export_onnx_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/export_onnx_model.py -------------------------------------------------------------------------------- /utils/format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/format.sh -------------------------------------------------------------------------------- /utils/glow-trace-concat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/glow-trace-concat.sh -------------------------------------------------------------------------------- /utils/imagenet-process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/imagenet-process.py -------------------------------------------------------------------------------- /utils/install_protobuf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/install_protobuf.sh -------------------------------------------------------------------------------- /utils/license.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/license.sh -------------------------------------------------------------------------------- /utils/log_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/log_parser.py -------------------------------------------------------------------------------- /utils/s3put.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/s3put.sh -------------------------------------------------------------------------------- /utils/scripts/dce_caffe2_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/scripts/dce_caffe2_model.py -------------------------------------------------------------------------------- /utils/scripts/gen_caffe2_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/scripts/gen_caffe2_model.py -------------------------------------------------------------------------------- /utils/scripts/gen_onnx_gru_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/scripts/gen_onnx_gru_model.py -------------------------------------------------------------------------------- /utils/scripts/gen_onnx_lstm_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/scripts/gen_onnx_lstm_model.py -------------------------------------------------------------------------------- /utils/scripts/gen_onnx_mfcc_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/scripts/gen_onnx_mfcc_model.py -------------------------------------------------------------------------------- /utils/scripts/gen_onnx_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/scripts/gen_onnx_model.py -------------------------------------------------------------------------------- /utils/scripts/gen_onnx_rnn_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/scripts/gen_onnx_rnn_model.py -------------------------------------------------------------------------------- /utils/scripts/gen_tflite_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/scripts/gen_tflite_models.py -------------------------------------------------------------------------------- /utils/scripts/plot_histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/scripts/plot_histogram.py -------------------------------------------------------------------------------- /utils/trace_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pytorch/glow/HEAD/utils/trace_parser.py --------------------------------------------------------------------------------