Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for rewrite (0.62 sec)

  1. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        auto out_type = op.getZ().getType();
    
        l = rewriter.create<ConvertOp>(op.getLoc(), l, rewriter.getF32Type());
        r = rewriter.create<ConvertOp>(op.getLoc(), r, rewriter.getF32Type());
    
        auto intermediate = rewriter.create<TF::FloorDivOp>(
            op.getLoc(),
            ChangeTensorElementType(&rewriter, out_type, rewriter.getF32Type()), l,
            r);
    
        auto floor_op =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  2. cmd/erasure-healing.go

    			}
    
    			// Heal each part. erasure.Heal() will write the healed
    			// part to .minio/tmp/uuid/ which needs to be renamed
    			// later to the final location.
    			err = erasure.Heal(ctx, writers, readers, partSize, prefer)
    			closeBitrotReaders(readers)
    			closeBitrotWriters(writers)
    			if err != nil {
    				return result, err
    			}
    
    			// outDatedDisks that had write errors should not be
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Moves tf.AssignVariableOp consumers of tf_device.parallel_execute "
               "into tf_device.parallel_execute regions";
    
      let constructor = "TFTPU::CreateTPUParallelExecuteSinkResourceWritePass()";
    }
    
    def RewriteTPUEmbeddingOpsPass : Pass<"tf-rewrite-tpu-embedding-ops", "mlir::func::FuncOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    ((CMP|CMPW|CMPU|CMPWU) x y) && canonLessThan(x,y) => (InvertFlags ((CMP|CMPW|CMPU|CMPWU) y x))
    
    // n is always a zero-extended uint16 value, so n & z is always a non-negative 32 or 64 bit value.
    // Rewrite to a cmp int64(0) to lower into ANDCCconst in the latelower pass.
    (CMP(W|U|WU)const [0] a:(ANDconst [n] z)) => (CMPconst [0] a)
    
    // SETBC auxInt values 0=LT 1=GT 2=EQ   Crbit==1 ? 1 : 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/get.go

    				fmt.Fprintf(os.Stderr, "go: %v\n", c.String())
    			}
    		}
    
    		// modload.EditBuildList reports constraint errors at
    		// the module level, but 'go get' operates on packages.
    		// Rewrite the errors to explain them in terms of packages.
    		reason := func(m module.Version) string {
    			rv, ok := r.resolvedVersion[m.Path]
    			if !ok {
    				return fmt.Sprintf("(INTERNAL ERROR: no reason found for %v)", m)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //
    //	-coverprofile cover.out
    //	    Write a coverage profile to the file after all tests have passed.
    //	    Sets -cover.
    //
    //	-cpuprofile cpu.out
    //	    Write a CPU profile to the specified file before exiting.
    //	    Writes test binary as -c would.
    //
    //	-memprofile mem.out
    //	    Write an allocation profile to the file after all tests have passed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/DefaultContextAwareTaskLoggerCodec.kt

                write(it.messageRewriter)
            }
        }
    
        override suspend fun ReadContext.decode(): DefaultContextAwareTaskLogger =
            decodePreservingIdentity { id ->
                DefaultContextAwareTaskLogger(Logging.getLogger(Task::class.java)).also { logger ->
                    read()?.let { rewriter ->
                        logger.messageRewriter = rewriter as MessageRewriter
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    			panic("unreachable")
    		}
    		needWidth = true
    	} else if base.Flag.Race {
    		// for non-composite objects we can write just the start
    		// address, as any write must write the first byte.
    		switch kind {
    		case instrumentRead:
    			fn = ir.Syms.Raceread
    		case instrumentWrite:
    			fn = ir.Syms.Racewrite
    		default:
    			panic("unreachable")
    		}
    	} else if base.Flag.ASan {
    		switch kind {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. cmd/sftp-server_test.go

    	err := s.adm.SetUser(ctx, accessKey, secretKey, madmin.AccountEnabled)
    	if err != nil {
    		c.Fatalf("Unable to set user: %v", err)
    	}
    
    	err = s.adm.SetPolicy(ctx, "readwrite", accessKey, false)
    	if err != nil {
    		c.Fatalf("unable to set policy: %v", err)
    	}
    
    	newSSHCon := newSSHConnMock(accessKey + "=svc")
    	_, err = sshPasswordAuth(newSSHCon, []byte("invalid"))
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

            withGradleIsolate(owner, internalTypesCodec) {
                doWrite(work)
            }
        }
    
        suspend fun ReadContext.readWork(): ScheduledWork =
            withGradleIsolate(owner, internalTypesCodec) {
                doRead()
            }
    
        private
        suspend fun WriteContext.doWrite(work: ScheduledWork) {
            val nodes = work.scheduledNodes
            val nodeCount = nodes.size
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top