Remove dead logical.rs stub from luminal_cuda_lite

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Tucker Morgan
2026-04-01 18:58:12 +00:00
parent b5d984c3fa
commit fd83534e53
3 changed files with 1 additions and 3 deletions

View File

@@ -1,6 +1,5 @@
pub mod host;
pub mod kernel;
pub mod logical;
pub mod runtime;
use std::{
ffi::{CStr, CString},

View File

@@ -1 +0,0 @@
pub type Ops = ();

View File

@@ -772,7 +772,7 @@ fn format_duration_precise(d: &std::time::Duration) -> String {
}
impl Runtime for CudaRuntime {
type Ops = (crate::logical::Ops, crate::kernel::Ops, crate::host::Ops);
type Ops = (crate::kernel::Ops, crate::host::Ops);
type CompileArg = Arc<CudaStream>;
type ExecReturn = ();
type ProfileMetric = Duration;