Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
#include "migraphx_allocator.h"
#include "gpu_data_transfer.h"
#include "migraphx_inc.h"
#include <hip/hip_version.h>

#include "migraphx_stream_handle.h"

Expand Down Expand Up @@ -1299,7 +1300,9 @@ Status MIGraphXExecutionProvider::Compile(const std::vector<FusedNodeAndGraph>&
if (!input_shape_match) {
if (!load_precompiled_model(prog, load_compiled_model_, std::string{load_compiled_path_})) {
LOGS_DEFAULT(VERBOSE) << "No Input shapes mismatch detected. Recompiling" << std::endl;
#if HIP_VERSION_MAJOR > 6 || (HIP_VERSION_MAJOR == 6 && HIP_VERSION_MINOR >= 2)
cmp_options.set_external_data_path(model_path_.has_parent_path() ? model_path_.parent_path().string() : std::filesystem::current_path().string());
#endif
prog = migraphx::parse_onnx_buffer(onnx_string, cmp_options);

// Read in the calibration data and map it to an migraphx paramater map for the calibration ops
Expand Down
4 changes: 4 additions & 0 deletions onnxruntime/test/onnx/TestCase.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1035,6 +1035,10 @@ std::unique_ptr<std::set<BrokenTest>> GetBrokenTests(const std::string& provider
// std::set<std::string> broken_tests_keyword_set = {};

if (provider_name == "cuda") {
#ifdef ENABLE_TRAINING_CORE
// cudnn frontend exception in orttraining-linux-gpu-ci-pipeline.
broken_tests->insert({"keras_lotus_resnet3D", "Temporarily disabled pending investigation", {}});
#endif
#ifdef _WIN32
broken_tests->insert({"LSTM_Seq_lens_unpacked", "this test fails with new image since Aug 25."});
broken_tests->insert({"bidaf", "this test fails with new image since Aug 25."});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -779,6 +779,8 @@ def run_step(model, rerouted_output, dispatch_mask, expert_output):
@pytest.mark.parametrize("input_requires_grad", [False, True])
@pytest.mark.parametrize("conv_algo_search", [None, "EXHAUSTIVE", "HEURISTIC"])
def test_gradient_correctness_conv1d(use_fp16, input_requires_grad, conv_algo_search):
pytest.skip("Temporarily disabled pending investigation (might be related to cudnn frontend).")

class NeuralNetConv1D(torch.nn.Module):
def __init__(self, in_channels, out_channels, kernel_size, padding=0, groups=1):
super().__init__()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ steps:
--volume $(Build.BinariesDirectory)/${{ parameters.BuildConfig }}:/build \
--volume $(Agent.TempDirectory)/mnist:/mnist \
${{ parameters.DockerImageTag }} \
bash -c "rm -rf /build/onnxruntime/ && python3 -m pip install /build/dist/onnxruntime*.whl && python3 -m onnxruntime.training.ortmodule.torch_cpp_extensions.install && /build/launch_test.py --cmd_line_with_args 'python orttraining_ortmodule_tests.py --mnist /mnist --bert_data /bert_data/hf_data/glue_data/CoLA/original/raw' --cwd /build" \
bash -c "rm -rf /build/onnxruntime/ && python3 -m pip show torch && python3 -m pip install torch --index-url https://download.pytorch.org/whl/cu118 --force-reinstall && python3 -m pip install /build/dist/onnxruntime*.whl && python3 -m onnxruntime.training.ortmodule.torch_cpp_extensions.install && /build/launch_test.py --cmd_line_with_args 'python orttraining_ortmodule_tests.py --mnist /mnist --bert_data /bert_data/hf_data/glue_data/CoLA/original/raw' --cwd /build" \
displayName: 'Run orttraining_ortmodule_tests.py'
condition: succeededOrFailed()
timeoutInMinutes: 60
Expand All @@ -35,7 +35,7 @@ steps:
--volume $(Build.SourcesDirectory):/onnxruntime_src \
--volume $(Build.BinariesDirectory)/${{ parameters.BuildConfig }}:/build \
${{ parameters.DockerImageTag }} \
bash -c "rm -rf /build/onnxruntime/ && python3 -m pip install /build/dist/onnxruntime*.whl && /build/launch_test.py --cmd_line_with_args 'python orttraining_test_ort_apis.py --cwd /build' --cwd /build" \
bash -c "rm -rf /build/onnxruntime/ && python3 -m pip install /build/dist/onnxruntime*.whl && python3 -m pip show torch && python3 -m pip install torch --index-url https://download.pytorch.org/whl/cu118 && /build/launch_test.py --cmd_line_with_args 'python orttraining_test_ort_apis.py --cwd /build' --cwd /build" \
displayName: 'Run ORT Training APIs Tests'
condition: succeededOrFailed()
timeoutInMinutes: 120