diff --git a/onnxruntime/core/providers/cuda/cuda_execution_provider.h b/onnxruntime/core/providers/cuda/cuda_execution_provider.h index ad3f6e26afb49..c9e510b7f472b 100644 --- a/onnxruntime/core/providers/cuda/cuda_execution_provider.h +++ b/onnxruntime/core/providers/cuda/cuda_execution_provider.h @@ -238,7 +238,6 @@ class CUDAExecutionProvider : public IExecutionProvider { PerThreadContext& GetPerThreadContext() const; void ReleasePerThreadContext() const; - DataLayout GetPreferredLayout() const override { return DataLayout::NHWC; } }; } // namespace onnxruntime diff --git a/onnxruntime/core/providers/js/js_execution_provider.cc b/onnxruntime/core/providers/js/js_execution_provider.cc index 8ce92aae1621c..d180e9d2bf14f 100644 --- a/onnxruntime/core/providers/js/js_execution_provider.cc +++ b/onnxruntime/core/providers/js/js_execution_provider.cc @@ -666,7 +666,7 @@ std::vector> JsExecutionProvider::GetCapabili const KernelCreateInfo* webgpu_kernel_def = kernel_lookup.LookUpKernel(node); // none of the provided registries has a webgpu kernel for this node if (webgpu_kernel_def == nullptr) { - LOGS(*GetLogger(), ERROR) << "webgpu kernel not found in registries for Op type: " << node.OpType() << " node name: " << node.Name(); + LOGS(*GetLogger(), INFO) << "webgpu kernel not found in registries for Op type: " << node.OpType() << " node name: " << node.Name(); continue; } candidates.push_back(node.Index());