Skip to content

Commit

Permalink
return false
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenzew committed Sep 13, 2024
1 parent beeaf2f commit 0053edc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ExecutionProvider {
virtual DllSafe<std::vector<std::string>> get_meta_def_nodes() const = 0;
virtual DllSafe<std::vector<std::string>>
get_meta_def_constant_initializer() const = 0;
virtual bool get_meta_def_fallback_CPU() const = 0;
virtual bool get_meta_def_fallback_CPU() const { return false; };
virtual std::unique_ptr<CustomOp> compile() const = 0;

public:
Expand Down

0 comments on commit 0053edc

Please sign in to comment.