Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions jaxlib/tools/gpu_version_script.lds
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ VERS_1.0 {
GetPjrtApi;
MosaicGpuCompile;
MosaicGpuUnload;
rocprofiler_configure;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changing this here won't do anything since we don't build from this jaxlib code anymore (we just use this repo for its unit tests). You'll need to create a patch file that performs this change, and then stick it in jax_rocm_plugin/third_party/jax in the plugin repo and then add the path to the patch file to the workspace.bzl file under the patches section.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

now with rocprofiler_force_configure(), this might not be needed anymore.

};

local:
Expand Down
2 changes: 1 addition & 1 deletion tests/profiler_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ def _check_xspace_pb_exist(self, logdir):
self.assertEqual(1, len(glob.glob(path)),
'Expected one path match: ' + path)

@unittest.skip("Test causes OOMs")
# @unittest.skip("Test causes OOMs")
@unittest.skipIf(not (portpicker and profiler_client and tf_profiler),
"Test requires tensorflow.profiler and portpicker")
def testSingleWorkerSamplingMode(self, delay_ms=None):
Expand Down