Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for put$index (0.21 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/einsum.cc

        auto rhs_index = rhs_map.find(lhs[i]);
        auto out_index = out_map.find(lhs[i]);
        if (rhs_index == rhs_map.end() && out_index == out_map.end()) {
          dnums.lhs.emplace_back(i);
        } else if (rhs_index == rhs_map.end()) {
          dnums.lhs_out.emplace_back(i, out_index->second);
        } else if (out_index == out_map.end()) {
          dnums.lhs_rhs.emplace_back(i, rhs_index->second);
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "GetCallerPC"},                         // for getcallerpc intrinsic
    	{name: "GetCallerSP", argLength: 1},           // for getcallersp intrinsic. arg0=mem.
    
    	// Indexing operations
    	{name: "PtrIndex", argLength: 2},             // arg0=ptr, arg1=index. Computes ptr+sizeof(*v.type)*index, where index is extended to ptrwidth type
    	{name: "OffPtr", argLength: 1, aux: "Int64"}, // arg0 + auxint (arg0 and result are pointers)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
Back to top