Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 90 for eraseOp (0.19 sec)

  1. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/GroupedOutputFixtureTest.groovy

            groupedOutput.taskCount == 3
            groupedOutput.task(':1:log').output == 'Output from 1'
            groupedOutput.task(':2:log').output == 'Output from 2'
        }
    
        def "handles task outputs with erase to end of line chars"() {
            given:
            def consoleOutput = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  2. pilot/pkg/xds/sds_test.go

    			t.Fatalf("expect private key provider in secret")
    		}
    		if privateKeyProvider.GetFallback() {
    			t.Fatalf("expect fallback for private key provider in secret as false")
    		}
    	}
    
    	// erase private key provider in proxy-config
    	secrets, _, _ = gen.Generate(s.SetupProxy(rawProxy), &model.WatchedResource{ResourceNames: []string{"kubernetes://generic"}}, fullPush)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/executor_island_coarsening.cc

      for (IslandOp island : merged_island.islands)
        island.getControl().replaceAllUsesWith(new_island.getControl());
      for (IslandOp island : merged_island.islands) island->erase();
    }
    
    // Takes the inputs to tf_executor.fetch, make a new island that just yields
    // them, and replace the fetch's input operands with the new yielded values.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/experimental/tac/transforms/pick_subgraphs.cc

                  builder->getStringAttr(GetInferenceString(
                      preferred_inference_device_type.inference_type)));
    
              call.replaceAllUsesWith(new_call.getResults());
              call.erase();
            }
          }
        }
      }
    }
    
    bool PickSubgraphsPass::PickSubgraphs(
        llvm::SetVector<Operation*>* all_subgraphs,
        ArrayRef<func::CallOp> output_subgraphs,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 24 15:10:02 UTC 2022
    - 19.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.cc

        auto input_op = q.getArg().getDefiningOp();
        if (auto stats = dyn_cast_or_null<quantfork::StatisticsOp>(input_op)) {
          q.setOperand(stats.getArg());
          if (stats.use_empty()) stats.erase();
        }
      });
    
      // Step 1: forward pass: propagate any value scales which are not produces
      // by `SameOperandsAndResultsScale`. Additionally, remove the value scales
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 02:10:16 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/transforms/tf2xla_rewriter.cc

      }
    
      for (int i = 0; i < tuple_result->getNumOperands(); i++) {
        outputs.push_back(tuple_result->getOperand(i));
      }
    
      tuple_result.getOperation()->erase();
      return success();
    }
    
    mlir::LogicalResult Tf2XlaRewriter::GetKernelOutputs(
        tensorflow::OpKernelContext& op_context, mhlo::TupleOp tuple_results,
        llvm::SmallVector<Value>& outputs) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:16:07 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/host_runtime/tpu_variable_runtime_reformatting.cc

      }
      for (auto& op : llvm::make_early_inc_range(replicate.GetBody())) {
        op.moveBefore(&new_replicate.GetBody(), new_replicate.GetBody().end());
      }
      replicate.replaceAllUsesWith(new_replicate);
      replicate.erase();
      return new_replicate;
    }
    
    // Creates the per-device variables that represent the formatting state of each
    // device.
    llvm::SmallVector<TF::VarHandleOp, 4> CreateStateVars(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_cluster_util.cc

             std::find(node.output_types().begin(), node.output_types().end(),
                       DT_RESOURCE) != node.output_types().end();
    }
    
    void RemoveFromXlaCluster(NodeDef* node_def) {
      node_def->mutable_attr()->erase(kXlaClusterAttr);
    }
    
    void RemoveFromXlaCluster(Node* node) { node->ClearAttr(kXlaClusterAttr); }
    
    namespace {
    typedef xla_config_registry::XlaGlobalJitLevel XlaGlobalJitLevel;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/device_compiler.h

      // Remove the "_class" attribute from the attribute set used to create the
      // compilation cache key. This attribute is information for the colocator
      // and causes false uniqueness between nodes.
      name.mutable_attr()->erase("_class");
      return CompileImpl(compile_options, options, name, args, CompileScope::kOp,
                         DeviceCompileMode::kStrict, ctx, profiler,
                         out_compilation_result, out_executable);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/ProjectSchemaAccessorsIntegrationTest.kt

            )
    
            val result = build("help", "-I", "init.gradle")
            assertThat(result.output, containsString("Type of `testExtension` receiver is Any"))
        }
    
        @Test
        fun `given extension with erased generic type parameters, its accessor is typed Any`() {
    
            withDefaultSettingsIn("buildSrc")
    
            withFile(
                "buildSrc/build.gradle.kts",
                """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 11:39:00 UTC 2024
    - 39.6K bytes
    - Viewed (0)
Back to top