Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 51 for main2 (0.06 sec)

  1. src/cmd/go/internal/load/pkg.go

    	// MainOnly is true if the caller only wants to load main packages.
    	// For a literal argument matching a non-main package, a stub may be returned
    	// with an error. For a non-literal argument (with "..."), non-main packages
    	// are not be matched, and their dependencies may not be loaded. A warning
    	// may be printed for non-literal arguments that match no main packages.
    	MainOnly bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller_test.go

    									ContainerName: ptr.To("main-container"),
    									Operator:      batch.PodFailurePolicyOnExitCodesOpIn,
    									Values:        []int32{1, 2, 3},
    								},
    							},
    							{
    								Action: batch.PodFailurePolicyActionFailJob,
    								OnExitCodes: &batch.PodFailurePolicyOnExitCodesRequirement{
    									ContainerName: ptr.To("main-container"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // Entry functions for signature defs.
      std::vector<FuncOp> entry_functions;
      std::vector<FuncOp> non_entry_functions;
      FuncOp main_fn = module_.lookupSymbol<FuncOp>("main");
      if (main_fn != nullptr) {
        // Treat the main function as a signature def when the given main function
        // contains on the tf.entry_function attribute.
        auto attrs =
            main_fn->getAttrOfType<mlir::DictionaryAttr>("tf.entry_function");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

                             ops_to_skip);
      auto main = module.lookupSymbol<mlir::func::FuncOp>("main");
      // Error if no main to refine with input shapes
      if (!main && !input_shapes.empty()) {
        return module->emitError(
            "Input shapes provided but no `main` function found.");
      }
    
      // Add main function to head of queue, refine input shapes if provided
      if (main) {
        if (!input_shapes.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/exec.go

    			}
    
    			// Remove duplicate main symbol with runtime/cgo on AIX.
    			// With runtime/cgo, two main are available:
    			// One is generated by cgo tool with {return 0;}.
    			// The other one is the main calling runtime.rt0_go
    			// in runtime/cgo.
    			// The second can't be used by cgo programs because
    			// runtime.rt0_go is unknown to them.
    			// Therefore, we let ld remove this main version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

        // CHECK-NEXT: "tf._TPUCompileMlir"(%[[A_SHAPE_OUTPUT]])
        // CHECK-SAME: metadata
        // CHECK-SAME: mlir_module
        // CHECK-SAME: func @main
        // CHECK-SAME: tf.B
        // CHECK-NOT: func = @tpu0_func
        // CHECK: "tf_device.launch"() <{device = "/job:worker/replica:0/task:0/device:CPU:0"}>
        // CHECK-NEXT: "tf.TPUCompileSucceededAssert"(%[[COMPILE_OUTPUT]]#0)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.s

    	CMPQ inl, $256
    	JBE  sealAVX2Tail256
    	CMPQ inl, $384
    	JBE  sealAVX2Tail384
    	CMPQ inl, $512
    	JBE  sealAVX2Tail512
    
    	// We have 448 bytes to hash, but main loop hashes 512 bytes at a time - perform some rounds, before the main loop
    	VMOVDQA ·chacha20Constants<>(SB), AA0; VMOVDQA AA0, AA1; VMOVDQA AA0, AA2; VMOVDQA AA0, AA3
    	VMOVDQA state1StoreAVX2, BB0; VMOVDQA BB0, BB1; VMOVDQA BB0, BB2; VMOVDQA BB0, BB3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 105.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

          return {0, 0, 0, 0};
        }
    
        auto padding_values = padding_attr.getValues<int64_t>();
        // Padding has [[h_low, h_high], [w_low, w_high]] format.
        // https://github.com/openxla/stablehlo/blob/main/docs/spec.md#convolution.
        return {padding_values[0], padding_values[1], padding_values[2],
                padding_values[3]};
      }
    
      // Returns the input and output dimensions, respectively.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        // side.
        //
        // We also use this as the name for the NameLoc for ops in function, since
        // otherwise our names could collide across functions.
        // For ops in the main graph, we omit the "@function_name" (which, would be
        // just "@" since function_name would be empty) because some code seems to
        // depend on the name being this way for correctness.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/data.go

    		}
    
    		if rs != 0 && (rst == sym.Sxxx || rst == sym.SXREF) {
    			// When putting the runtime but not main into a shared library
    			// these symbols are undefined and that's OK.
    			if target.IsShared() || target.IsPlugin() {
    				if ldr.SymName(rs) == "main.main" || (!target.IsPlugin() && ldr.SymName(rs) == "main..inittask") {
    					sb := ldr.MakeSymbolUpdater(rs)
    					sb.SetType(sym.SDYNIMPORT)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top