Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for synthesized (0.16 sec)

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

    	}
    	return p.ImportPath
    }
    
    // IsTestOnly reports whether p is a test-only package.
    //
    // A “test-only” package is one that:
    //   - is a test-only variant of an ordinary package, or
    //   - is a synthesized "main" package for a test binary, or
    //   - contains only _test.go files.
    func (p *Package) IsTestOnly() bool {
    	return p.ForTest != "" ||
    		p.Internal.TestmainGo != nil ||
    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/kubelet/kubelet.go

    	volumeManager volumemanager.VolumeManager
    
    	// statusManager receives updated pod status updates from the podWorker and updates the API
    	// status of those pods to match. The statusManager is authoritative for the synthesized
    	// status of the pod from the kubelet's perspective (other components own the individual
    	// elements of status) and should be consulted by components in preference to assembling
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    // are ignored by the go command.
    //
    // As a special case, if the package list is a list of .go files from a
    // single directory, the command is applied to a single synthesized
    // package made up of exactly those files, ignoring any build constraints
    // in those files and ignoring any other files in the directory.
    //
    // Directory and file names that begin with "." or "_" are ignored
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/fiat/p521_fiat64.go

    //
    //
    //
    // NOTE: In addition to the bounds specified above each function, all
    //
    //   functions synthesized for this Montgomery arithmetic require the
    //
    //   input to be strictly less than the prime modulus (m), and also
    //
    //   require the input to be in the unique saturated representation.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 05 21:53:03 UTC 2022
    - 167K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    //   %2 = tf.Mul(%0, %1)
    //
    // If a minor fraction of the Concat inputs are not of the same binary op kind
    // (tf.Mul in the above example), we will synthesize the binary ops for those
    // inputs. e.g. if we instead have %1 = %lhs_1, then we would synthesize a
    // tf.Mul op over it and a scalar const tensor 1.0. For now this only applies to
    // float32 tensors.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/canonicalize.mlir

      %2 = "tf.Mul"(%arg1, %arg3) : (tensor<f32>, tensor<f32>) -> tensor<f32>
      %3 = "tf.ConcatV2"(%1, %2, %0) : (tensor<f32>, tensor<f32>, tensor<i32>) -> tensor<2xf32>
    
      func.return %3 : tensor<2xf32>
    }
    
    // Synthesize binary ops when 1 of the 3 concat inputs is a non-binary op.
    // CHECK-LABEL: testConcatCwiseBinarySynthMulOp3Inputs
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 132.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    	case 22: /* add $lcon/$andcon,r1,r2 ==> oris+ori+add/ori+add, add $s34con,r1 ==> addis+ori+slw+ori+add */
    		if p.To.Reg == REGTMP || p.Reg == REGTMP {
    			c.ctxt.Diag("can't synthesize large constant\n%v", p)
    		}
    		d := c.vregoff(&p.From)
    		r := int(p.Reg)
    		if r == 0 {
    			r = int(p.To.Reg)
    		}
    		if p.From.Sym != nil {
    			c.ctxt.Diag("%v is not supported", p)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (FCMPS (FMOVSconst [0]) x) => (InvertFlags (FCMPS0 x))
    (FCMPD x (FMOVDconst [0])) => (FCMPD0 x)
    (FCMPD (FMOVDconst [0]) x) => (InvertFlags (FCMPD0 x))
    
    // CSEL needs a flag-generating argument. Synthesize a TSTW if necessary.
    (CondSelect x y boolval) && flagArg(boolval) != nil => (CSEL [boolval.Op] x y flagArg(boolval))
    (CondSelect x y boolval) && flagArg(boolval) == nil => (CSEL [OpARM64NotEqual] x y (TSTWconst [1] boolval))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
Back to top