Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,124 for input1 (0.21 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

      if (!compile_launch || !compile_launch.WrapsSingleOp() ||
          !llvm::isa<TF::_TPUCompileMlirOp>(compile_launch.GetBody().front()))
        return false;
    
      // Analyze the formattable inputs.
      auto execute_arg_to_outer_args =
          AnnotateCompileOpAndGetExecuteArgToWhileArgsMapping(
              while_op, replicate, execute, compile_launch);
      if (execute_arg_to_outer_args.empty()) return false;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsDynamicGroovyBuildScriptIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.inputs.undeclared
    
    class UndeclaredBuildInputsDynamicGroovyBuildScriptIntegrationTest extends AbstractUndeclaredBuildInputsIntegrationTest implements GroovyPluginImplementation {
        @Override
        String getLocation() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

        const int num_args = variable_start_index;
    
        VLOG(4) << "Launch node '" << launch->name() << "'"
                << " input edges: " << in_edges.size() << " num_args: " << num_args
                << " num_variables: " << num_variables;
    
        std::vector<Node*> nodes_to_remove = {launch};
    
        // Data and control inputs to the new XlaLaunch node.
        std::vector<std::pair<Node*, int>> data_inputs(num_inputs);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. pkg/kube/krt/krttest/helpers.go

    	t.Cleanup(func() {
    		t.Helper()
    		types := slices.Map(mc.inputs, func(e any) string {
    			return fmt.Sprintf("%T", e)
    		})
    		assert.Equal(t, len(mc.inputs), 0, fmt.Sprintf("some inputs were not consumed: %v (%v)", mc.inputs, types))
    	})
    	return mc
    }
    
    func GetMockCollection[T any](mc *MockCollection) krt.Collection[T] {
    	return krt.NewStaticCollection(extractType[T](&mc.inputs))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 19:33:01 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/ArtifactCollectionCodec.kt

                // Transforms may have inputs or parameters that are task outputs or other changing files
                // When this is not the case, we should run the transform now and write the result.
                // However, currently it is not easy to determine whether this is the case so assume that all transforms
                // have changing inputs
                FileCollectionStructureVisitor.VisitType.NoContents
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute3QualifiedStaticInstrumentationInDynamicGroovyWithoutIndyIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.inputs.process.instrument
    
    /**
     * Test cases for triple-argument {@code ProcessGroovyMethods.execute}:
     * <pre>
     *     ProcessGroovyMethod.execute("echo 123", env, cwd)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsDynamicGroovyBuildSrcIntegrationTest.groovy

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.inputs.undeclared
    
    class UndeclaredBuildInputsDynamicGroovyBuildSrcIntegrationTest extends AbstractUndeclaredBuildInputsIntegrationTest implements GroovyPluginImplementation {
        @Override
        String getLocation() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/python/tf_tfl_flatbuffer_helpers.cc

        } else {
          node_shapes->push_back(std::vector<int>(flag.shape().dims().begin(),
                                                  flag.shape().dims().end()));
        }
        // Currently, only UINT8 and INT8 require inputs stats
        if (inference_type == DT_QINT8 || inference_type == DT_QUINT8) {
          if (flag.has_mean_value() && flag.has_std_value()) {
            TF_ASSIGN_OR_RETURN(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun May 12 12:39:37 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  9. src/internal/fuzz/worker.go

    		case input := <-w.coordinator.inputC:
    			// Received input from coordinator.
    			args := fuzzArgs{
    				Limit:        input.limit,
    				Timeout:      input.timeout,
    				Warmup:       input.warmup,
    				CoverageData: input.coverageData,
    			}
    			entry, resp, isInternalError, err := w.client.fuzz(ctx, input.entry, args)
    			canMinimize := true
    			if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/buildid.go

    // set of inputs summarized in the action ID, and the installed math.a already
    // has that action ID, we can reuse the installed math.a instead of rebuilding it.
    //
    // 2. The content ID half allows the easy preparation of action IDs for steps
    // that consume a particular package or binary. The content hash of every
    // input file for a given action must be included in the action ID hash.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
Back to top