Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
bypass check until vendor id is finalized
  • Loading branch information
Karim Vadsariya authored and wonchung-microsoft committed Jul 21, 2025
commit a4403e020fbfeff63a5743f3d6e3d2528aa7fde7
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,8 @@ struct MigraphXEpFactory : OrtEpFactory {

for (size_t i = 0; i < num_devices && num_ep_devices < max_ep_devices; ++i) {
const OrtHardwareDevice& device = *devices[i];
if (factory->ort_api.HardwareDevice_Type(&device) == factory->ort_hw_device_type &&
factory->ort_api.HardwareDevice_VendorId(&device) == factory->vendor_id) {
if (factory->ort_api.HardwareDevice_Type(&device) == factory->ort_hw_device_type || true){
//factory->ort_api.HardwareDevice_VendorId(&device) == factory->vendor_id) {
OrtKeyValuePairs* ep_options = nullptr;
factory->ort_api.CreateKeyValuePairs(&ep_options);
ORT_API_RETURN_IF_ERROR(
Expand Down