Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 200 for biases (0.09 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_import.cc

      UpdateFunctionAliases(function_aliases, *module_op);
    
      // Collect the names of the functions that have aliases so that they may not
      // be inlined.
      absl::flat_hash_set<std::string> aliased_function_names;
      absl::c_for_each(function_aliases, [&](const auto& aliases) {
        return aliased_function_names.insert(aliases.first);
      });
    
      TF_RETURN_IF_ERROR(PreprocessAndFreezeGraph(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. test/alias2.go

    func (A0) m1()  {} // ERROR "T0\.m1 already declared|redefinition of .m1."
    func (A0) m2()  {}
    
    // Type aliases and the original type name can be used interchangeably.
    var _ A0 = T0{}
    var _ T0 = A0{}
    
    // But aliases and original types cannot be used with new types based on them.
    var _ N0 = T0{} // ERROR "cannot use T0{} \(value of type T0\) as N0 value in variable declaration"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:09:14 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/typeparams/common.go

    // In this case, GenericAssignableTo reports that instantiations of Container
    // are assignable to the corresponding instantiation of Interface.
    func GenericAssignableTo(ctxt *types.Context, V, T types.Type) bool {
    	V = aliases.Unalias(V)
    	T = aliases.Unalias(T)
    
    	// If V and T are not both named, or do not have matching non-empty type
    	// parameter lists, fall back on types.AssignableTo.
    
    	VN, Vnamed := V.(*types.Named)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/builder_test.go

    			input:    "simple-policy-td-aliases-in.yaml",
    			want:     []string{"simple-policy-td-aliases-out.yaml"},
    		},
    		{
    			name:     "trust-domain-multiple-aliases",
    			tdBundle: trustdomain.NewBundle("td1", []string{"cluster.local", "some-td"}),
    			input:    "simple-policy-multiple-td-aliases-in.yaml",
    			want:     []string{"simple-policy-multiple-td-aliases-out.yaml"},
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  5. releasenotes/notes/noble-base.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 18:50:51 UTC 2024
    - 194 bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_import.h

    // Gets the function aliases from the SavedModel.
    absl::StatusOr<absl::flat_hash_map<FunctionName, FunctionAlias>>
    GetFunctionAliases(absl::string_view saved_model_path,
                       const std::unordered_set<std::string>& tags);
    
    // Updates the function aliases. `module_op` may have different
    // function names from the original model, so it re-associates the aliases
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo.cc

            quant::stablehlo::GetFunctionAliases(input_path, tag_set));
        quant::stablehlo::UpdateFunctionAliases(function_aliases, *module_op);
        absl::c_for_each(function_aliases, [&](const auto& aliases) {
          return aliased_function_names.insert(aliases.first);
        });
      }
    
      std::optional<tensorflow::Session*> session;
      if (saved_model_bundle) {
        session = saved_model_bundle->GetSession();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. doc/next/6-stdlib/99-minor/go/types/cl-577715.md

    <!-- CL 577715, CL 579076 -->
    By default, go/types now produces [Alias] type nodes for type aliases.
    This behavior can be controlled by the `GODEBUG` `gotypesalias` flag.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 21:30:00 UTC 2024
    - 230 bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolInfoProvider.kt

            // necessary condition for it. Type aliases are not a problem here: Java code cannot access Kotlin type aliases. (Currently,
            // deprecation annotation type aliases do not work in Kotlin, either, but this might change in the future.)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. src/go/internal/gcimporter/ureader.go

    		// Within types2, position bases have a lot more details (e.g.,
    		// keeping track of where //line directives appeared exactly).
    		//
    		// For go/types, we just track the file name.
    
    		filename = r.String()
    
    		if r.Bool() { // file base
    			// Was: "b = token.NewTrimmedFileBase(filename, true)"
    		} else { // line base
    			pos := r.pos()
    			line := r.Uint()
    			col := r.Uint()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top