Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 149 for freeze (0.2 sec)

  1. 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)
  2. cmd/globals.go

    		Timeout: 5 * time.Second,
    	}
    
    	globalForwarder *handlers.Forwarder
    
    	globalTierConfigMgr *TierConfigMgr
    
    	globalConsoleSrv *consoleapi.Server
    
    	// handles service freeze or un-freeze S3 API calls.
    	globalServiceFreeze atomic.Value
    
    	// Only needed for tracking
    	globalServiceFreezeCnt int32
    	globalServiceFreezeMu  sync.Mutex // Updates.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  3. testing/architecture-test/src/test/java/org/gradle/architecture/test/ArchUnitFixture.java

            .and(modifier(PUBLIC))
            .and(not(kotlin_internal_methods))
            .as("public API methods");
    
        static ArchRule freeze(ArchRule rule) {
            return new FreezeInstructionsPrintingArchRule(FreezingArchRule.freeze(rule));
        }
    
        static DescribedPredicate<JavaClass> gradlePublicApi() {
            return new GradlePublicApi();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  4. cmd/perf-tests.go

    // Copyright (c) 2022 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. cmd/notification.go

    }
    
    // ServiceFreeze freezes all S3 API calls when 'freeze' is true,
    // 'freeze' is 'false' would resume all S3 API calls again.
    // NOTE: once a tenant is frozen either two things needs to
    // happen before resuming normal operations.
    //   - Server needs to be restarted 'mc admin service restart'
    //   - 'freeze' should be set to 'false' for this call
    //     to resume normal operations.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tf_to_tfl_flatbuffer.cc

        const auto status = quantization::PreprocessAndFreezeGraph(
            module, module.getContext(), session);
        if (!status.ok()) {
          return status_handler.Combine(
              absl::InternalError("Failed to preprocess & freeze TF graph."));
        }
    
        // TODO: b/264218457 - Refactor the component below once StableHLO Quantizer
        // can run DRQ. Temporarily using TF Quantization for StableHLO DRQ.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  7. tensorflow/cc/tools/freeze_saved_model.cc

    }
    
    // Looks up the variable handle that provides input to node with node_name,
    // and returns the handle name if the handle corresponds to a variable that we
    // want to freeze (i.e. its name is contained in variable_node_names). If there
    // is no such handle in the graph (or we do not want to save that variable)
    // then NotFound error is returned.
    StatusOr<string> GetHandleNameIfNeedsToFreeze(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  8. src/sort/sort_test.go

    	}
    	d.ncmp++
    
    	if d.data[i] == d.gas && d.data[j] == d.gas {
    		if i == d.candidate {
    			// freeze i
    			d.data[i] = d.nsolid
    			d.nsolid++
    		} else {
    			// freeze j
    			d.data[j] = d.nsolid
    			d.nsolid++
    		}
    	}
    
    	if d.data[i] == d.gas {
    		d.candidate = i
    	} else if d.data[j] == d.gas {
    		d.candidate = j
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:41:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. cmd/server-main.go

    // Copyright (c) 2015-2024 MinIO, Inc.
    //
    // This file is part of MinIO Object Storage stack
    //
    // This program is free software: you can redistribute it and/or modify
    // it under the terms of the GNU Affero General Public License as published by
    // the Free Software Foundation, either version 3 of the License, or
    // (at your option) any later version.
    //
    // This program is distributed in the hope that it will be useful
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  10. tensorflow/cc/tools/freeze_saved_model_test.cc

        // Test freezing a graph with some variables that are needed and not needed
        // by
        // the outputs in the SignatureDef. The resulting graph should only freeze
        // dependent variables.
        SavedModelBundle saved_model_bundle;
        GraphDef graph_def;
        Scope scope = Scope::NewRootScope();
        Output a = ops::Const(scope.WithOpName("a"), 10.0f, {});
        Output read_var;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 07 13:30:31 UTC 2022
    - 21.7K bytes
    - Viewed (0)
Back to top