Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 832 for exporters (0.35 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/tac_module.h

      void SetImporter(std::unique_ptr<TacImporter> importer) {
        importer_ = std::move(importer);
      }
    
      void SetExporter(std::unique_ptr<TacExporter> exporter) {
        exporter_ = std::move(exporter);
      }
    
      // Returns pointer to the TargetHardware that is identified by 'hardware_name'
      // Returns NULL If no hardware with this name found.
      const tac::TargetHardware* GetTargetHardware(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/DefaultClassLoaderScopeTest.groovy

                lock()
    
            then:
            def local = scope.localClassLoader.loadClass(TestClass1.name)
            def exported = scope.exportClassLoader.loadClass(TestClass2.name)
            scope.defines(local)
            scope.defines(exported)
            !scope.defines(TestClass1)
            !scope.defines(TestClass2)
        }
    
        def "requesting loaders before locking creates pessimistic setup"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 24 13:56:30 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

                    .getValue()));
          }
    
          TF_RETURN_IF_ERROR(exporter.AddInstructionNode(&inner_op));
        } else {
          TF_RETURN_IF_ERROR(exporter.AddInstructionNode(&inst));
        }
      }
      // Adds edges between the argument, operation and return nodes.
      for (Operation& inst : graph_op.GetBody()) {
        TF_RETURN_IF_ERROR(exporter.AddEdge(&inst));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

                    .getValue()));
          }
    
          TF_RETURN_IF_ERROR(exporter.AddInstructionNode(&inner_op));
        } else {
          TF_RETURN_IF_ERROR(exporter.AddInstructionNode(&inst));
        }
      }
      // Adds edges between the argument, operation and return nodes.
      for (Operation& inst : graph_op.GetBody()) {
        TF_RETURN_IF_ERROR(exporter.AddEdge(&inst));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/experimental/tac/tflite_import_export.h

      mlir::MLIRContext context_;
      llvm::SourceMgr source_mgr_;
      std::unique_ptr<mlir::SourceMgrDiagnosticHandler> source_mgr_handler_;
    };
    
    // TAC Exporter. It exports the provided Module to a tflite file.
    class TfLiteExporter : public mlir::TFL::tac::TacExporter {
     public:
      // Exporter configuration options.
      struct Options {
        bool export_runtime_metadata = false;
        bool output_mlir = false;
        std::string output_file_name;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/experimental/tac/tac_module.cc

      if (!importer_) {
        return absl::Status(absl::StatusCode::kFailedPrecondition,
                            "Null Importer provided");
      }
      if (!exporter_) {
        return absl::Status(absl::StatusCode::kFailedPrecondition,
                            "Null Exporter provided");
      }
    
      auto module_status = importer_->Import();
      if (!module_status.ok()) {
        return module_status.status();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/vendor_test_issue11864.txt

    package tx3_test
    
    import "vendor.org/tx3"
    import "testing"
    
    var Found = tx3.Exported
    
    func TestNop(t *testing.T) {}
    
    -- $GOPATH/src/github.com/rsc/go-get-issue-11864/vendor/vendor.org/tx3/export_test.go --
    package tx3
    
    var Exported = true
    
    -- $GOPATH/src/github.com/rsc/go-get-issue-11864/vendor/vendor.org/tx3/tx3.go --
    package tx3
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/extension/internal/CoreExtensionEntry.java

        public ClassRealm getClassRealm() {
            return realm;
        }
    
        /**
         * Returns artifacts exported by the extension, identified by groupId:artifactId string key.
         */
        public Set<String> getExportedArtifacts() {
            return artifacts;
        }
    
        /**
         * Returns classpath elements exported by the extension.
         */
        public Set<String> getExportedPackages() {
            return packages;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 07:14:56 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/ide/problems-api-usage/groovy/reporters/script-plugin/src/main/groovy/reporters.script.plugin.gradle

    Donát Csikós <******@****.***> 1708358577 +0100
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/AbstractClasspathEntry.java

            return exported == that.exported
                && Objects.equal(path, that.path)
                && Objects.equal(accessRules, that.accessRules)
                && Objects.equal(getNativeLibraryLocation(), that.getNativeLibraryLocation());
        }
    
        @Override
        public int hashCode() {
            return Objects.hashCode(path, exported, accessRules, getNativeLibraryLocation());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.9K bytes
    - Viewed (0)
Back to top