mirror of https://github.com/tracel-ai/burn.git
18 lines
317 B
Rust
18 lines
317 B
Rust
use burn_core as burn;
|
|
use burn_core::record::Record;
|
|
|
|
use burn_tensor::backend::Backend;
|
|
use burn_tensor::Tensor;
|
|
|
|
// It compiles
|
|
#[derive(Record)]
|
|
pub struct TestWithBackendRecord<B: Backend> {
|
|
tensor: Tensor<B, 2>,
|
|
}
|
|
|
|
// It compiles
|
|
#[derive(Record)]
|
|
pub struct TestWithoutBackendRecord {
|
|
tensor: usize,
|
|
}
|