This is an FP8-quantized version of Meta's Llama 3.3 70B model, specifically optimized for efficient inference on AWS Neuron accelerators (Inferentia2). The model has been compiled and quantized using AWS Neuron SDK to leverage the specialized AI acceleration capabilities of AWS Neuron chips.
Model Details
Model Description
This model is a deployment-optimized version of Llama 3.3 70B that has been quantized to FP8 precision and compiled for AWS Neuron devices. AWS Neuron is the SDK used to run deep learning workloads on AWS Inferentia and Trainium chips, which are purpose-built machine learning accelerators.
For better performance set Tp_degree=24 on Inf2.48xlarge [Total Token Throughput = ~600 tokens/sec]
Key Features
Reduced memory footprint through FP8 quantization (~50% reduction from FP16)
Optimized for AWS Inferentia2 instances
Pre-compiled for tensor parallelism across 2 NeuronCores
Maintains instruction-following capabilities of the base model
Cost-effective LLM serving with improved throughput
Serve the ModelNote: First time Compilation takes 20-30 minutes. You can set the NEURON_COMPILED_ARTIFACTS variable to skip compilation the second time.
Making Inference Requests
Once the server is running on Port 8080, you can make requests as follows:
Open another terminal and fire the below CURL request
bash
1curl http://localhost:8080/v1/completions \2-H "Content-Type: application/json"\3-d '{
4 "prompt": "<|system|>You are a helpful AI assistant.<|user|>What is the capital of France?<|assistant|>",
5 "max_tokens": 100,
6 "temperature": 0.1,
7 "top_p": 0.9,
8 "stop": ["<|system|>", "<|user|>", "<|assistant|>", "<|end|>", "\n\n"]
9}'
Benchmarking PerformanceOpen another terminal set the MODEL_PATH and fire the below benchmark command
Quantization Details
Quantization Format FP8 E4M3 (8-bit floating point)
Quantization Type Per-channel symmetric
Tensor Parallelism (TP) 24
Target Accelerator AWS Inferentia2
Instance Type inf2.48xlarge
Sequence Length 8192 tokens
Use Cases
Intended Use
This model is optimized for:
✅ Production inference deployments on AWS Inferentia2 instances
✅ Cost-effective LLM serving with reduced computational requirements
✅ Conversational AI applications requiring instruction-following
✅ Text generation tasks (Q&A, summarization, creative writing)
✅ Low-latency inference requirements
Benefits of FP8 Quantization
~50% memory reduction compared to FP16
Improved throughput on Neuron accelerators
Lower inference costs on AWS infrastructure
Maintained accuracy with minimal degradation
Out-of-Scope Use
This model is NOT suitable for:
❌ Deployment on non-Neuron hardware (GPUs, CPUs) without recompilation
Limitations and Considerations
Quantization artifacts: FP8 quantization may introduce minor accuracy degradation compared to full-precision models
Hardware dependency: Compiled specifically for Neuron devices; requires recompilation for other hardware
Max Sequence Length 8192 tokens
Acknowledgments
Base model: Meta's Llama 3.3 70B
Quantization and compilation: AWS Neuron SDK [NEURONX_DISTRIBUTED_INFERENCE]
Inference framework: vLLM with Neuron support
License
This model inherits the Llama 3.3 license from Meta. Please refer to the official license for terms and conditions.