Skip to content

Commit 6242276

Browse files
authoredJan 12, 2024
Pin the revision used for phi-v2 + make it the default. (huggingface#1572)
* Pin the revision used for phi-v2 + make it the default. * Tweak the custom-ops build.
1 parent 4191518 commit 6242276

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed
 

‎candle-examples/build.rs

-6
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,5 @@ fn main() -> Result<()> {
2727
bindings.write(kdir.rust_target).unwrap()
2828
}
2929
}
30-
#[cfg(not(feature = "cuda"))]
31-
{
32-
for kdir in KERNEL_DIRS.iter() {
33-
let _file = std::fs::File::create(kdir.rust_target)?;
34-
}
35-
}
3630
Ok(())
3731
}

‎candle-examples/examples/phi/main.rs

+3-4
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ struct Args {
169169
#[arg(long)]
170170
model_id: Option<String>,
171171

172-
#[arg(long, default_value = "1.5")]
172+
#[arg(long, default_value = "2")]
173173
model: WhichModel,
174174

175175
#[arg(long)]
@@ -247,9 +247,8 @@ fn main() -> Result<()> {
247247
match args.model {
248248
WhichModel::V1 => "refs/pr/2".to_string(),
249249
WhichModel::V1_5 => "refs/pr/18".to_string(),
250-
WhichModel::V2 | WhichModel::PuffinPhiV2 | WhichModel::PhiHermes => {
251-
"main".to_string()
252-
}
250+
WhichModel::V2 => "834565c23f9b28b96ccbeabe614dd906b6db551a".to_string(),
251+
WhichModel::PuffinPhiV2 | WhichModel::PhiHermes => "main".to_string(),
253252
}
254253
}
255254
}

0 commit comments

Comments
 (0)
Please sign in to comment.