dynamo-llm 1.0.2

Dynamo LLM Library
// SPDX-FileCopyrightText: Copyright (c) 2024-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
// SPDX-License-Identifier: Apache-2.0

#[derive(Clone, Debug, PartialEq, Eq)]
pub enum TorchDevice {
    Cuda(usize),
    Other(String),
}

impl TorchDevice {
    pub fn is_cuda(&self) -> bool {
        matches!(self, TorchDevice::Cuda(_))
    }

    pub fn cuda_device_index(&self) -> Option<usize> {
        match self {
            TorchDevice::Cuda(index) => Some(*index),
            TorchDevice::Other(_) => None,
        }
    }
}

pub trait TorchTensor: std::fmt::Debug + Send + Sync {
    fn device(&self) -> TorchDevice;
    fn data_ptr(&self) -> u64;
    fn size_bytes(&self) -> usize;
    fn shape(&self) -> Vec<usize>;
    fn stride(&self) -> Vec<usize>;
}