mirror of
https://github.com/vosen/ZLUDA.git
synced 2025-08-02 14:57:43 +03:00
Remove accidental comments
This commit is contained in:
@ -24,19 +24,19 @@ static KNOWN_CUDA_VERSIONS: &[&'static str] = &[
|
||||
|
||||
fn main() {
|
||||
let crate_root = PathBuf::from_str(env!("CARGO_MANIFEST_DIR")).unwrap();
|
||||
// generate_hip_runtime(
|
||||
// &crate_root,
|
||||
// &["..", "ext", "hip_runtime-sys", "src", "lib.rs"],
|
||||
// );
|
||||
generate_hip_runtime(
|
||||
&crate_root,
|
||||
&["..", "ext", "hip_runtime-sys", "src", "lib.rs"],
|
||||
);
|
||||
generate_rocblas(&crate_root, &["..", "ext", "rocblas-sys", "src", "lib.rs"]);
|
||||
// let cuda_functions = generate_cuda(&crate_root);
|
||||
// generate_process_address_table(&crate_root, cuda_functions);
|
||||
// generate_ml(&crate_root);
|
||||
// generate_cublas(&crate_root);
|
||||
// generate_cublaslt(&crate_root);
|
||||
// generate_cufft(&crate_root);
|
||||
// generate_cusparse(&crate_root);
|
||||
// generate_cudnn(&crate_root);
|
||||
let cuda_functions = generate_cuda(&crate_root);
|
||||
generate_process_address_table(&crate_root, cuda_functions);
|
||||
generate_ml(&crate_root);
|
||||
generate_cublas(&crate_root);
|
||||
generate_cublaslt(&crate_root);
|
||||
generate_cufft(&crate_root);
|
||||
generate_cusparse(&crate_root);
|
||||
generate_cudnn(&crate_root);
|
||||
}
|
||||
|
||||
fn generate_process_address_table(crate_root: &PathBuf, mut cuda_fns: Vec<Ident>) {
|
||||
|
Reference in New Issue
Block a user