Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some internal changes. #1516

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
7 changes: 0 additions & 7 deletions export/orbax/export/export_manager_obm_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,6 @@
)


def _get_expected_tf_function_body(name: str, support_tf_resources: bool):
if support_tf_resources:
return f'inlined_string: "{name}"'
else:
return 'file_system_location { string_path: "%s.pb" }' % name


class ExportManagerObmTest(parameterized.TestCase, tf.test.TestCase):

@parameterized.named_parameters(
Expand Down
7 changes: 0 additions & 7 deletions export/orbax/export/obm_export_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,6 @@ def _package_jax_module(m: jax_module.JaxModule):
return result


def _get_expected_tf_function_body(name: str, support_tf_resources: bool):
if support_tf_resources:
return f'inlined_string: "{name}"'
else:
return 'file_system_location { string_path: "%s.pb" }' % name


class ObmExportTest(parameterized.TestCase, tf.test.TestCase):

def setUp(self):
Expand Down
Loading