Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 121 for func_0 (0.11 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_tf_xla_call_module_to_stablehlo_pass.cc

          }
          SymbolTable::setSymbolName(func_op, new_func_name);
        }
        // Move all functions from XlaCallModuleOp's stablehlo module, to parent
        // module. Also marks the stablehlo module entry function as private.
        func::FuncOp main_fn;
        for (auto func_op : stablehlo_module_op.get().getOps<func::FuncOp>()) {
          func::FuncOp cloned_func_op = func_op.clone();
          if (IsShloMainFuncOp(cloned_func_op)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 25 09:43:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. src/cmd/cover/func.go

    			startLine: start.Line,
    			startCol:  start.Column,
    			endLine:   end.Line,
    			endCol:    end.Column,
    		}
    		v.funcs = append(v.funcs, fe)
    	}
    	return v
    }
    
    // coverage returns the fraction of the statements in the function that were covered, as a numerator and denominator.
    func (f *FuncExtent) coverage(profile *cover.Profile) (num, den int64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/inl.go

    //
    //	 1 func main() {
    //	 2     f()
    //	 3 }
    //	 4 func f() {
    //	 5     g()
    //	 6 }
    //	 7 func g() {
    //	 8     h()
    //	 9     h()
    //	10 }
    //	11 func h() {
    //	12     println("H")
    //	13 }
    //
    // Assuming the global tree starts empty, inlining will produce the
    // following tree:
    //
    //	[]InlinedCall{
    //	  {Parent: -1, Func: "f", Pos: <line 2>},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 22:47:15 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_main_function.cc

    // function.
    bool ShouldIncludeInMainFunction(func::FuncOp func_op) {
      return !func_op.isPrivate() && IsExported(func_op) &&
             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);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/encoder.md

    Por exemplo, se você precisar armazená-lo em um banco de dados.
    
    Para isso, **FastAPI** fornece uma função `jsonable_encoder()`.
    
    ## Usando a função `jsonable_encoder`
    
    Vamos imaginar que você tenha um banco de dados `fake_db` que recebe apenas dados compatíveis com JSON.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/resource_device_inference.cc

          getAnalysis<TF::ResourceAliasAnalysis>();
    
      llvm::SmallDenseMap<func::FuncOp, PerFunctionResult, 4> per_function_results;
      llvm::SetVector<func::FuncOp> worklist;
      for (auto func_op : module.getOps<func::FuncOp>()) {
        worklist.insert(func_op);
        per_function_results.try_emplace(
            func_op, func_op, resource_alias_analysis.GetAnalysisForFunc(func_op));
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 03:47:00 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/utils/lstm_utils.cc

      Value input = func_op.getArgument(0);
      Value output_init_state = func_op.getArgument(1);
      Value hidden_init_state = func_op.getArgument(2);
      Value weight_kernel = func_op.getArgument(3);
      Value recurrent_kernel = func_op.getArgument(4);
      Value bias = func_op.getArgument(5);
    
      // The func op should have 5 outputs.
      if (func_op.getNumResults() != 5) return failure();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/passes/unwrap_xla_call_module_op.cc

                                   TF::kStablehloEntryFunctionAttrName)
                               .getValue();
      func::FuncOp func_op = symbol_table.lookup<func::FuncOp>(function_name);
    
      // We should not unwrap if the function is not from
      // ReplaceStablehloOpsInMainFunctionWithXlaCallModuleOpsPass.
      if (!func_op->hasAttr(TF::kFromXlaCallModuleAttrName)) {
        return;
      }
    
      MLIRContext* context = call_op.getContext();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 07:39:40 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/analysis/test_tensor_array_side_effect_analysis.cc

        TensorArraySideEffectAnalysis tensor_array_side_effect_analysis(module);
    
        for (auto func_op : module.getOps<mlir::func::FuncOp>()) {
          func_op.emitRemark() << "HasAtMostTensorArrayEffect: "
                               << tensor_array_side_effect_analysis
                                      .HasAtMostTensorArrayEffect(func_op);
        }
      }
    };
    
    mlir::PassRegistration<TestTensorArraySideEffectAnalysis> pass;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Apr 10 21:32:05 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. src/syscall/js/func.go

    // new goroutine.
    //
    // Func.Release must be called to free up resources when the function will not be invoked any more.
    func FuncOf(fn func(this Value, args []Value) any) Func {
    	funcsMu.Lock()
    	id := nextFuncID
    	nextFuncID++
    	funcs[id] = fn
    	funcsMu.Unlock()
    	return Func{
    		id:    id,
    		Value: jsGo.Call("_makeFuncWrapper", id),
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 17:47:47 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top