Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for cur_idx (0.11 sec)

  1. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

          rhs_batch_dim_size++;
        } else if (absl::StrContains(out_eq, c)) {
          int out_idx = out_eq.find(c);
          if (out_idx < rhs_out_idx_end) {
            return false;
          }
          if (out_idx < rhs_out_idx_start) rhs_out_idx_start = out_idx;
          if (out_idx > rhs_out_idx_end) rhs_out_idx_end = out_idx;
        }
      }
    
      if (lhs_batch_dim_size != rhs_batch_dim_size && lhs_batch_dim_size != 0 &&
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  2. schema/schema_test.go

    	if err != nil {
    		t.Fatalf("failed to parse embedded struct with primary key, got error %v", err)
    	}
    
    	fields := []schema.Field{
    		{Name: "ID", DBName: "cor_id", BindNames: []string{"CorpBase", "Model", "ID"}, DataType: schema.Uint, PrimaryKey: true, Size: 64, HasDefaultValue: true, AutoIncrement: true, TagSettings: map[string]string{"PRIMARYKEY": "PRIMARYKEY"}},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:31:23 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/pcln.go

    			off += 12
    		}
    		off = sb.SetUint32(ctxt.Arch, off, uint32(numPCData(ldr, s, fi)))
    
    		// Store the offset to compilation unit's file table.
    		cuIdx := ^uint32(0)
    		if cu := ldr.SymUnit(s); cu != nil {
    			cuIdx = cuOffsets[cu.PclnIndex]
    		}
    		off = sb.SetUint32(ctxt.Arch, off, cuIdx)
    
    		// startLine int32
    		off = sb.SetUint32(ctxt.Arch, off, uint32(startLine))
    
    		// funcID uint8
    		var funcID abi.FuncID
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

          target_eq[v] = '_';
        }
      }
    
      if (target_eq.size() > out_eq.size()) return false;
    
      for (int i = 0; i < target_eq.size(); i++) {
        int out_idx = out_eq.size() - target_eq.size() + i;
        if (target_eq[i] != '_' && out_eq[out_idx] != target_eq[i]) {
          return false;
        }
    
        if (target_eq[i] != '_') out_dims.push_back(i);
      }
    
      return true;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top