Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 492 for fetches (0.15 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    		ui.PrintErr(fmt.Sprintf("Fetched %d base profiles out of %d", got, want))
    	}
    
    	return psrc, pbase, msrc, mbase, save, nil
    }
    
    // chunkedGrab fetches the profiles described in source and merges them into
    // a single profile. It fetches a chunk of profiles concurrently, with a maximum
    // chunk size to limit its memory usage.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. pkg/volume/plugins.go

    	}
    	if len(matchedPluginNames) > 1 {
    		return nil, fmt.Errorf("multiple volume plugins matched: %s", strings.Join(matchedPluginNames, ","))
    	}
    
    	return match, nil
    }
    
    // FindPluginByName fetches a plugin by name. If no plugin is found, returns error.
    func (pm *VolumePluginMgr) FindPluginByName(name string) (VolumePlugin, error) {
    	pm.mutex.RLock()
    	defer pm.mutex.RUnlock()
    
    	var match VolumePlugin
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_save_function_ops_to_main.cc

    // Appends `value` to the arguments of the `FetchOp` of `graph_op`.
    void AppendValueToFetch(GraphOp graph_op, Value value) {
      FetchOp old_main_fetch = graph_op.GetFetch();
      auto fetches = llvm::to_vector(old_main_fetch.getFetches());
      fetches.emplace_back(value);
    
      auto builder = OpBuilder::atBlockTerminator(&graph_op.GetBody());
      builder.create<FetchOp>(old_main_fetch.getLoc(), std::move(fetches));
      old_main_fetch.erase();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. tools/bug-report/pkg/bugreport/bugreport.go

    		}
    	}
    
    	// Not all items are subject to timeout. Proceed only if the non-cancellable items have completed.
    	mandatoryWg.Wait()
    
    	// If log fetches have completed, cancel the timeout.
    	go func() {
    		optionalWg.Wait()
    		cmdTimer.Reset(0)
    	}()
    
    	// Wait for log fetches, up to the timeout.
    	<-cmdTimer.C
    
    	// Find the timeout duration left for the analysis process.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 20:57:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_initializer_function_ops_to_main.cc

      return wrapper_island_op;
    }
    
    // Adds a new fetch operand for the main function's GraphOp.
    void AddFetchOperandToMain(GraphOp main_graph_op, const Value fetch_operand) {
      FetchOp old_fetch = main_graph_op.GetFetch();
      const absl::Cleanup erase_old_fetch = [old_fetch]() mutable {
        old_fetch.erase();
      };
    
      auto fetches = llvm::to_vector(old_fetch.getFetches());
      fetches.emplace_back(fetch_operand);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:54:52 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/ir/tf_executor_ops.td

        graph and must match the return type of the graph.
      }];
    
      let arguments = (ins
        Variadic<AnyType>:$fetches
      );
    
      let builders = [
        OpBuilder<(ins),
        [{
          build($_builder, $_state, {});
        }]>
       ];
    
      let assemblyFormat = "($fetches^ `:` type($fetches))? attr-dict";
    
      let hasVerifier = 0;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 23 19:35:12 UTC 2023
    - 22K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/parallel_execute_to_islands.cc

          tf_executor::FetchOp fetch = graph_op.GetFetch();
          auto fetches = llvm::to_vector<8>(fetch.getOperands());
          fetches.append(unused_execute_controls.begin(),
                         unused_execute_controls.end());
          builder.setInsertionPoint(fetch);
          builder.create<tf_executor::FetchOp>(fetch.getLoc(), fetches);
          fetch.erase();
        }
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf_executor_ops_invalid.mlir

        tf_executor.fetch %1#0 : tensor<4x!tf_type.f32ref>
      }
      func.return %fetches : tensor<4x!tf_type.f32ref>
    }
    
    // -----
    
    // Check that switchN data operand is broadcastable with all output types
    func.func @invalid_switchN(%arg0: tensor<*xf32>, %arg1: tensor<i32>) -> tensor<*xf32> {
      %fetches = tf_executor.graph {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 19 01:12:10 UTC 2023
    - 28.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/replicate_to_island.cc

                         unused_replica_controls.end());
          builder.setInsertionPoint(fetch);
          builder.create<tf_executor::FetchOp>(fetch.getLoc(), fetches);
          fetch.erase();
        }
      } else {
        // Now, finally, we need to maintain the invariant expected to be maintained
        // throughout the graph export pipeline that all islands always perfectly
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jul 24 21:01:40 UTC 2023
    - 16.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/executor_island_coarsening.mlir

    // control fetches.
    // CHECK-LABEL: func @merge_independently_fetched_islands_control_and_control
    func.func @merge_independently_fetched_islands_control_and_control(%arg0: tensor<i32>) {
     tf_executor.graph {
        %1 = tf_executor.island { tf_executor.yield }
        %2 = tf_executor.island { tf_executor.yield }
        tf_executor.fetch %1, %2 : !tf_executor.control, !tf_executor.control
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 17.8K bytes
    - Viewed (0)
Back to top