Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for tag_set (0.1 sec)

  1. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo.cc

        }
    
        return quant::stablehlo::ImportedMlirModuleOp(std::move(module), nullptr);
      }
    
      std::unordered_set<std::string> tag_set(tag_names.begin(), tag_names.end());
      return quant::stablehlo::SavedModelToMlirModuleOp(
          input_path, tag_set, exported_model_signatures, *context);
    }
    
    // Convert an TF module to a StableHLO module
    absl::StatusOr<OwningOpRef<ModuleOp>> ConvertTFToStablehlo(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/python/mlir.cc

        bool show_debug_info, TF_Status* status) {
      // Load the saved model into a SavedModelBundle.
    
      std::unordered_set<string> tag_set =
          absl::StrSplit(tags, ',', absl::SkipEmpty());
    
      tensorflow::SavedModelBundle bundle;
      auto load_status =
          tensorflow::LoadSavedModel({}, {}, saved_model_path, tag_set, &bundle);
      if (!load_status.ok()) {
        tsl::Set_TF_Status_from_Status(status, load_status);
        return "// error";
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.cc

        return nullptr;
      }
    
      std::unordered_set<string> tag_set;
      for (int i = 0; i < tags_len; i++) {
        tag_set.insert(string(tags[i]));
      }
    
      tensorflow::SavedModelBundle bundle;
      status->status =
          tensorflow::LoadSavedModel(session_options->options, run_options_proto,
                                     export_dir, tag_set, &bundle);
      if (!status->status.ok()) return nullptr;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testing/junitplatform-tagging/groovy/src/test/java/org/gradle/junitplatform/TagTest.java

    package org.gradle.junitplatform;
    
    import org.junit.jupiter.api.*;
    
    public class TagTest {
        @Fast
        @Test
        public void fastTest() {
        }
    
        @Tag("slow")
        @Test
        public void slowTest(){
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 210 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/testing/junitplatform-tagging/kotlin/src/test/java/org/gradle/junitplatform/TagTest.java

    package org.gradle.junitplatform;
    
    import org.junit.jupiter.api.*;
    
    public class TagTest {
        @Fast
        @Test
        public void fastTest() {
        }
    
        @Tag("slow")
        @Test
        public void slowTest(){
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 210 bytes
    - Viewed (0)
  6. istioctl/pkg/tag/tag_test.go

    John Howard <******@****.***> 1700260866 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 22:41:06 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ForwardingNavigableSet.java

      }
    
      @Override
      public NavigableSet<E> tailSet(@ParametricNullness E fromElement, boolean inclusive) {
        return delegate().tailSet(fromElement, inclusive);
      }
    
      /**
       * A sensible definition of {@link #tailSet(Object)} in terms of the {@link #tailSet(Object,
       * boolean)} method. If you override {@link #tailSet(Object, boolean)}, you may wish to override
       * {@link #tailSet(Object)} to forward to this implementation.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/resources/org/gradle/api/tasks/javadoc/JavadocIntegrationTest/canCombineLocalOptionWithOtherOptions/src/taglet/java/LocaleAwareTaglet.java

        }
    
        public String toString(Tag[] tags) {
            return toString(tags[0]);
        }
    
        public static void register(Map tagletMap) {
            LocaleAwareTaglet taglet = new LocaleAwareTaglet();
            tagletMap.put(taglet.getName(), taglet);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/internal/saved_model_api.cc

                                             TF_Status* status) {
      std::string saved_model_dir(dirname);
    
      std::unordered_set<std::string> tagset;
      for (int i = 0; i < tags_len; ++i) {
        tagset.insert(std::string(tags[i]));
      }
    
      std::unique_ptr<tensorflow::SavedModelAPI> result;
      if (tensorflow::unwrap(ctx)->UsesTFRT()) {
        status->status = tensorflow::errors::Unimplemented(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 04 00:45:47 UTC 2020
    - 4.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/ForwardingSortedSet.java

        return delegate().subSet(fromElement, toElement);
      }
    
      @Override
      public SortedSet<E> tailSet(@ParametricNullness E fromElement) {
        return delegate().tailSet(fromElement);
      }
    
      /**
       * A sensible definition of {@link #contains} in terms of the {@code first()} method of {@link
       * #tailSet}. If you override {@link #tailSet}, you may wish to override {@link #contains} to
       * forward to this implementation.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 5.7K bytes
    - Viewed (0)
Back to top