Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for executors (0.12 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

                           ->getOrLoadDialect<mlir::TFL::TensorFlowLiteDialect>();
        vhlo_dialect_ =
            module.getContext()->getOrLoadDialect<mlir::vhlo::VhloDialect>();
        // Right now the TF executor dialect is still needed to build NodeDef.
        module.getContext()
            ->getOrLoadDialect<mlir::tf_executor::TensorFlowExecutorDialect>();
      }
    
      std::optional<std::string> TranslateInternal();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    mlir::Operation* ImporterBase::CreateOperation(
        const Node& node, llvm::StringRef node_type_name,
        const mlir::OperationState& result,
        const llvm::SmallVectorImpl<mlir::Value>& control_operands) {
      // For the tf.executor specific operations (not wrapped in an island), we
      // have an extra returned value for the control result, and we concatenate
      // control and non-control operands.
      mlir::SmallVector<mlir::Type, 4> types(result.types);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    		}
    		inc++
    	}
    	lock(&sched.gFree.lock)
    	sched.gFree.noStack.pushAll(noStackQ)
    	sched.gFree.stack.pushAll(stackQ)
    	sched.gFree.n += inc
    	unlock(&sched.gFree.lock)
    }
    
    // Breakpoint executes a breakpoint trap.
    func Breakpoint() {
    	breakpoint()
    }
    
    // dolockOSThread is called by LockOSThread and lockOSThread below
    // after they modify m.locked. Do not allow preemption during this call,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top