Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 73 for capturing (1.12 sec)

  1. tensorflow/compiler/mlir/lite/tf_tfl_passes.h

    namespace tensorflow {
    
    // Add the TF to TFLite passes, specified in the pass_config, into a
    // pass_manager. The session object will be provided when the TF MLIR is
    // imported from saved model version one and utilized for capturing resource
    // variables. If the `saved_model_dir` directory path is provided, then the
    // `tf_saved_model.asset` ops will be freezed.
    void AddTFToTFLConversionPasses(llvm::StringRef saved_model_dir,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 06:14:07 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/internal/taskgraph/CalculateTaskGraphBuildOperationType.java

            /**
             * Lexicographically sorted.
             * Never null.
             * Never contains duplicates.
             */
            List<String> getExcludedTaskPaths();
    
            /**
             * Capturing task execution plan details.
             *
             * @since 6.2
             */
            List<PlannedTask> getTaskPlan();
    
            /**
             * Returns an execution plan consisting of nodes of the given types.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/gcs/cleanup.h

    ==============================================================================*/
    
    // MakeCleanup(f) returns an RAII cleanup object that calls 'f' in its
    // destructor. The easiest way to use MakeCleanup is with a lambda argument,
    // capturing the return value in an 'auto' local variable. Most users will not
    // need more sophisticated syntax than that.
    //
    // Example:
    //   void func() {
    //     FILE* fp = fopen("data.txt", "r");
    //     if (fp == nullptr) return;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 09 11:16:00 UTC 2020
    - 3.4K bytes
    - Viewed (0)
  4. build-logic/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts

    val localRepository = layout.buildDirectory.dir("repository")
    
    val publishPluginsToTestRepository by tasks.registering {
        dependsOn("publishPluginMavenPublicationToTestRepository")
        val repoDir = localRepository // Prevent capturing the Gradle script instance for configuration cache compatibility
        // This should be unified with publish-public-libraries if possible
        doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/results/StateTrackingTestResultProcessor.java

            //and we need to have a matching descriptor to inform the user which test this output belongs to
            //we will use the current parent
    
            //(SF) This approach should generally work because at the moment we reset capturing output per suite
            //(see CaptureTestOutputTestResultProcessor) and that reset happens earlier in the chain.
            //So in theory when suite is completed, the output redirector has been already stopped
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/properties/annotations/NestedValidationUtil.java

         * supports the given bean type.
         * <p>
         * Nested types are expected to either declare some annotated properties,
         * which themselves are checked for annotations, or some conditional
         * behaviour where capturing the type itself as input is important.
         * <p>
         * Types of the Java SE API, types of the Kotlin stdlib, and Groovy's
         * GString type are not supported because they meet neither of those
         * requirements.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 09:10:37 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. src/regexp/syntax/simplify.go

    // and with various other simplifications, such as rewriting /(?:a+)+/ to /a+/.
    // The resulting regexp will execute correctly but its string representation
    // will not produce the same parse tree, because capturing parentheses
    // may have been duplicated or removed. For example, the simplified form
    // for /(x){1,2}/ is /(x)(x)?/ but both parentheses capture as $1.
    // The returned regexp may share structure with or be the original.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 02 00:13:47 UTC 2016
    - 4.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/readonly_references_to_resources.cc

    //
    // For the background, this pass is a part of hoisting VariableV2 ops by
    // re-using the pipeline for hoisting (VarHandle -> ReadVariable) cases, which
    //  can be done by the following passes:
    //  - Capturing resource values into global tensors (importing saved model).
    //  - Promoting VarHandle ops to function input/outputs.
    //  - Freezing global tensor pass.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/fuse_convolution_pass.cc

     public:
      using OpRewritePattern<mhlo::MulOp>::OpRewritePattern;
    
      LogicalResult matchAndRewrite(mhlo::MulOp mul_op,
                                    PatternRewriter &rewriter) const override {
        // Variables for capturing values and attributes used while creating ops.
        mhlo::ConvolutionOp conv_op;
        Operation *bcast_or_const_op;
        shape::ShapeOfOp shape_of_op;
        mhlo::ConstantOp filter;
        mhlo::ConstantOp multiplier;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 22:21:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. src/go/internal/gccgoimporter/importer_test.go

    		}
    
    		if !found {
    			t.Errorf("%s: could not find expected function %q", test.pkgpath, test.wantinits[0])
    		}
    
    		// FIXME: the original version of this test was written against
    		// the v1 export data scheme for capturing init functions, so it
    		// verified the priority values. We moved away from the priority
    		// scheme some time ago; it is not clear how much work it would be
    		// to validate the new init export data.
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:17:57 UTC 2022
    - 7.2K bytes
    - Viewed (0)
Back to top