Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 479 for freeReg (0.58 sec)

  1. src/cmd/compile/internal/ssa/regalloc.go

    	pos src.XPos // source position of use of this register
    }
    
    // freeReg frees up register r. Any current user of r is kicked out.
    func (s *regAllocState) freeReg(r register) {
    	v := s.regs[r].v
    	if v == nil {
    		s.f.Fatalf("tried to free an already free register %d\n", r)
    	}
    
    	// Mark r as unused.
    	if s.f.pass.debug > regDebug {
    		fmt.Printf("freeReg %s (dump %s/%s)\n", &s.registers[r], v, s.regs[r].c)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_test_passes.td

    ==============================================================================*/
    
    include "mlir/Pass/PassBase.td"
    
    // TF SavedModel dialect test passes.
    
    def FreezeVariablesTestPass : Pass<"tf-freeze-variables-test-pass",
      "ModuleOp"> {
      let summary = "Freezes read only variables";
    
      let description = [{
        Test pass for freezing read only variables in the graph.
      }];
    
      let constructor = "::mlir::tf_test::CreateFreezeVariableTestPass()";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 00:21:29 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.h

    // * `export_to_mlir` enables exporting to MLIR text format, otherwise exported
    // in flat buffer. If the
    // * `session` pointer may provided, it will be used to freeze resource
    // variables. If the `saved_model_dir` directory path is provided, then the
    // `tf_saved_model.asset` ops will be freezed.
    Status ConvertTFExecutorToTFLOrFlatbuffer(
        mlir::ModuleOp module, bool export_to_mlir, toco::TocoFlags& toco_flags,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 08:30:24 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. tensorflow/c/kernels_experimental.h

    // the input and value tensors. It also accepts the copy callback provided by
    // pluggable vendor to do the copying of the tensors. The caller takes ownership
    // of the `source` and `dest` tensors and is responsible for freeing them with
    // TF_DeleteTensor. This function will return an error when the following
    // conditions are met:
    //   1. `validate_shape` is set to `true`
    //   2. The variable is initialized
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 07 14:44:39 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/permissions/permissions.kt

    @RequiresOptIn("Analysis should not be allowed to be run from the EDT, as otherwise it may cause IDE freezes.")
    public annotation class KaAllowAnalysisOnEdt
    
    /**
     * Allows [analyze][org.jetbrains.kotlin.analysis.api.analyze] to be called on the EDT in the given [action], which is normally not allowed.
     *
     * Analysis is not supposed to be invoked from the EDT, as it may cause freezes. Use at your own risk!
     */
    @KaAllowAnalysisOnEdt
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/LowMemoryDaemonExpirationStrategy.java

        private DaemonExpirationResult checkExpiry(OsMemoryStatusAspect.Available memory, long memoryThresholdInBytes) {
            long freeMem = memory.getFree();
            if (freeMem < memoryThresholdInBytes) {
                LOGGER.info("after free system {} memory ({}) fell below threshold of {}", memory.getName(), NumberUtil.formatBytes(freeMem), NumberUtil.formatBytes(memoryThresholdInBytes));
                return new DaemonExpirationResult(
                    GRACEFUL_EXPIRE,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. testing/architecture-test/src/test/java/org/gradle/architecture/test/ProviderMigrationArchitectureTest.java

            .that(are(mutable_public_API_properties))
            .and().haveRawReturnType(assignableTo(FileCollection.class))
            .should(haveFileCollectionReturnType()));
    
        @ArchTest
        public static final ArchRule mutable_public_api_properties_should_not_use_text_resources = freeze(methods()
            .that(are(mutable_public_API_properties))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. testing/architecture-test/src/test/java/org/gradle/architecture/library/freeze/LineNumberIgnoringViolationStore.java

     * limitations under the License.
     */
    
    package org.gradle.architecture.library.freeze;
    
    import com.tngtech.archunit.lang.ArchRule;
    import com.tngtech.archunit.library.freeze.TextFileBasedViolationStore;
    import com.tngtech.archunit.library.freeze.ViolationStore;
    
    import java.util.List;
    import java.util.Properties;
    
    import static java.util.stream.Collectors.toList;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/public/signature_def_param.h

    // Returns the name of the given parameter. The caller is not responsible for
    // freeing the returned char*.
    TF_CAPI_EXPORT extern const char* TF_SignatureDefParamName(
        const TF_SignatureDefParam* param);
    
    // Returns the TensorSpec associated with the given parameter. The caller is
    // not reponsible for freeing the returned TF_TensorSpec*.
    TF_CAPI_EXPORT extern const TF_TensorSpec* TF_SignatureDefParamTensorSpec(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 17:58:21 UTC 2020
    - 1.7K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/saved_model/public/signature_def_function_metadata.h

    // Retrieves the arguments of the SignatureDefFunction. The caller is not
    // responsible for freeing the returned pointer.
    TF_CAPI_EXPORT extern const TF_SignatureDefParamList*
    TF_SignatureDefFunctionMetadataArgs(
        const TF_SignatureDefFunctionMetadata* list);
    
    // Retrieves the returns of the SignatureDefFunction. The caller is not
    // responsible for freeing the returned pointer.
    TF_CAPI_EXPORT extern const TF_SignatureDefParamList*
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 30 17:58:21 UTC 2020
    - 1.8K bytes
    - Viewed (0)
Back to top