Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 551 for freeze (0.21 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/freeze_global_tensors.cc

    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_types.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_passes.h"
    
    #define DEBUG_TYPE "freeze-global-tensor"
    
    namespace mlir {
    namespace tf_saved_model {
    
    namespace {
    
    #define GEN_PASS_DEF_FREEZEGLOBALTENSORSPASS
    #include "tensorflow/compiler/mlir/tensorflow/transforms/tf_savedmodel_passes.h.inc"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. testing/architecture-test/src/test/java/org/gradle/architecture/test/KotlinCompatibilityTest.java

    import static org.gradle.architecture.test.ArchUnitFixture.freeze;
    import static org.gradle.architecture.test.ArchUnitFixture.gradlePublicApi;
    
    @AnalyzeClasses(packages = "org.gradle")
    public class KotlinCompatibilityTest {
    
        @ArchTest
        public static final ArchRule consistent_nullable_annotations_on_public_api = freeze(classes().that(are(gradlePublicApi())).should(haveAccessorsWithSymmetricalNullableAnnotations()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. cmd/main.go

    	if env.Get("_MINIO_DEBUG_NO_EXIT", "") != "" {
    		freeze := func(_ int) {
    			// Infinite blocking op
    			<-make(chan struct{})
    		}
    
    		// Override the logger os.Exit()
    		logger.ExitFunc = freeze
    
    		defer func() {
    			if err := recover(); err != nil {
    				fmt.Println("panic:", err)
    				fmt.Println("")
    				fmt.Println(string(debug.Stack()))
    			}
    			freeze(-1)
    		}()
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_freeze_global_tensors_mutable_tensors.mlir

    // RUN: tf-opt "-tf-saved-model-freeze-global-tensors=allow-mutable-tensors=true" -split-input-file %s | FileCheck %s
    
    module attributes {tf_saved_model.semantics} {
    
      // Test case: Do not fail if the tensor is mutable but allow_mutable_tensors is true
    
      "tf_saved_model.global_tensor"() { is_mutable, sym_name = "v", type = tensor<f32>, value = dense<1.0> : tensor<f32> } : () -> ()
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 703 bytes
    - Viewed (0)
  5. src/internal/coverage/stringtab/stringtab.go

    			return fmt.Errorf("short write emitting stringtab")
    		}
    	}
    	return nil
    }
    
    // Freeze sends a signal to the writer that no more additions are
    // allowed, only lookups of existing strings (if a lookup triggers
    // addition, a panic will result). Useful as a mechanism for
    // "finalizing" a string table prior to writing it out.
    func (stw *Writer) Freeze() {
    	stw.frozen = true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 11 12:40:42 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  6. testing/architecture-test/src/test/java/org/gradle/architecture/test/FreezeInstructionsPrintingArchRule.java

            try {
                return delegate.evaluate(classes);
            } catch (RuntimeException e) {
                if (e.getMessage().contains("freeze.store")) {
                    throw new RuntimeException("ArchUnit violations changed, please refreeze and check the differences by running ./gradlew architecture-test:test -ParchunitRefreeze", e);
                } else {
                    throw e;
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. testing/architecture-test/src/test/java/org/gradle/architecture/test/ConfigurationCreationTest.java

    import groovy.lang.Closure;
    import org.gradle.api.Action;
    import org.gradle.api.internal.artifacts.configurations.ConfigurationRole;
    
    import static org.gradle.architecture.test.ArchUnitFixture.freeze;
    
    /**
     * Tests that {@link org.gradle.api.artifacts.Configuration}s are created using the correct factory methods.
     */
    @AnalyzeClasses(packages = "org.gradle")
    public final class ConfigurationCreationTest {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

        llvm::cl::desc("Smuggle disallowed ops via stablehlo.custom_calls."),
        llvm::cl::Optional, llvm::cl::init(true));
    
    // NOLINTNEXTLINE
    opt<bool> freeze_tf_graph(
        "freeze-tf-graph",
        llvm::cl::desc("Freeze TF graph to remove tf.ResourceVariable, etc."),
        llvm::cl::Optional, llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<std::string> exported_model_signatures(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/attributes/FreezableAttributeContainer.java

            this.delegate = delegate;
            this.owner = owner;
        }
    
        /**
         * Prevent further mutations to this attribute container.
         */
        public void freeze() {
            this.delegate = delegate.asImmutable();
        }
    
        @Override
        public String toString() {
            return delegate.toString();
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 05 20:59:50 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_freeze_global_tensors.mlir

    // RUN: tf-opt -verify-diagnostics -tf-saved-model-freeze-global-tensors -split-input-file %s | FileCheck %s
    
    // CHECK-LABEL: module attributes
    module attributes {tf_saved_model.semantics} {
    
      // Test case: Basic freezing.
    
      // CHECK-NOT: tf_saved_model.global_tensor
     "tf_saved_model.global_tensor"() {sym_name = "v", type = tensor<f32>, value = dense<1.0> : tensor<f32> } : () -> ()
    
      // CHECK: func @f()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 15 03:07:35 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top