Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 99 for visibility (0.31 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_main_function.cc

             IsEntryFunction(func_op);
    }
    
    // Sets a function to be private so it can be referred internally.
    void SetFunctionPrivate(func::FuncOp func) {
      func.setVisibility(SymbolTable::Visibility::Private);
    
      // The `tf_saved_model` attributes can only be applied to public functions.
      for (auto& attr : func->getAttrs()) {
        StringRef attr_name = attr.getName().getValue();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

      let description = [{
        Defines a function that can be used to decompose an TF function call to
        the invocation of a set of other TF ops.
    
        Syntax:
    
        ```
        op ::= `tfr.func` visibility? symbol-ref-id `(` argument-list `)` (`->`
        function-result-list)? function-attributes? region
        ```
    
        Example:
    
        ```mlir
        tfr.func @foo(%arg0: !tfr.tensor, %arg1: !tfr.tensor_list<T>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/cbor/internal/modes/appendixa_test.go

    		reasons []string // reasons for re-encode difference
    
    		// TODO: The cases with nonempty fixme are known to be not working and fixing them
    		// is an alpha criteria. They're present and skipped for visibility.
    		fixme string
    	}{
    		{
    			example: hex("00"),
    			decoded: int64(0),
    		},
    		{
    			example: hex("01"),
    			decoded: int64(1),
    		},
    		{
    			example: hex("0a"),
    			decoded: int64(10),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 15 18:59:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

      for (Value arg : arguments) {
        arg_locs.push_back(arg.getLoc());
      }
    
      auto wrap_func = builder.create<func::FuncOp>(location, func_name, func_type);
      wrap_func.setVisibility(SymbolTable::Visibility::Private);
      // The callee function for TF::XlaCallModuleOp must have this attribute.
      if (call_op_type == FunctionCallOpType::TFXlaCallModuleOp) {
        wrap_func->setAttr(TF::kFromXlaCallModuleAttrName, builder.getUnitAttr());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/replace_stablehlo_ops_in_main_function_with_xla_call_module_ops.cc

          module_op.getLoc(), CreateStablehloFunctionName(stablehlo_func_id),
          FunctionType::get(ctx, arg_types, result_types));
      stablehlo_func_op.setVisibility(SymbolTable::Visibility::Private);
      stablehlo_func_op->setAttr(TF::kFromXlaCallModuleAttrName,
                                 builder.getUnitAttr());
    
      builder.createBlock(&stablehlo_func_op.getBody(), stablehlo_func_op.begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/serving.go

    		"domain patterns which are fully qualified domain names, possibly with prefixed wildcard "+
    		"segments. The domain patterns also allow IP addresses, but IPs should only be used if "+
    		"the apiserver has visibility to the IP address requested by a client. "+
    		"If no domain patterns are provided, the names of the certificate are "+
    		"extracted. Non-wildcard matches trump over wildcard matches, explicit domain patterns "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 13:08:18 UTC 2024
    - 15.9K bytes
    - Viewed (1)
  7. platforms/jvm/plugins-java-base/src/testFixtures/groovy/org/gradle/java/compile/AbstractJavaGroovyCompileAvoidanceIntegrationSpec.groovy

            succeeds ":b:${language.compileTaskName}"
            executedAndNotSkipped ":a:${language.compileTaskName}"
            executedAndNotSkipped ":b:${language.compileTaskName}"
    
            when:
            // change to visibility
            sourceFile.text = """
                package org;
                ${language == CompiledLanguage.GROOVY ? "@groovy.transform.PackageScope" : ""} interface ToolImpl { void m(); }
            """
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

      pass_manager->addNestedPass<mlir::func::FuncOp>(
          mlir::createCanonicalizerPass());
      pass_manager->addNestedPass<mlir::func::FuncOp>(mlir::createCSEPass());
      // This pass does dead code elimination based on symbol visibility.
      pass_manager->addPass(mlir::createSymbolDCEPass());
    
      if (!pass_config.disable_variable_freezing) {
        // This pass 'freezes' immutable global tensors and inlines them as tf
        // constant ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. src/encoding/json/encode.go

    // were fields in the outer struct, subject to the usual Go visibility rules amended
    // as described in the next paragraph.
    // An anonymous struct field with a name given in its JSON tag is treated as
    // having that name, rather than being anonymous.
    // An anonymous struct field of interface type is treated the same as having
    // that type as its name, rather than being anonymous.
    //
    // The Go visibility rules for struct fields are amended for JSON when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    Gradle offers a several optimizations for Java compilation:
    
    * Run the compiler as a separate process
    * Switch internal-only dependencies to implementation visibility
    
    ==== Run the compiler as a separate process
    
    You can run the compiler as a separate process with the following configuration for any `JavaCompile` task:
    
    ====
    .build.gradle.kts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
Back to top