Skip to content

Commit

Permalink
Merge branch 'main' into jfowers/progress
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyfowers authored Jan 6, 2025
2 parents 9ae3e85 + 3ff3e16 commit 4034ced
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/ort_genai_hybrid.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

### Requirements
- [NPU Drivers (version .237)](https://ryzenai.docs.amd.com/en/latest/inst.html#install-npu-drivers)
- [Hybrid LLM artifacts package](https://github.com/aigdat/ryzenai-sw-ea/blob/main/ryzen_ai_13_ga/hybrid-llm-artifacts_1.3.0.zip)
- [Hybrid LLM artifacts package](https://account.amd.com/en/member/ryzenai-sw-ea.html#tabs-a5e122f973-item-4757898120-tab)

### Installation

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
"GitPython>=3.1.40",
"psutil",
"wmi",
"pytz",
# Conditional dependencies for ONNXRuntime backends
"onnxruntime >=1.10.1;platform_system=='Linux' and extra != 'llm-oga-cuda'",
"onnxruntime-directml >=1.19.0;platform_system=='Windows' and extra != 'llm-oga-cuda'",
Expand Down
4 changes: 3 additions & 1 deletion src/turnkeyml/sequence/sequence.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import copy
from datetime import datetime
from typing import List, Dict, Optional
import pytz
import turnkeyml.common.printing as printing
import turnkeyml.common.exceptions as exp
import turnkeyml.common.build as build
Expand Down Expand Up @@ -128,9 +129,10 @@ def launch(
state.save_stat(fs.Keys.BUILD_STATUS, build.FunctionStatus.INCOMPLETE)

# Save a timestamp so that we know the order of builds within a cache
pacific_tz = pytz.timezone("America/Los_Angeles")
state.save_stat(
fs.Keys.TIMESTAMP,
datetime.now(),
datetime.now(pacific_tz),
)

# Save the system information used for this build
Expand Down
2 changes: 1 addition & 1 deletion src/turnkeyml/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "4.0.9"
__version__ = "4.0.10"

0 comments on commit 4034ced

Please sign in to comment.