Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for pushBack (0.13 sec)

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

            int64_t size =
                padding_low[i] + shape[i] + (shape[i] - 1) * padding_interm[i];
            padding_high.push_back(input_dim - size);
          } else {
            dims_to_reverse.push_back(i);
            padding_high.push_back(input_dim - begin_indices[i] - 1);
            padding_interm.push_back(-strides[i] - 1);
    
            // Pad the lower dimension up to the expected input shape.
            int64_t size =
    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. src/net/http/h2_bundle.go

    		return http2errClientDisconnected
    	}
    }
    
    // writeFrame schedules a frame to write and sends it if there's nothing
    // already being written.
    //
    // There is no pushback here (the serve goroutine never blocks). It's
    // the http.Handlers that block, waiting for their previous frames to
    // make it onto the wire
    //
    // If you're not on the serve goroutine, use writeFrameFromHandler instead.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top