Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,527 for inst (0.04 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/constant_fold_utils.cc

      }
    
    bool CanBeFolded(Operation* inst) {
      // Instructions with side effects should not be constant folded to preserve
      // the original semantics. Ops that have no side effect and zero results but
      // could be folded should have a custom folder instead of relying on the
      // TensorFlow folding hook.
      if (inst == nullptr || inst->getNumResults() == 0 ||
          inst->hasTrait<OpTrait::TF::NoConstantFold>() ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  2. tests/integration/security/sds_ingress/quic/ingress_test.go

    		Run(func(t framework.TestContext) {
    			t.NewSubTest("tcp").Run(func(t framework.TestContext) {
    				ingressutil.RunTestMultiTLSGateways(t, inst, namespace.Future(&echo1NS))
    			})
    			t.NewSubTest("quic").Run(func(t framework.TestContext) {
    				ingressutil.RunTestMultiQUICGateways(t, inst, ingressutil.TLS, namespace.Future(&echo1NS))
    			})
    		})
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/context.go

    	assert(inst != nil)
    
    	ctxt.mu.Lock()
    	defer ctxt.mu.Unlock()
    
    	for _, e := range ctxt.typeMap[h] {
    		if inst == nil || Identical(inst, e.instance) {
    			return e.instance
    		}
    		if debug {
    			// Panic during development to surface any imperfections in our hash.
    			panic(fmt.Sprintf("%s and %s are not identical", inst, e.instance))
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:29:21 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/util/LogStream.java

         */
        public static void setInstance( PrintStream stream ) {
            inst = new LogStream( stream );
        }
        public static LogStream getInstance() {
            if( inst == null ) {
                setInstance( System.err );
            }
            return inst;
        }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  5. src/go/types/typexpr.go

    		// and so it must be resolved during type-checking so that we can report
    		// errors.
    		check.recordInstance(ix.Orig, inst.TypeArgs().list(), inst)
    
    		if check.validateTArgLen(ix.Pos(), inst.obj.name, inst.TypeParams().Len(), inst.TypeArgs().Len()) {
    			if i, err := check.verify(ix.Pos(), inst.TypeParams().list(), inst.TypeArgs().list(), check.context()); err != nil {
    				// best position for error reporting
    				pos := ix.Pos()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/constant_fold_utils.h

    namespace mlir {
    namespace TF {
    
    // Checks whether the given TF operation can be folded or not.
    bool CanBeFolded(Operation* inst);
    
    // Evaluates the operation with given operand values.
    LogicalResult EvaluateOperation(Operation* inst,
                                    llvm::ArrayRef<ElementsAttr> operands,
                                    llvm::SmallVector<Attribute>& results);
    
    }  // namespace TF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 23:44:33 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/export_graphdef.cc

        assert(inst->getNumOperands() == 0);
        return absl::OkStatus();
      }
    
      Operation* op = GetIslandInnerOpOrSelf(inst);
      auto* dst_node = nodes_[op];
      int operand_offset = 0;
      // For tf_executor.island, add data edges from its wrapped op before control
      // edges.
      if (auto island = llvm::dyn_cast<mlir::tf_executor::IslandOp>(inst)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v2/tf_executor_to_graph.cc

        assert(inst->getNumOperands() == 0);
        return absl::OkStatus();
      }
    
      Operation* op = GetIslandInnerOpOrSelf(inst);
      auto* dst_node = nodes_[op];
      int operand_offset = 0;
      // For tf_executor.island, add data edges from its wrapped op before control
      // edges.
      if (auto island = llvm::dyn_cast<mlir::tf_executor::IslandOp>(inst)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 23:04:51 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm/armasm/decode.go

    				continue Search
    			}
    			args[j] = arg
    		}
    
    		decoderCover[i] = true
    
    		inst = Inst{
    			Op:   op,
    			Args: args,
    			Enc:  x,
    			Len:  4,
    		}
    		priority = f.priority
    		continue Search
    	}
    	if inst.Op != 0 {
    		return inst, nil
    	}
    	return Inst{}, errUnknown
    }
    
    // An instArg describes the encoding of a single argument.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  10. tests/integration/security/sds_ingress/ingress_test.go

    )
    
    var (
    	inst         istio.Instance
    	apps         deployment.SingleNamespaceView
    	echo1NS      namespace.Instance
    	customConfig []echo.Config
    )
    
    func TestMain(m *testing.M) {
    	// Integration test for the ingress SDS Gateway flow.
    	framework.
    		NewSuite(m).
    		Setup(istio.Setup(&inst, nil)).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top