Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 326 for rewrite (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      );
    
      let results = (outs);
    }
    
    // TODO(b/168035831): Model db_uri read/write.
    def TF_CreateSummaryDbWriterOp : TF_Op<"CreateSummaryDbWriter", []> {
      let summary = "Creates summary database writer accessible by given resource handle.";
    
      let description = [{
    This can be used to write tensors from the execution graph directly
    to a database. Only SQLite is supported right now. This function
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  2. src/cmd/cover/cover.go

    	pkgconfig        covcmd.CoverPkgConfig
    	outputfiles      []string // list of *.cover.go instrumented outputs to write, one per input (set when -pkgcfg is in use)
    	profile          string   // The profile to read; the value of -html or -func
    	counterStmt      func(*File, string) string
    	covervarsoutfile string // an additional Go source file into which we'll write definitions of coverage counter variables + meta data variables (set when -pkgcfg is in use).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/typecheck/typecheck.go

    	}
    	if len(list) != 1 {
    		Exprs(list)
    		return
    	}
    
    	typecheckslice(list, ctxExpr|ctxMultiOK)
    	t := list[0].Type()
    	if t == nil || !t.IsFuncArgStruct() {
    		return
    	}
    
    	// Rewrite f(g()) into t1, t2, ... = g(); f(t1, t2, ...).
    	RewriteMultiValueCall(n, list[0])
    }
    
    // RewriteNonNameCall replaces non-Name call expressions with temps,
    // rewriting f()(...) to t0 := f(); t0(...).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. 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)
  5. src/internal/fuzz/fuzz.go

    	}
    	return nil
    }
    
    // writeToCorpus atomically writes the given bytes to a new file in testdata. If
    // the directory does not exist, it will create one. If the file already exists,
    // writeToCorpus will not rewrite it. writeToCorpus sets entry.Path to the new
    // file that was just written or an error if it failed.
    func writeToCorpus(entry *CorpusEntry, dir string) (err error) {
    	sum := fmt.Sprintf("%x", sha256.Sum256(entry.Data))[:16]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  6. src/index/suffixarray/sais.go

    		j := int(sa[i])
    		if j >= 0 {
    			// Skip non-flagged entry.
    			// (This loop can't see an empty entry; 0 means the real zero index.)
    			continue
    		}
    
    		// Negative j is a work queue entry; rewrite to positive j for final suffix array.
    		j = -j
    		sa[i] = int32(j)
    
    		// Index j was on work queue (encoded as -j but now decoded),
    		// meaning k := j-1 is L-type,
    		// so we can now place k correctly into sa.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        string device_;
    
        // NodeDef for the function call node.
        NodeDef call_node_def_;
    
        // Name that is used for the call node. This may not be
        // call_node_def_.name() if the client supplies a rewrite lambda.
        string function_def_name_;
    
        // Placeholder node simulating the host compute key in the output graph.
        // Not owned.
        Node* host_compute_key_placeholder_ = nullptr;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  8. src/syscall/syscall_linux.go

    		sa.Addr = pp.Addr
    		return sa, nil
    
    	case AF_UNIX:
    		pp := (*RawSockaddrUnix)(unsafe.Pointer(rsa))
    		sa := new(SockaddrUnix)
    		if pp.Path[0] == 0 {
    			// "Abstract" Unix domain socket.
    			// Rewrite leading NUL as @ for textual display.
    			// (This is the standard convention.)
    			// Not friendly to overwrite in place,
    			// but the callers below don't care.
    			pp.Path[0] = '@'
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. src/math/big/natdiv.go

    			panic("impossible")
    		}
    		c := subVV(uu[:len(qhatv)], uu[:len(qhatv)], qhatv)
    		if c > 0 {
    			subVW(uu[len(qhatv):], uu[len(qhatv):], c)
    		}
    		addAt(z, qhat, j-B)
    		j -= B
    	}
    
    	// TODO(rsc): Rewrite loop as described above and delete all this code.
    
    	// Now u < (v<<B), compute lower bits in the same way.
    	// Choose shift = B-1 again.
    	s := B - 1
    	qhat := *temps[depth]
    	clear(qhat)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/PPC64Ops.go

    		{name: "MOVHstore", argLength: 3, reg: gpstore, asm: "MOVH", aux: "SymOff", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"}, // store 2 bytes
    		{name: "MOVWstore", argLength: 3, reg: gpstore, asm: "MOVW", aux: "SymOff", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"}, // store 4 bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 43.8K bytes
    - Viewed (0)
Back to top