Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 177 for modulemap (0.14 sec)

  1. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/ComponentModelReportIntegrationTest.groovy

                        + binaries
                              | Type:   	org.gradle.model.ModelMap<org.gradle.platform.base.BinarySpec>
                              | Creator: 	myComponent(UnmanagedComponent) { ... } @ build.gradle line 89, column 9
                              | Rules:
                                 ⤷ ComponentModelBasePlugin.PluginRules.AttachInputs#initializeBinarySourceSets(ModelMap<BinarySpec>)
                            + myBinary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentIntegrationTest.groovy

                    @Mutate
                    void mutateUnmanaged(ModelMap<UnmanagedComponentSpec> components) {
                        components.all { component ->
                            component.unmanagedData = "unmanaged"
                        }
                    }
    
                    @Mutate
                    void mutateManaged(ModelMap<ManagedComponentSpec> components) {
                        components.all { component ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 25.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/passes.td

      let summary = "Insert CallOnce op when tf_saved_model's session initializer is give.";
      let constructor = "CreateInsertCallOnceOpFromSessionInitializerPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
    }
    
    def LegalizeHashTablesPass : Pass<"tfl-legalize-hashtables-tf", "mlir::ModuleOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/FunctionalSourceSetIntegrationTest.groovy

            apply plugin: 'language-base'
    
            class Rules extends RuleSource {
                @Model
                void fss(FunctionalSourceSet sources) {
                }
    
                @Mutate void printTask(ModelMap<Task> tasks, FunctionalSourceSet sources) {
                    tasks.create("printTask") {
                        doLast {
                            println "name: " + sources.name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ScalarTypesInManagedModelIntegrationTest.groovy

                        primitiveTypes.longPropertyFromInt = 123
                        primitiveTypes.longPropertyFromInteger = new Integer(321)
                    }
    
                    @Mutate
                    void addCheckTask(ModelMap<Task> tasks, final PrimitiveTypes primitiveTypes) {
                        tasks.create("check") {
                            it.doLast {
                                assert primitiveTypes.longPropertyFromInt == 123
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentPluginIntegrationTest.groovy

                    }
    
                    @Mutate
                    void createSampleComponentInstances(ModelMap<SampleComponent> componentSpecs) {
                        componentSpecs.create("sampleComponent")
                    }
    
                    @Mutate
                    void createSampleLibraryInstances(ModelMap<SampleLibrary> componentSpecs) {
                        componentSpecs.create("sampleLib")
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.cc

    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/platform/protobuf.h"
    #include "tensorflow/core/util/tensor_bundle/byte_swap_tensor.h"
    
    namespace tensorflow {
    
    static absl::StatusOr<mlir::OwningOpRef<mlir::ModuleOp>> GraphdefToMlirImport(
        llvm::StringRef input, const std::vector<std::string>& input_arrays,
        const std::vector<std::string>& input_dtypes,
        const std::vector<std::optional<std::vector<int>>>& input_shapes,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 11:51:44 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util_test.cc

      func.return %0 : tensor<i32>
    }
    )mlir";
      mlir::MLIRContext context;
      context.loadDialect<mlir::func::FuncDialect, mlir::TF::TensorFlowDialect>();
      mlir::OwningOpRef<mlir::ModuleOp> module =
          mlir::parseSourceString<mlir::ModuleOp>(code, &context);
      ASSERT_TRUE(module);
      EXPECT_TRUE(IsSupportedByReplicatedBridge(*module));
    }
    
    TEST(HasTPUPartitionedCallOpInModule, HasTPUPartitionedCallModule) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 19:51:50 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/main/java/org/gradle/language/base/plugins/ComponentModelBasePlugin.java

                @RuleTarget
                abstract ModelMap<BinarySpec> getBinaries();
                abstract void setBinaries(ModelMap<BinarySpec> binaries);
    
                @RuleInput
                abstract ModelMap<LanguageSourceSet> getSources();
                abstract void setSources(ModelMap<LanguageSourceSet> sources);
    
                @Mutate
                void initializeBinarySourceSets(ModelMap<BinarySpec> binaries) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 14K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

            absl::StrCat("Failed to open input file: ", error_message));
      }
    
      if (input_mlir) {
        source_mgr->AddNewSourceBuffer(std::move(file), llvm::SMLoc());
        return OwningOpRef<ModuleOp>(
            mlir::parseSourceFile<mlir::ModuleOp>(*source_mgr, context));
      }
    
      // Register extra TF ops passed as OpDef.
      auto extra_opdefs_status = RegisterExtraTfOpDefs(extra_tf_opdefs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
Back to top